Sales_Creatio_enterprise_edition
8.0

I am getting an error message that says "" when I try to update a record.

I have tried to troubleshoot this error by reviewing the data in the system and ensuring that there are no duplicate records or keys. However, the error message still persists.

Could you please help me to resolve this issue?

Like 1

Like

1 comments
Best reply

Hello,

 

The reason for this issue was in the duplicates in the SysSchemaUserProperty table related to the "false" state of the "Enabled" property of two DCMs. As a result of this the system couldn't form structure for all DCMs properly and this resulted in the error messages in two modal boxes you presented in the screenshot.

Hello,

 

The reason for this issue was in the duplicates in the SysSchemaUserProperty table related to the "false" state of the "Enabled" property of two DCMs. As a result of this the system couldn't form structure for all DCMs properly and this resulted in the error messages in two modal boxes you presented in the screenshot.

Show all comments
printable
hideEmptyColumns
Sales_Creatio_enterprise_edition
8.0

Hello Community,

 

Is there a way to hide empty columns of a table in a printable?

 

Thank you

Like 0

Like

1 comments

Hello, 



Unfortunately, as for now, there is no possibility to implement your business task and we do have the correspondent problem registered on our side and R&D team is currently working on implementing this new functionality in one of the future releases of the application.



Thank you for helping us to make our application better.



Best regards,

Orkhan

Show all comments
Sales_Creatio_enterprise_edition
8.0

Does anyone know how to easily hide/remove the Account/Customer panel (see image) in the Opportunity Page?

Like 0

Like

6 comments
Best reply

Hi Rob,

I think the simplest way to do that is to use CSS

If you look at the code Source the Div id is "ClientProfile"

 

So you can add a CSS file to your opportunity page:

 

And you create a CSS file in which you add a display none for the id:

Hi Rob,

I think the simplest way to do that is to use CSS

If you look at the code Source the Div id is "ClientProfile"

 

So you can add a CSS file to your opportunity page:

 

And you create a CSS file in which you add a display none for the id:

LÉZORAY Nicolas,

 

Perfect. Thanks!

LÉZORAY Nicolas,

Hi Nicolas

 

Just to follow up on this if I wanted to remove the 'Actions' drop down from this page also would it be something similar. Thanks

Hello Robert !

 

Yes like this in the Oppotunity CSS file :

#OpportunitySectionV2SeparateModeActionsButtonButton-wrapperEl {
	display: none;
}

 

LÉZORAY Nicolas,

I did this in the OrderPageV2 with the code above but just replaced the page

 

 #OrderPageV2SeparateModeActionsButtonButton-wrapperEl {

    display: none;

}

But this did not work. Does the button in this page have a different name?

 

thanks

LÉZORAY Nicolas,

 

Further to above your solution on the section page works great but i cannot get it to work on the record page (OrderPageV2). Tried changing the button name but no joy. Any thoughts Nicolas?

 

Show all comments
event
sub-process
OrderProducts
Sales_Creatio_enterprise_edition
8.0

Hi community,

When an order is completed (status), we need to prevent users from adding order product either by clicking the + button, or by data import.

So I enabled the Before record added event of OrderProduct, and created the OrderProductInserting event sub-process trying to stop new orderproduct added if its relating order's status is completed.

I have tried successfully to stop orderproduct from adding as the code screenshots provided here. But what I don't know is how to get the order's status from within the method OrderProductInserting() so that I can call the ThrowInsertException() function to stop the order product added.

Any code example will be very appreciated!

Andrew

Like 0

Like

2 comments
Best reply

Hello Andrew,

Here is an example of how to read OrderStatus Id inside the event process:

var order = Entity.GetTypedColumnValue<Guid>("OrderId");
			var orderESQ = new EntitySchemaQuery(UserConnection.EntitySchemaManager, "Order");
			orderESQ.UseAdminRights = true;
			orderESQ.AddColumn("Id");
			orderESQ.AddColumn("Status");
			var entity = orderESQ.GetEntity(UserConnection, order);
    		var status = entity.GetColumnValue("StatusId").ToString();
    		if (status == "{Completed OrderStatus Id}"){
    			// DO Something
    		}

 

Hello Andrew,

Here is an example of how to read OrderStatus Id inside the event process:

var order = Entity.GetTypedColumnValue<Guid>("OrderId");
			var orderESQ = new EntitySchemaQuery(UserConnection.EntitySchemaManager, "Order");
			orderESQ.UseAdminRights = true;
			orderESQ.AddColumn("Id");
			orderESQ.AddColumn("Status");
			var entity = orderESQ.GetEntity(UserConnection, order);
    		var status = entity.GetColumnValue("StatusId").ToString();
    		if (status == "{Completed OrderStatus Id}"){
    			// DO Something
    		}

 

Hi Dmytro, appreciate very much for the help. It works!

Show all comments
edit page
cardState
DCM
Freedom_UI
Sales_Creatio_enterprise_edition
8.0

Hi Community,

 

I have this requirement that should allow users to revert changes of a specific record value. For example:

 

I have a specific field (Amount), that changes value when a new state is triggered (ex: Processed). It should be possible for the user to revert the value after selecting the previous state.

 

State New  -> Amount 5

State Processed -> Amount 10

State New  -> Amount 5

 

Can you please help me achieve this requirement?

 

Thanks in advance.

 

Best Regards,

Pedro Pinheiro

Like 0

Like

4 comments

Hi!

 

You can configure business rules to set a value in a specific field when a condition is met. You can find an example of how to configure it in the manual - https://academy.creatio.com/docs/user/customization_tools/ui_and_busine…

 

Regards,

Anton

Hi Anton Starikov,

 

Is it possible to use business rules if the value is dynamic? 

 

For example, when a specific requirement is met I want the field to have the previous value, which was defined by the user.

 

Thank in Advance.

 

Best Regards,

Pedro Pinheiro

Hi! Pedro Pinheiro,

 

Unfortunately, you can't do this with the standard settings. Perhaps it can be implemented by custom development.

 

Regards,

Anton

Hi

Anton Starikov,

 

Do you have any steps that could help us implement this custom logic? 

 

Thanks in Advance.

 

Best Regards,

Pedro Pinheiro

Show all comments
Freedom_UI
save record
edit page
Sales_Creatio_enterprise_edition
8.0

Hi Community,

 

I have this requirement where I need to stay on the edit page after saving a new created record. Similar to what already exists on the old UI (https://community.creatio.com/questions/how-save-and-stay-edit-page-cli…).

 

However, I couldn't find the property "IsSilent" on the new Freedom UI pages.

 

Can you please help find a solution to this requirement?

 

Thank in advance.

 

Best Regards,

Pedro Pinheiro

Like 2

Like

5 comments

Hi Pedro,

 

Our R&D team has an opened task on this topic, there is a test solution, but it cannot be applied to productions. Once the task is completed we will notify all our customers and partners in the Release Notes for the app. Thank you for helping us in making the application better! 

Hey Oleg,

 

Any update on this? Is there a way to update a field, or save a record silently without triggering other events/handlers?

 

Thank you!

Chris

Chris Heyman,

This functionality has not yet been implemented, but we have already received many requests from users, so the R&D team should take this task into development. 

Hi all,

 

Any news on this?

 

April 2023 was the original request.

 

Almost one year in.

 

Thanks

Luis Tinoco Azevedo,

You can set 

request.preventCardClose = true;

in the "crt.SaveRecordRequest" request. See my post on this thread for more details: https://community.creatio.com/questions/dont-close-page-after-saving

Ryan

Show all comments
TimeLine
Sales_Creatio_enterprise_edition
8.0

Hello community,

 

I am trying to bring timeline for custom section. I have created a record in TimelinePageSettings table. To update the data i used the below script. So when i am using the full json ,timeline tab is not showing on the UI. When i am using the json with only SocialMessage it is working properly for messages. I have checked appending Id to reference column name but it didnt work .  I might be missing a step , please help me out.

 

 

UPDATE TimelinePageSetting

SET Data = CONVERT(varbinary, '[

  {

    "entityConfigKey": "706f803d-6a30-4bcd-88e8-36a0e722ea41",

    "entitySchemaName": "Activity",

    "referenceColumnName": "UsrCreditCheck",

    "masterRecordColumnName": "Id"

  },

  {

    "entityConfigKey": "09a70391-b767-40ab-97b8-6d1b538adbe6",

    "entitySchemaName": "Activity",

    "typeColumnName": "Type",

    "typeColumnValue": "e2831dec-cfc0-df11-b00f-001d60e938c6",

    "referenceColumnName": "UsrCreditCheck",

    "masterRecordColumnName": "Id"

  },

{

    "entityConfigKey": "35b5c45f-36e7-450f-a282-81c56624d29e",

    "entitySchemaName": "SocialMessage",

    "referenceColumnName": "EntityId",

    "masterRecordColumnName": "Id"

  },

  {

    "entityConfigKey": "aeca6df0-5c89-4066-bdfa-eff486ae8fed",

    "entitySchemaName": "Call",

    "referenceColumnName": "UsrCreditCheck",

    "masterRecordColumnName": "Id"

  },

  {

    "entityConfigKey": "59de07a7-28dd-4dc9-a106-a07cb9981423",

    "entitySchemaName": "UsrCreditCheckFile",

    "typeColumnName": "Type",

    "typeColumnValue": "529bc2f8-0ee0-df11-971b-001d60e938c6",

    "referenceColumnName": "UsrCreditCheck",

    "masterRecordColumnName": "Id"

  },

 

  {

    "entityConfigKey": "09a6dad5-036b-4075-a813-e8278a5360ea",

    "referenceColumnName": "UsrCreditCheck",

    "typeColumnName": "Type",

    "typeColumnValue": "539bc2f8-0ee0-df11-971b-001d60e938c6",

    "entitySchemaName": "UsrCreditCheckFile",

    "masterRecordColumnName": "Id"

  },

  {

    "entityConfigKey": "a5900576-dca5-4d82-aed3-91c8909a3028",

    "entitySchemaName": "Document",

    "referenceColumnName": "UsrCreditCheck",

    "masterRecordColumnName": "Id"

  }

]')

WHERE Id = 'D15FD665-AAD3-4AC7-8F1A-54DC5342E616';

 

Like 1

Like

1 comments

Hello,

 

You need to create a custom item view module based on the Contact object and add it to the Leads section. Please use this article as a reference where the same task is described using a custom "Books" section added as timeline item to the "Accounts" section.

Show all comments
Sales_Creatio_enterprise_edition
8.0

Hi all,

 

Does anyone have a solution using Freedom UI or business process, which allows you to read the previous column value? 



For example, I need to run a business process triggered on the change of a lookup, but for both the previous and new value.

 

Thanks!

Like 0

Like

1 comments
Opportunity
confidencelevel
8.0.4
Sales_Creatio_enterprise_edition
8.0

 I have three edit pages for Opportunity section, and I would like to replicate the Confidence Level block from the out-of-the-box edit page to the other two pages I created. I have attempted to copy and paste the block, but I am encountering some issues. Could you please advise me on how to proceed or provide me with any necessary instructions?. 

TIA

Like 1

Like

1 comments

Hello,



It could be achieved only by development. 



This post could be helpful for you.

Show all comments
Sales_Creatio_enterprise_edition
8.0

Hello everyone, I'm looking for a way to integrate information about an appointment, such as the date and time, into my email template. I have set up the email to be sent automatically when an appointment is scheduled, but I'm having trouble incorporating macros. Can anyone help?

 

Like 0

Like

2 comments

Hello,

 

Please find the instructions on macros creation in this Academy article.

Mira Dmitruk,

Thank you for your response, I will check if I can find my answer in the document.

Show all comments