I created a class UsrAccountAddressEventListener in my package. I want this class to inherit OOTB AccountAddressEventListener (Package CrtCustomer360App, assembly CrtCustomer360App.dll, Namespace Terrasoft.Configuration.CrtCustomer360App).
But because CrtCustomer360App is configured with Compile into a separate assembly, I cannot add a using Terrasoft.Configuration.CrtCustomer360App without a compilation error.
I am trying to invoke a business process from C# script. Below is my code,
ProcessSchema schema = UserConnection.ProcessSchemaManager.GetInstanceByName("Cw AI Process");
Process process = schema.CreateProcess(UserConnection); process.SetPropertyValue("RecordId", Guid.Parse("e308b781-3c5b-4ecb-89ef-5c1ed4da488e"))...MoreLess
I never done this with output parameters, but it may be that your process is in background mode (which is not allowed), or your parameter is not of type "Output"
We are trying to automate the data import process in every page (for every data models) of Creatio, instead of manually selecting and importing the excel data into creatio. Is this possible in creatio? If possible to automate what would be the requirements ? Please let me know.
I have a List page connected to my page-level data source. Each of these records also has related entries in the SocialMessage table, which stores comments and likes for my records. I want to show Number of Likes count and Number of Comments count on my List view, alongside fields from...MoreLess