I have a custom button which when clicked brings up an pop up box on screen. I have used the web socket mechanism which gets triggered when the button is clicked.
The issue is sometimes the pop box does not get generated after clicking the button, however after refreshing the browser page (hard reload/empty cache), the pop box starts generating again on the button click.
I want to know how to make sure the input box gets generated every time the button is clicked without having to refresh the page.
You need to debug the logic of the popup formation upon the button click when the issue reproduces and find out what exactly is not triggered that prevents the popup formation.
Лучше сам процесс выполнить асинхронно с помощью признака "Выполнять в фоновом режиме" у стартового сигнала в бизнес процессе. Кроме того, прошу вас вопросы на русском языке адресовать на ru комьюнити - https://community.terrasoft.ru/
I've a compilation error during the installation of a package on production environment.
The same package was fine on test cloud environment.
The error is
"2021-12-22 22:09:31,627 Autogenerated\Src\AccountSchema.Custom.cs(266,41) errore CS0115: 'AccountSchema.CreateSifUnindustriaReferenceContactColumn()': no suitable method found to override"
In the package I've renamed the custom column "SifUnindustriaReferenceContact" on the Account table.
Можно ли и если можно, то как сделать замещение класса?
Например: есть сервис который вызывается с разных мест(клиентские схемы, БП). Все находится в заблокированных пакетах. Как изменить методы этого сервиса?
I installed a new package in the Creatio environment and then deleted it from the Advanced Settings, but the changes present in the package are still visible in the environment.
Hence what additional steps do I have to perform to restore or reset the Creatio environment to its basic default state after I delete the new package?
I have a case where I need to get the section's id that the detail belongs to in detail edit page. While var sectionName: this.get("DetailColumnName"); gives me the code of the section, it would be easier to process logic if I could get the section's Id in SysModule table.
You can initiate the ESQ query on the onEntityInitialized method execution on the edit page of your detail and call the SysSchema table using the detail column name so to get the UId of the section schema and then call the SysModule table to get the module id (the column in SysModule is SectionSchemaUId).
It's not recommended at all. Please create a section that will be not displayed anywhere and use its table to perform a data import from an external source.
We need to import lookup values in more than a language from an Excel file.
We have an Excel with two columns: Name (italian) and Name (english).
When we import from Excel the Name column goes into the "current language" lookup name but we want to import the names in two different languages (both active in Creatio) without duplicating them.
You need to import values into two different objects. Let's take [Lookup] for example.
When you import the values for the English culture, you can import directly into [ObjectName] (Lookup in our case) and can only have two columns: Id of the record and the actual Value.
When you import the values for Italian Culture you need to import into Sys[ObjectName]Lcz ( SysLookupLcz in our case) and you need 3 columns: Id of the record - mapped to RecordId, CultureId and the Actual Value.