Category: OneDrive
-
Extending Electronic Reporting Sources: Integration with OneDrive (II/II)
To implement the logic, we will create the following classes: There are a lot of classes, each with a bunch of methods, but it’s not as complicated as it looks. Most of the methods are just required because we’re implementing an interface, and they’re basically one-liners that I copied from Microsoft’s example. I’ll try to…
-
Extending Electronic Reporting Sources: Integration with OneDrive (I)
In this series, I will explain how to extend ER (Electronic Reporting) sources to import from non-default origins (beyond the default options like manual imports or SharePoint). This will also enable us to program batch jobs for continuous integrations. Specifically, I will guide you step by step on how to integrate with a third-party OneDrive,…
-
Extending Electronic Reporting Destinations: Integration with OneDrive (III)
In this final post of the series, I’m going to explain how to send files to OneDrive. Since I’ve implemented this functionality in a separate class, it’s more independent from the ER destinations. This is intentional because we may want to reuse the class for other developments. If you are extending destinations that aren’t for…
-
Extending Electronic Reporting Destinations: Integration with OneDrive (II)
To implement the logic, we will create four classes: We won’t write the final class now. I’ll explain it in the next and last post of this series. For now, we will show an info message to verify it’s working. After compiling, we should see the destinations with a lookup for the connection. The enabled…
-
Extending Electronic Reporting Destinations: Integration with OneDrive (I)
By default, you can export ER generated files to your computer, to a tab in your browser, to an email, to an archive (either the default SharePoint or the default Azure Storage), to a printer, and even to Power BI (though I’m not sure how this works, it seems to pass through SharePoint). Most of…