Hi,
I'm currently working on a project in Creatio where I need to implement a button that triggers a specific Business Process when an object is selected in list in a form page. For example, selecting "Account" should run the "Data Archival" BPM, and selecting "Applications" should run the "Create Activity" BPM.
I've tried implementing a few code snippets to trigger the BPM based on the selected object, but it's not working as expected. I've used some of the standard Creatio APIs, but it seems like something isn't connecting.
This is the latest code I tried:
{
"operation": "insert",
"name": "MenuItem_zju0dcb",
"values": {
"type": "crt.MenuItem",
"caption": "#ResourceString(MenuItem_RunBPM_caption)#",
"visible": true,
"clicked": {
"request": "crt.RunBusinessProcessRequest",
"params": {
"processName": "$GridDetail_bp2nlc5_SelectionState.items[0].UsrBPMLookup",
"processRunType": "ForTheSelectedRecords",
"saveAtProcessStart": true,
"showNotification": true,
"dataSourceName": "GridDetail_bp2nlc5DS",
"parameterMappings": {
"RecordId": "$GridDetail_bp2nlc5_SelectionState.items[0].GridDetail_bp2nlc5DS_Id"
},
"filters": "$GridDetail_bp2nlc5 | crt.ToCollectionFilters : 'GridDetail_bp2nlc5' : $GridDetail_bp2nlc5_SelectionState | crt.SkipIfSelectionEmpty : $GridDetail_bp2nlc5_SelectionState",
"sorting": "$GridDetail_bp2nlc5Sorting",
"selectionStateAttributeName": "GridDetail_bp2nlc5_SelectionState"
}
},
"items": []
},
"parentName": "GridDetail_bp2nlc5",
"propertyName": "bulkActions",
"index": 3
}
Could you share how you set up the "Run Process" button and any tips on how I can get this working?