Hi Community,

 

I want to create a Multiple Selection

How could I do that?

 

Thank you!

Like 0

Like

6 comments

Hello,

 

The possibility to use multi-select lookups in Freedom UI is registered as a feedback and will be available in future releases of Creatio’s platform.



At this moment, you can check the materials for Classic UI:

Marketplace solution:

https://marketplace.creatio.com/app/multi-select-text-field-setup-creatio

And a link to the community post where this issue has already been discussed, perhaps it will be helpful to you:

https://community.creatio.com/questions/multiselect-lookup

 

Best regards,

Anastasiia

Hello,

I've written up some steps to do this, however, it is only possible in version 8.1.

https://customerfx.com/article/invoking-a-multi-select-lookup-dialog-on…

In the near future I will be releasing a Freedom UI replacement for my marketplace addon linked previously by Anastasiia (Multi-select text field setup for Creatio)

Ryan

Ryan Farley,

 

Thank you for this! Could you also please confirm if adding detail records through multiselect is possible in 8.1? 

Ref: 

https://academy.creatio.com/documents/technic-sdk/7-11/adding-multiple-…

Shivani Lakshman,

Yes, however, for now you have to handle the adding of the records in code. The article I shared shows how to invoke the lookup in multi-select mode. It uses the results to flatten out to text, however, you could just use the results and do an insert for each into the list/detail. See here for how to do the insert: 

https://customerfx.com/article/inserting-a-record-from-client-side-code…

Ryan

Shivani Lakshman,

I wrote up the details for adding to a list from a multi-select lookup as a new article here: https://customerfx.com/article/adding-to-a-list-from-a-lookup-on-a-free…

Ryan

Ryan Farley,

Thank you! This will really help!

Show all comments

Hello!

 

How is it possible to configure Contact compact profile (for example, I want to remove birthdate and age)

Like 1

Like

1 comments

Hello,

 

The component behavior is pre-configured and non-editable.

 

However, we registered the idea it in our R&D team backlog for consideration and implementation in future application releases.

 

Thank you for helping us to improve our product. 

Show all comments

Hi there,

we are compiling our package as a separate assembly and want to link to an external assembly. In the guide it is said to edit .csproj file, so the question is: is it possible to do via Creatio IDE (Creatio Cloud)? 

 

Thanks in advance.

Like 0

Like

2 comments

Hello,

In this case, you should ask the Creatio support for help. They can provide you with the needed .csproj file and upload the changes you made in it.

You can use Clio to download your package. See restore-workspace 

 

https://github.com/Advance-Technologies-Foundation/clio#workspaces

Show all comments

Hi Community,

The normal behaviour of a MiniPage in Freedom UI, is that after filling the data and saving, the Section List Page is opened.

We want that after the Clicking Save on the Mini Page, the created record (Form Page) opens.

How can this be acheived ?

Sasori

Like 0

Like

3 comments

To accomplish this you’ll need to add a handler for the save event, see https://customerfx.com/article/adding-code-to-the-save-event-of-a-creat…

Then in that handler you can open the edit page. See https://customerfx.com/article/adding-code-to-the-save-event-of-a-creat…

Ryan

Thank you very much for the very useful information Ryan.

You have provided the same link both times.

Did you intend to insert a separate link for the handler that opens the Edit Page ?

Sasori

Sasori Oshigaki,

 

It will either be this link if you want to open the standard edit page form for the entity, taking into account any rules you have in place for which form gets opened: https://customerfx.com/article/opening-an-edit-page-to-add-or-edit-a-record-via-code-in-a-creatio-freedom-ui-page/

 

Or this link if you want to be able to specify a particular edit page for the entity (i.e. if there are multiple edit pages and you want to open a specific one different from what would be opened based on the rules you set up for some reason): https://customerfx.com/article/opening-an-edit-page-to-add-or-edit-a-record-via-code-in-a-creatio-freedom-ui-page/

 

Show all comments

Hello!

When i change a section name and install the package in another environment, the section doens't appear with the updated name. For example: 

I changes the name of "Orders" Section to "Contracts". However, when we install the package in pre-prod environment the section name remains as "Orders". However, in advanced settings the object title appears updated. 

 

Can anyone help? 

 

Thank you, 

Inês

 

Like 0

Like

2 comments

Hello,

 

This should be the SysModule object that you need to use for data binding.

 

Bogdan,

The data binding is not working: 

 

The record with Id "89140155-1274-467f-a208-782e858e98f3" is already bound in the data "SysModule_SectionManager_891401551274467fa208782e858e98f3" of package "PaginasAmarelas" for schema "Section" The record with Id "89140155-1274-467f-a208-782e858e98f3" is already bound in the data "SysModule_Order" of package "Order" for schema "Section"

Show all comments

Hi,



Is there somewhere the full list of featurestates for the FeaturesPage with a full description of what they do and where ? Also what is activated OOTB and what is not?



Noticed there some description in new shell / freedom ui, but some clients do not have new shell/freedom ui yet, was wondering where to find the information in the academy.



Thanks,



Damien

Like 2

Like

1 comments

Greetings,

 

Unfortunately, our academy does not have this information.

But we will register this wish, for our team, so that they will realize it in the future.

 

Regards,

Orkhan

Show all comments

Hi all,

How to do a validation on the entries when the user clicks the DCM to change status?

If the validation fails, the DCM will remain in the current status.

The business process only checks after an update which is not ideal for validation checking.

Like 0

Like

6 comments

Hi David

 

We've worked around this by creating buttons that trigger processes.

Inside the process the checks are run, and then the state is changed.

 

Rgds,

Luis

Hello,

 

Could you please describe your business task in more detail so we could better understand how exactly you need the system to work?

To accomplish this we store the stage in an attribute and then can revert back if needed. I have an example of this here https://customerfx.com/article/how-to-prevent-users-from-moving-a-case-…

Ryan

Luis Tinoco Azevedo,

Hi Luis,

 

I have thought about this.

However, how to implement this concept if the DCM has many stages?

Do we need to create a button for every stage?

 

David

Ryan Farley,

Hi Ryan,

 

Thank you for the article.

The approach in the article is very neat. It might be the suitable solution to my problem.

I love the articles from customerfx.com.

 

Thanks again.

 

David.

 

Mira Dmitruk,

Hi Mira,

 

Assume the screen below, on a certain condition the "Sales order service" should not be empty before entering the "In progress" status. However, I couldn't set the "required" attribute on the field from the business rule, because the condition is a bit complex.

In this case I need a validator before the status changes to "In progress".

 

David

Show all comments

Dear Colleagues,

 

Is anyway possible to "extract" or move a custom package I did (my error) in the production environment of a customer.

 

I need to move it on my local dev environment to improve it and later to install on test & later in production?

 

Thanks in advance

 

Best regards

Julio Falcon

Like 0

Like

1 comments

Greetings,



Please take note that it is not possible and we highly do not recommend exporting the "Custom" package itself.

If you would like to migrate basic objects and schemas from the "Custom" package - it is best to create a separate new package, copy all the "Custom" objects and schemas into the new one and furthermore use it for customization and exporting functionality.

Show all comments

Hi Community,

Can you please provide us a similar example about the attribute that is used for the page title ?

We would like to create a Label, that is based on an attribute (dynamic values) and not on static text.

 

Thank you

Sasori

Like 0

Like

2 comments

Say, I have a process and I want it to take a file from the C:/ drive and do something with that file. Can I use this data type for it?



Couldn't find any mention of this data type here: https://academy.creatio.com/docs/user/bpm_tools/business_process_setup/…

Like 0

Like

1 comments

Hello,

Thank you for contacting us.



Unfortunately, there is no direct opportunity to load external files in business-process. You can work with files that are already added in the attachments and notes detail or generated by the system.

We believe, that you can reach your goal by developing.

You can see materials in the communityCreatio Community, that can help you:



1. https://community.creatio.com/questions/uploading-file-creatio-external…

2. https://community.creatio.com/questions/file-type-request-parameter-res…

3. https://community.creatio.com/questions/getting-error-while-assigning-v…



As you noticed, there is no information about file type parameter in Creatio Academy documentation. We will share this information with our colleagues at Creatio Academy to make changes.



We also recommend to check this documentation on Creatio Academy:



1. https://academy.creatio.com/docs/developer/back_end_development/api_for…

2. https://academy.creatio.com/docs/user/bpm_tools/process_elements_refere…



Thank you.

Show all comments