| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [View Raw Code] [Original HTTPS Page] |
Salesforce Insight Manager is a Windows Forms desktop application built with .NET Framework 4.8 (C# 7.3) that provides advanced reporting, dashboard auditing, and user activity analysis for Salesforce environments. It is designed for business users, administrators, and analysts who need deeper insight and control over Salesforce data usage, access, and security.
Inactive Employees Reports
User Activity Tracking
Public Reports Not Used (90+ days)
| Source | Purpose |
|---|---|
| Salesforce SOAP API | Primary data access layer for reports, dashboards, users, etc. |
| Salesforce REST API | Optional support for OAuth2; not main data source |
| Excel (Local Files) | For custom filtering via ignore lists |
| Benefit | Description |
|---|---|
| Deeper Insights | Analyze usage patterns beyond standard Salesforce UI |
| Custom Filtering | Upload ignore lists for tailored queries |
| Audit & Governance | Monitor report/dashboard access and security for compliance |
| Ease of Use | Familiar Windows UI makes navigation and management easy |
| Export Flexibility | All results can be exported to Excel |
SalesforceWindowsForms/ ├── CollectionObjects/ # Data models for reports and dashboards ├── DAL/ # Data Access Layer – handles API calls and queries ├── Properties/ # Assembly and app settings ├── Resources/ # Embedded images, icons, and other UI assets ├── View/ # Windows Forms UI components and controls ├── Web References/SFDC/ # Salesforce SOAP API client (auto-generated from WSDL) ├── App.config # App settings including Salesforce credentials and endpoints ├── Form1.cs / Form1.Designer.cs / Form1.resx # Main form UI and logic ├── Program.cs # Application entry point ├── SalesforceWindowsForms.csproj # Project file ├── packages.config # NuGet package dependencies ├── README.md # This documentation file ├── .gitignore, .gitattributes ├── SalesforceWindowsForms.sln # Visual Studio solution file
Clone the repo
git clone https://github.com/aimaster-dev/salesforce-insight-manager.gitOpen in Visual Studio (2019 or later recommended)
Set up App.config with your Salesforce credentials:
<appSettings>
<add key="UserName" value="your_salesforce_username"/>
<add key="Password" value="your_password_with_security_token"/>
<add key="ServerURLsoap" value="https://login.salesforce.com/services/Soap/u/54.0"/>
</appSettings>Run the application (Ctrl + F5)
This app is ideal for:
This project is under the MIT License.
| Back | FazBrowse Home | New Git URL |