Files
blackroad-salesforce-hub/force-app/main/default/flows/Liquidity_Event_Alert.flow-meta.xml
Alexa Louise 516e55519a Add General CRM + Agency CRM automation and dashboard
- Add Lead-to-Deal Conversion Flow (screen flow)
- Add Policy Renewal Reminder Flow (scheduled, draft)
- Add Commission Auto-Calculate Flow (record-triggered, draft)
- Add BlackRoad CRM Dashboard (Lightning App Page)
- Add sample data loader scripts for all 3 CRMs
- Update permission sets with new object access

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2026-01-11 18:41:38 -06:00

65 lines
2.5 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<Flow xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>59.0</apiVersion>
<description>Creates compliance tracking and notifications when a liquidity event is created - business sales, IPOs, etc</description>
<environments>Default</environments>
<interviewLabel>Liquidity Event Alert {!$Flow.CurrentDateTime}</interviewLabel>
<label>Liquidity Event Alert</label>
<processMetadataValues>
<name>BuilderType</name>
<value>
<stringValue>LightningFlowBuilder</stringValue>
</value>
</processMetadataValues>
<processMetadataValues>
<name>CanvasMode</name>
<value>
<stringValue>AUTO_LAYOUT_CANVAS</stringValue>
</value>
</processMetadataValues>
<processType>AutoLaunchedFlow</processType>
<recordCreates>
<name>Create_Liquidity_Compliance_Log</name>
<label>Create Compliance Log</label>
<locationX>176</locationX>
<locationY>335</locationY>
<inputAssignments>
<field>Household__c</field>
<value>
<elementReference>$Record.Household__c</elementReference>
</value>
</inputAssignments>
<inputAssignments>
<field>Log_Type__c</field>
<value>
<stringValue>Meeting</stringValue>
</value>
</inputAssignments>
<inputAssignments>
<field>Description__c</field>
<value>
<stringValue>LIQUIDITY EVENT INITIATED - Client has reported upcoming liquidity event. QSBS analysis, tax planning, and asset allocation review required. Schedule client meeting within 48 hours.</stringValue>
</value>
</inputAssignments>
<inputAssignments>
<field>Auto_Generated__c</field>
<value>
<booleanValue>true</booleanValue>
</value>
</inputAssignments>
<object>Compliance_Log__c</object>
<storeOutputAutomatically>true</storeOutputAutomatically>
</recordCreates>
<start>
<locationX>50</locationX>
<locationY>0</locationY>
<connector>
<targetReference>Create_Liquidity_Compliance_Log</targetReference>
</connector>
<object>Liquidity_Event__c</object>
<recordTriggerType>Create</recordTriggerType>
<triggerType>RecordAfterSave</triggerType>
</start>
<status>Active</status>
</Flow>