Время создания
Filters
Discussion

We're excited to share what's new in the latest release powered by GitHub Copilot Edits:

Automatic Clio Update Detection
TIDE now checks for the latest Clio release on nuget.org and notifies you when an update is available — so you’re always in the loop.

🖥️ Terminal UI Improvements
We've enhanced the terminal interface for clearer and more user-friendly system process logs.

🔧 Clio Update Handling Refined
Automatic Clio updates on app restart have been disabled to avoid unexpected errors in certain scenarios.

🆕 Clio was upgraded to 8.0.1.26
TIDE works with the latest Clio version, bringing expanded terminal capabilities and better overall integration.

Update now and enjoy a smoother, smarter dev experience with TIDE 💻

#TIDE #Clio #DevTools #ReleaseUpdate #Creatio #TerminalUpgrade

0 comments
Show all comments

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?

 

Like 0

Like

5 comments

Since the process you're executing needs to be dynamic, you'll likely need to launch the process via code. That could be done in one of two ways:

Option 1, have a button that shows when a row is selected. See https://customerfx.com/article/responding-to-a-row-selected-event-in-a-creatio-freedom-ui-list/

Option 2, use the list's row actions menu and add an item to run the process there. See https://customerfx.com/article/adding-row-action-menu-items-to-a-creatio-freedom-ui-list/

As for actually starting the process via code, see here: https://customerfx.com/article/starting-a-process-from-client-side-code-on-a-creatio-freedom-ui-page/

Ryan

Hi, 

Thank you for the resources. Just a clarification, for the handler:
    {
                request: "cfx.someBusinessProcess",
                handler: async (request, next) => {
                    const id = request.recordId;
                    const bpm = request.bpmId;

                    const handlerChain = sdk.HandlerChainService.instance;
                    const result = await handlerChain.process({
                        type: "crt.RunBusinessProcessRequest",
                        processName: "request.bpmId",
                        processParameters:{
                            recordId: await request.$context.Id
                        },
                        $context: request.$context
                    });
                    if (result.success){
                        Terrasoft.showInformation("SUCCESS!!!!");
                    }
                    return next?.handle(request);
                }
can i just use request.bpmId, where bpm.Id is:

"params": {
                            "itemsAttributeName": "GridDetail_bp2nlc5",
                            "recordId": "$GridDetail_bp2nlc5.GridDetail_bp2nlc5DS_Id",
                            "bpmID": "$GridDetail_bp2nlc5.GridDetail_bp2nlc5DS_UsrBPMLookup"

 

First of all, I assume that request.$context.Id you're wanting the Id of the parent record (the record that the list is for). Correct? (not the id of the row in the list)

If you're using option 1 (a button) then you'd need to use request.$context.ContactsList_ActiveRow to get the Id of the selected row. You can't use params to pass values from the list to the handler since the list isn't firing the request, the button is. Then, using that Id you could read that record using a model query - see https://customerfx.com/article/retrieving-a-record-via-the-model-class-equivalent-to-entityschemaquery-in-a-creatio-freedom-ui-page/ (it's likely possible to get the other values from the row's data source, but I've not tried)

If you're using option 2 (row action menu), then the request is firing from the list and you can use params to pass in the values to the handler, including the Id and the process.

Ryan

Hi, 

Im using option 2 where Im adding a menu item. Im passing my parameters for the id of the row selected and trying to read the value in the BPM column, which is a lookup. 

"params": {
                            "itemsAttributeName": "GridDetail_bp2nlc5",
                            "recordId": "$GridDetail_bp2nlc5.GridDetail_bp2nlc5DS_Id",
                            "bpmID": "$GridDetail_bp2nlc5.GridDetail_bp2nlc5DS_UsrBPMLookup"

The record ID seems to be reading fine but i cant seem to get the BPM lookup entry. It says that no bpm found. Im not sure what the issue is if you could help me out with that. 

Thanks

Anjali,

Are you getting the param correctly from the list? If not, make sure the attribute name is correct and matches the attribute as defined in the viewModelConfigDiff.

Show all comments

Hi.
Newbie here, so bear with me.  Best I start with an example --  

  • We have 200+ users who are sales reps and 2 Admins.
  • Some of these sales reps are managers of a sub-set of other subordinate reps.
  • Now, a rep quits, and it's up to an admin (in another country BTW) to manually go in and reassign his dozens of opportunities to a new sales rep.  This is a task his manager should be able to do, but can't (because only an admin can change other users' records).

This is just one example of a typical issue we run into, that could be fixed by giving "modify" rights to one user over certain other user's records -- or a "superuser" as exists in our other systems.

In Creatio, I am told only the individual rep can change his own "opportunities".  His manager cannot.  (The Admins of course can change everything about everyone, so logically we can not give admin rights to the managers.)

Is there a way around this?  
Perhaps the next release of Creatio will have some sort of granularity of "rights"? 

Thanks!
Rob

 

Like 0

Like

1 comments

Creatio does have this, or at least it can work like this. If you're using organizational roles, each organizational role can have a management role. The management role inherits the permissions of the users in the organizational role. Meaning, if you create an org role called "sales" and then add an management role for the sales org role, the people in the management role inherit the permissions of the users in the org role. See https://academy.creatio.com/docs/8.x/setup-and-administration/administration/user-and-access-management/user-management/organizational-roles#title-2266-2

Note, this often means you also need to setup object/record permissions for things based on these roles as well, instead of by users (so the permissions can be inherited by the managers of the role). For example, you could add record access permissions that if anyone in "sales" creates a record, that edit permissions is given to anyone in the "sales managers role".

Ryan

Show all comments

Hello, 

We are trying to Implement a custom campaing element, SMS. 
We are following instructions from this website  : https://academy.creatio.com/docs/8.x/dev/development-on-creatio-platform/8.1/platform-customization/classic-ui/marketing-campaigns-basics/examples/implement-a-campaign-element#title-1455-3
We are facing a issue.
We created a test package named FZCreateCampaignElement which depends on our package FZCustomer360. Other package FZCustomer360 depends on : CrtBaseFinserv,
CrtBulkEmailInC360 ,CrtCampaignElements ,CrtCampaignInC360,CrtCampaignUtils,CrtContactToLeadInC360,CrtCustomer360App,CrtDigitalAdsInC360,CrtEngagementInC360,CrtEventInC360,CrtFinservSalesAndServiceApp,CrtLeadOppMgmtInC360,CrtOpportunityInC360,CrtSLAInC360,MarketingCampaign

Successfully we did this steps : 

1. Create a marketing campaign element
2. Create a property panel for the campaign element
3. Add the element to the element area of the Campaign Designer

At step 4 when (4. Create an executable element for the campaign element ) we created   executable element, we could not publish it since the class CampaignFlowElement could not be inherited.


Like 0

Like

1 comments

Hello,

Please reattach your screenshot since its corrupted and cannot be reviewed. In general please make sure your package where the element is developed is not the assembly package and that the product that you are working in is of marketing build (like sales-enterprise-marketing-service-enterprise).

Show all comments

Hello 

I Want to Reload Multiselect contol On page on client side  by executeRequest of type crt.LoadDataRequest

but Cant Find it DataSource name

 

Like 0

Like

3 comments
Best reply

The data source name is [MultiSelectName]_List_Items_DS

So for a multiselect named "MultiSelect_iumwf1c", the data source name is "MultiSelect_iumwf1c_List_Items_DS"

BTW, the best way to find this out is to add a request handler for "crt.LoadDataRequest" and output to console if request.dataSourceName.includes("MyControlName")

Ryan

The data source name is [MultiSelectName]_List_Items_DS

So for a multiselect named "MultiSelect_iumwf1c", the data source name is "MultiSelect_iumwf1c_List_Items_DS"

BTW, the best way to find this out is to add a request handler for "crt.LoadDataRequest" and output to console if request.dataSourceName.includes("MyControlName")

Ryan

thanks but I need to refresh values selected on control not List of Available lookup values

Tomasz Sobkowicz,

I see. It looks like that control works in the same way that the classic multi-select and performs individual inserts/deletes on save rather than bind to a data source. I've not tried to find it in the minified source to see if there's some other request to cause it to reload.

Ryan

Show all comments