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

Hi, all!

 

Could anyone clarify, do user's access rights depend on the order in which organizational roles are added on the detail of the user's form? I mean is it important if I add organizational roles for one user in the order

Role1

Role2

Role 3

and for another user in the order 

Role 2

Role 1

Role 3

 

And give them the same functional role (only one)?

 

I'm asking because now those two users can see different amount of the records of the same object and the only difference in their rights is that order.

Like 0

Like

0 comments
Show all comments

The office of a Maryland state senator was looking for an adaptable and secure solution to organize data and streamline office workflows, and they found it in Creatio! Creatio offers easy-to-use no-code tools for workflow automation without the need for extensive coding knowledge or resources and it is empowered by leading security practices.  

 

Read more about this digital transformation in our success story!

Like 11

Like

Share

0 comments
Show all comments
Question

Can you please let us know a way to get latest data for record in a mobile app view. We added custom action like this 

Ext.define("Terrasoft.MyAction", {

    extend: "Terrasoft.ActionBase",

    config: {

        useMask: false,

        title: "MyActionTitle",

        iconCls: Terrasoft.ActionIcons.Copy

    },

    execute: function(record) {

       this.callParent(arguments);

 

                                var UsrURLDocuSign = record.get("UsrURLDocuSign");

                                window.open(UsrURLDocuSign, '_system')

                                var modelName = "Order";

 

       // alert(UsrURLDocuSign + "---1kjbdsk ks1111--" );

       this.executionEnd(true);

    }

});

 

But the problem is some time that url or data is not latest data, is there a way to load the latest data using something? I already tried getEntity but it does not seem to work.

Like 0

Like

0 comments
Show all comments

Hi Community,

 

Any idea on how to reproduce the behavior of the calculate order product when a line is deleted?

I need to implement a similar logic,

but when the trigger is an Order Product is deleted I cannot read the corresponding order object.

In the Out of the Box process this is working and I don't see any difference

 

Thanks

Luis

Like 0

Like

2 comments

If your trigger start for delete is set to run synchronously ("Run following elements in the background" option is unchecked on the start step) then the BP can read the data of the record being deleted in subsequent steps that are also run synchronously I believe. This is how we've done delete-based data reading/changing. Check to see, but I suspect that that's what they've done in the OOTB BP.

Harvey Adcock,

I managed to make it work thanks, it is a 2 step aproach:

 

1)  Start signal synchronously, uncheck "Run following elements in the background" to read the Order Id

 

2) Timer to be able to do async, put the ""Run following elements in the background" to true and be able to calculate the totals of the order lines 

 

 

Thanks

Luis

 

Show all comments

Hi. 

 

Can you help me to know if there is a way to add more options to this menu? 

I add new results in the lookup, but those options don't appear here. 

Like 0

Like

1 comments

You can add/modify those in the Activity results lookup. However, those values are tied to specific Activity categories. If you select a row in the Activity results lookup there's an icon you can click to define which Categories it is for - see https://share.customerfx.com/QwuoY8RK

Ryan

Show all comments