Revolutionizing Documentation
Making it Seamless, Automated, and Fun!
Bill Florio
Speaker Intro
2024
@NEDreamin
#NEDreamin
The Whys:
Selfish | Selfless |
| Growth |
Control | Transparency |
Hands out of garbage | Stewardship |
2024
@NEDreamin
#NEDreamin
Agenda
Training
& Documentation
Metadata dictionaries
Charting
Discussion and Idea Share
2024
@NEDreamin
#NEDreamin
Salesforce is a website.
“It just works.“
Steve Jobs
2024
@NEDreamin
#NEDreamin
Salesforce is a website.
Title
Release Chatter Group
2024
@NEDreamin
#NEDreamin
Salesforce is a website.
Help Tab
2024
@NEDreamin
#NEDreamin
Salesforce is a website.
Lightning Messaging Utility
2024
@NEDreamin
#NEDreamin
Salesforce is a website.
Basics
Salesforce is a website.
Conditional Formatting Winter ‘25
2024
@NEDreamin
#NEDreamin
Salesforce is a website.
Help & Training Link
In-App Guidance
2024
@NEDreamin
#NEDreamin
Live Training and Videos
2024
@NEDreamin
#NEDreamin
Live Training and Videos
2024
@NEDreamin
#NEDreamin
Doodading
2024
@NEDreamin
#NEDreamin
Agenda
Training
& Documentation
Metadata dictionaries
Charting
Discussion and Idea Share
2024
@NEDreamin
#NEDreamin
2024
@NEDreamin
#NEDreamin
Salesforce is a website.
Report on Field Metadata
2024
@NEDreamin
#NEDreamin
Salesforce is a website.
Access Field Metadata with Flow
2024
@NEDreamin
#NEDreamin
There’s an app for that.
Plus - Metadata Dictionary
Elements Cloud
2024
@NEDreamin
#NEDreamin
Documenting Salesforce Flow
Salesforce Flow Metadata Downloader + Claude is great for documenting flows.
2024
@NEDreamin
#NEDreamin
Agenda
Training
& Documentation
Metadata dictionaries
Charting
Discussion and Idea Share
2024
@NEDreamin
#NEDreamin
There’s an app for that.
2024
@NEDreamin
#NEDreamin
There’s an app for that.
Mermaid Diagrams
2024
@NEDreamin
#NEDreamin
There’s an app for that.
Mermaid Diagrams
2024
@NEDreamin
#NEDreamin
LLM + Mermaid
Enter Proposal Approval Record: A user enters a proposal approval record for a General Accounting Unit (GAU) from an opportunity. Create GAU Approval Records: Two GAU approval records are created and linked to the opportunity. Approval Process: Monitor the approval status of all GAU approval records. If User is Executive then Create If User is not executive update the existing Approval Record New GAU Record: Once all approvals are set to an approved state, a new GAU record is created with the correct parent. Reconnect Approvals: All approval records are reconnected to the newly created GAU for future reference. This process ensures that the GAU records are accurately tracked and linked for accountability and reference.
2024
@NEDreamin
#NEDreamin
Agenda
Training
& Documentation
Metadata dictionaries
Charting
Discussion and Idea Share
2024
@NEDreamin
#NEDreamin
Q & A
2024
@NEDreamin
#NEDreamin
Training Resources
Windows Powertoys
https://learn.microsoft.com/en-us/windows/powertoys/
Snag It
https://www.techsmith.com/screen-capture.html
Screen Pal
PikPick
AI Prompts for Video Creators
Bullshit Jobs
https://en.wikipedia.org/wiki/Bullshit_Jobs
Lightning Messaging Utility
https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3A00000G12j9UAB
MS Loop
https://www.microsoft.com/en-us/microsoft-loop
Metadata Resources
Schema Lister - This tool uses the Salesforce Metadata API to build a list of objects, fields and field attributes from within your Salesforce Org.
https://schemalister.herokuapp.com/
Elements Cloud
Salesforce to LucidChart ERD
Gearset
Plus Metadata Dictionary
https://appexchange.salesforce.com/appxListingDetail?listingId=a0N4V00000FpUSdUAN
Create Reports from Data Classification Metadata
https://help.salesforce.com/s/articleView?id=sf.data_classification_report.htm&type=5
Field Trip
https://appexchange.salesforce.com/appxListingDetail?listingId=a0N30000003HSXEEA4
Charting Etc
Mermaid Live Diagram Editor
Import Graphics into Visio
Draw.io
CMS /Platform Resources
Mermaid Flowchart Prompt
An Opportunity node connects to the Award node with a dotted line. The Award node connects to the Project node with a solid line. The Project node connects to the Asset(s) node with a dotted line which is labeled "0 or more". A solid line connects the Asset(s) node a QA node. QA then connects via a dotted line to the Publication node with a label of "0 or 1".
MERMAID CHART:
```
flowchart LR
Opportunity -.-> Award
Award --> Project
Project -.0 or more.-> Assets
Assets --> QA
QA -.0 or 1.-> Publication
```
=====
First, at the top is a box labeled "Salesforce" which contains within it two nodes: Proposal and Award, which are connected with a solid arrow labeled "won". The Award node then connects to another box labeled "Workday" which contains a single node called Project.
MERMAID CHART:
```
subgraph Salesforce
Proposal -- won --> Award
end
subgraph Workday
Award -- create --> Project
end
```
=====
Start with "Identify opportunity" which branches out to 3 parallel nodes: "Register in tracking system (PIF, etc.)", "Proposal development", and "Budget development". Each of these 3 nodes then connects back to a single node called "Coordination. Then we have a linear list of the following, which all connect sequentially: Proposal approval, Submission to client, Initiate contract, Finalize contract terms, Issue PPT, Project kickoff. Then the Project kickoff node branches into the following parallel nodes: HSPC review, Project staffing, Finalize budget. These 3 nodes come back together at the "Manage project" node. Then another linear list of the following nodes: Develop final product, QA (internal or external), Deliver final product, Close our project.
MERMAID CHART:
```
flowchart LR
A["Identify<br>opportunity"] --> B["Register in<br>tracking system,<br>(PIF, etc.)"]
A --> C["Proposal<br>development"]
A --> D[Budget<br>development]
B --> E["Coordination"]
C --> E
D --> E
E --> F[Proposal<br>approval]
F --> G[Submission<br>to client]
G --> H[Initiate<br>contract]
H --> I[Finalize<br>contract<br>terms]
I --> J[Issue<br>PPT]
J --> K["Project<br>kickoff"]
K --> L[HSPC<br>review]
L --> O
K --> M[Project<br>staffing]
M --> O
K --> N[Finalize<br>budget]
N --> O["Manage<br>project"]
O --> P["Develop<br>final<br>product"]
P --> Q["QA<br>(internal or<br>external)"]
Q --> R["Deliver<br>final<br>product"]
R --> S["Close<br>out<br>project"]
```
=====
<INSERT YOUR CHART DESCRIPTION HERE> For example... First I open the Fridge. Then from the Fridge, I pull out in parallel: Cold Brew, Creamer, Milk. Then these items combine back into Drinkable Coffee. Then Enjoy Coffee.
MERMAID CHART:
Schedule Metadata to Data Flow
Schedule Metadata to Data Flow
Schedule Metadata to Data Flow
Schedule Metadata to Data Flow
Schedule Metadata to Data Flow
Schedule Metadata to Data Flow
Schedule Metadata to Data Flow
Schedule Metadata to Data Flow
Schedule Metadata to Data Flow