section wizard
open edit page
7.15
Studio_Creatio

Hello,

 

I want to know if somebody knows if there some Marketplace or another way to enable "Copy" when I enable on a Section Multiple Pages, a page for example in contact for type=Customer to a Page to type=Supplier or any. If I create a multiple pages lost some special controls like "PhotoTimeZoneContainer", the Section Action Dashboard (http://prntscr.com/rpqxbi) and so on.

 

Usually, when one wants a Multiple page could be the most of the times, wants to add info or show less one, I think is easier to duplicate the whole object, in this case Contact and delete what one don't need and add some specific data...

 

Thanks in advance

Like 0

Like

7 comments

Make following pages to use the main page as the parent.

Kirill Krylov CPA,

Thanks Kirill, on the source code? is there any where to do this, because I did it, but have a lot of problem to recognize the change, like Compile All to work!, could you be more specific, please?

Dear Julio,

 

In order to implement the required functionality you should do the following:

1. Create a main page schema that should contain a common functionality for all other pages.

2. When creating any other edit page, use the main page schema as a parent https://prnt.sc/s4h2pq

 

As a result, the functionality of the main page is available for all edit pages that have this page as a parent.

 

You can look at how any section page is implemented as an example. For example, the "AccountSecitonV2" schema has the "BaseSecitonV2" schema as a parent https://prnt.sc/s4h7a1

 

Best regards,

Norton

Norton Lingard,

Hello again

 

This doesn't works. What's wrong?

 

I create several pages on accounts, for example, please see at http://prntscr.com/tyf89k

 

Later go to the source code schema and inherits from the base one, see before at http://prntscr.com/tyfaq8 and after change the parent page at http://prntscr.com/tyfbnh

 

Clear cache, reloads http://prntscr.com/tyfev7

 

Open the account page and nothing http://prntscr.com/tyfgd7

 

Also I logout, clear cache, login and also nothing, even I compile all and nothing.

 

Go to section wizard opens page config and the parent page it's ok, but doesn't get the page I need, just an empty one http://prntscr.com/tyfhut

 

But if I click, for example on Source code and again on Page, magically I get what I want, but still doesn't work, because if I go back to Section Wizard and save, the page doesn't save the changes see at the following video in https://share.vidyard.com/watch/bFEFaUVYPMKVBiSVdgjSDJ?

 

Thanks

 

 

 

Julio.Falcon_Nodos,

 

We are glad to inform you that starting from 7.16.2 version you can now copy a section record page and customize it as a separate page. Please find more information about it in the article by the link below (the “USER CUSTOMIZATION TOOLS” chapter):

 

https://academy.creatio.com/documents/creatio-release-notes-7-16-2

 

Best regards,

Norton

Norton Lingard,

Hi Norton, doesn't works, if fails. Did you try?, Support inform to me it's will be resolved on 7.16.4. For this reason I need to understand the "old way"

Julio.Falcon_Nodos,

 

I have just tried to copy one page to another and it worked perfectly on my local instance with 7.16.3 version. Therefore, please consider using this functionality instead of using the old solution.

 

Best regards,

Norton

Show all comments

Hi I'd like to create a rule where an email is attached to a custom object. I tried to follow the link below, but I don't see my custom object on the 'Connected object' drop down list. 

https://academy.creatio.com/documents/base/7-15/how-set-rules-binding-emails-other-creatio-objects-automatically#XREF_60839

 

Do I need to execute some sql scripts? If so what script do I need to run?

 

Thanks,

Jose

Like 0

Like

4 comments
Best reply

Hi Jose,



You can select * from RuleRelationSections and see how the fields look.



You need the Name (capitalized) of the custom section you want to add and the Uid of this section from SysSchema table.



So the script should look like this:



insert into RuleRelationSections (Name,SectionSchemaUId) values ('name of the object capitalized','UID of the custom object from SysSchema')



Thank you.

Hi Jose,



You can select * from RuleRelationSections and see how the fields look.



You need the Name (capitalized) of the custom section you want to add and the Uid of this section from SysSchema table.



So the script should look like this:



insert into RuleRelationSections (Name,SectionSchemaUId) values ('name of the object capitalized','UID of the custom object from SysSchema')



Thank you.

Thanks Bohdan! I follow your instructions and it worked as I need it.

Hello Bohdan Zdor, 

Where we can get RuleRelationSections? and where to put the query?

 

Thanks in Advance

Hi Shrey Soni,



You can find RuleRelationSections as the object in advanced settings of your instance.



You can put the query using SQL Executor (https://marketplace.creatio.com/app/sql-executor-creatio)

if your instance is the cloud one.



In case you have an on-site SQL installation of Creatio you can use your SQL Management Studio to put the queries.



Thank you for choosing Creatio!

Show all comments
cache
repositories
iCacheStore
7.15
Studio_Creatio

Hi



We have a need to cache some data at the user session level on the server and have identified iCacheStore as the repository choice for this. The following link (https://academy.creatio.com/documents/technic-sdk/7-15/repositories) only gives examples to store strings as values inside the cache object dictionary. 



Could we get a code snippet for how to store C# objects as values inside the cache object dictionary? Thanks in Advance!!

Like 0

Like

1 comments

Dear Shrikanth,

 

In order to store an object in Application cache you should serialize the object to string and save the string. Please find more information about serialization in the article by the link below:

 

https://stackoverflow.com/questions/2434534/serialize-an-object-to-string

 

Best regards,

Norton

Show all comments

Hi Community,

 

In client code, How i can retrieve the html div id of each row of grid section data?

Like 0

Like

3 comments

Hello Fulgen,

 

This is an out-of-the box logic of our application so that IDs of elements on the page are generated randomly when refreshing the page. Currently there is no way to modify this logic since it is set in core application schemas and binary files of the application. We already have a problem registered to our R&D team so they could add some extra logic that allows static IDs of elements on the page (since request like that was asked to integrate Creatio application with PRA tools like UiPath).

 

The only possible way to achieve your task is to use data-item-marker since values there are static and doesn't modify after each refresh of the page. For example data-item-marker for global search window is "command-line".

 

Best regards,

Oscar

Oscar Dylan,



Thanks Oscar,



I just noticed like in Product Section data item marker is the product name, if there are duplicate product name data item marker will not be unique. Is there a way I can modify the data-item-marker of each row, i will give the guid of the record instead of the name? Please give me example how to do it. Thank you so much

Hello,

 

It is not possible to modify "data-item-marker" of the edit page (it is being generated) and we don't have a particular example of such an implementation. 

 

Best regards,

Oscar

Show all comments
delete
order
7.11
account
audit
order_delete
Studio_Creatio

Hi Team, 

 

Is there a way to keep a track of activities like who has deleted the order, invoices and accounts. How can we find who has deleted/edited the orders/accounts/invoices etc? Please let me know if there is any way to do it?

 

Thanks,

Gokul

Like 0

Like

2 comments

Dear Gokul, 

 

You can enable a change log to track the modification/deletion of data. Here is an academy page on the change log: 

https://academy.creatio.com/documents/administration/7-15/change-log

 

Dennis Hudson,

Thank you

Show all comments
mobile application
7.15_()
Studio_Creatio_()
7.15
Studio_Creatio

Hi Community,

In mobile grid view, we are showing a date/time field, we want to change the format of Date/Time. Anyone, please guide me to do this.

Like 0

Like

3 comments

It's possible to set the correct date time format in user profile settings in Creatio that will be automatically applied to the mobile application too - https://i.imgur.com/luwba6x.png

 

Hi Alina (or others), I aware that this is a quite old post, but in the current Mobile app it doesn't seem to work. I have the date and time format in my Creatio app set to Dutch, which should mean DD/MM/YYYY for the date, yet it remains in format MM/DD/YYYY in the mobile app. I've also searched system settings in the browser app, but am not able to find anything useful. Is there any way to force this change in the Mobile app, as I can't seem to find it. Thanks

Hi Kurt,

 

unfortunately, there is no such option to change the date format, as for now.

We will register the task for our developers to add this functionality in the future.

 

Regards,

Gleb.

Show all comments
oData
7.15_()
Studio_Creatio_()

Dear mates,

I m building an external form which must insert/update an object collection with oData.

GET - POST and DELETE works fine

But if i want to update (PUT), i ve got the following error: the item is not found

{"error":{"code":"1","message":{"lang":"","value":"L'\u00e9l\u00e9ment UsrExternalisation est

    introuvable
."},"innererror":{"message":"L'\u00e9l\u00e9ment UsrExternalisation est

    introuvable
.","type":"Terrasoft.Common.ItemNotFoundException","stacktrace":" at

    Terrasoft.Core.Entities.Services.EntityLazyProxy.<>c__DisplayClass28_0....

My PUT function works fine in other object update.

Do you have an idea why this error occurs ?

Thanks,

Nicolas

Like 0

Like

2 comments

What does the URL look like that you're doing the PUT on? It needs to look like this (but obviously with the record Id instead of an empty Guid):

https://creatioaddress/0/ServiceModel/EntityDataService.svc/ContactCollection(guid'00000000-0000-0000-0000-000000000000')

Also, even though the docs specify a PUT for updates, it will also accept a PATCH (which is what I usually use)

Ryan

Hi Ryan,

I don't understand why my PUT calls work fine today without any modification on my side.

Here's the URL:

https://urltocreatio/0/ServiceModel/EntityDataService.svc/UsrExternalisationCollection(guid'b83bedb1-ad72-4c6a-9965-88677a13dfe1')

I see with my support team if they have modified something.

Thank you for the answer, have a nice day.

Nicolas

 

=>>>>

I had the problem one more time.

it was because i didn't compile the database new elements before to try my oData access

Show all comments
7.15_()
Studio_Creatio_()

After migration from version 7.12 to 7.15 one of our processes throw such exception (in subject).

when i click save system wants to publish script tasks i click publish get message compilation succesfully but its does not help

 

Regards

Tomek

Like 0

Like

4 comments

Hello Tomasz, 



Can you please try to compile all items on your website first and see if it helps? 



Kind regards,

Roman

Roman Brown,

unfortunately it didn't

regards

Tomek

Roman Brown,

I have the same issue now, I published the process separately, the package, and the entire system. nothing helps I still get this error

Any ideas?

the same problem, but in Creatio 8.0.6, created the source code, compile all but no way. any ideas?

Show all comments
7.15_()
Studio_Creatio_()

Hi;

I have a simply question.

how can I create a new version of process if i don't have any running instance of it?

 

regards

Tomek

Like 0

Like

1 comments

Hi Tomek, 



Unfortunately, there is no such functionality in Creatio yet. 

The only way to create a new version of existing process is to save it when at least one instance of this process is running or new version cannot be saved in it's package (happens when a process has been imported as a part of some package into the system). 



We already have a proposition created for the responsible R&D team to implement functionality which would allow users to create a new versions of the process despite of conditions mentioned above.

I will pass this post to them so to increase the importance of it. 



Kind regards, 

Roman 

Show all comments
7.15_()
Studio_Creatio_()

Hi;

Can we in easy way block changing column setup for details for some users?

I try deny add records to User profile but it doesn't work

Regards

Tomek

Like 0

Like

4 comments

Dear Tomazs,

Unfortunately, there are no basic application tools to restrict the columns setup for users. Each user can set up the columns of a section as per his preferences and own convenience. This is the main point of columns settings. As a workaround, you can make changes for all users by clicking on the button 'Save for all users' in the column list setup http://prntscr.com/lrrfbr . This option is available for the users with the system administrator rights. Thus you can set up the columns view for all users, but they still will be able to change it.

Regards,

Dean

Dean Parrett,

thanks

Dean;

did you try to hide it in CSS?

Regards

Tomek

Dear Tomasz,

You can try to do it, but unfortunately we do not have any examples of such implementation.

Regards,

Dean

Dean Parrett,

Thanks

Show all comments