I need to change the Delete functionality on a list, to be a logical deletion instead of a physical deletion. 

Is that possible? 

Could I use a Business Process to cancel the delete process and mark the row as "deleted" ?

Thanks in advance,

Ignacio.

Like 0

Like

3 comments

Hello Ignacio,

Unfortunately, it's not clear what you mean by logical deletion, could you please describe the task in more detail?

Sure. I want to add a column called "IsDeleted" or "Deleted" that is marked to true when the record was deleted by a user. Then another process with process that deletion and do the physical deletion.

 

Hello,

When you initiate the deletion of a record, it will be permanently removed from the system, and this is a fundamental logic that cannot be changed.

However, you can add a logical field at the record level, for example, "IsDeleted", and instead of deletion, users can utilize this field. Then, configure a business process with a "delete data" element: 
https://academy.creatio.com/docs/8.x/no-code-customization/bpm-tools/pr…

This element will handle the deletion of such records.

Thank you for reaching out!

Show all comments

Hello,

I have a use case where I need to make every field in every section of a mobile application read-only for every user in freedom UI. How can we accomplish it?

 

Thanks in advance!

 

Regards,

Yasaswini

Like 0

Like

2 comments

Hello,

 

Column settings in the section wizard are not transferred to the mobile application, same as business rules. You can only make a field read-only via development.

A detailed description can be found at the Academy, property "ReadOnly":

https://academy.creatio.com/docs/developer/mobile_development/customiza…



It is not yet possible to do this using oob tools. 

The developers have a task to simplify this process for users, we have fixed your case to the task in order to raise its priority.

First of all, you need to add a module to add the customizations to. You can see how to do that here: https://customerfx.com/article/creating-modules-for-the-creatio-mobile-…

Then, you can add the following to the module, in this example I've made a module for the account edit page and this will make the Type field read only.

Terrasoft.sdk.RecordPage.configureColumn("Account", "primaryColumnSet", "Type", {
    readOnly: true
});

Ryan

Show all comments