the problem is that my mastercolum is not the Id of the record, is just a column with a related contact.
i need reload/refresh the detail when the contact change for another. I did try with loadDetail() because the reloadDetail is obsolete but not refresh the data.
I am trying to open a new record of a existing custom object using Pre-Configured Process element. I am able to load the card schema when the process runs but when I save it, it closes the form and i can see a record saved. But in the Process log, it is still running and in an infinite loop.
<>
How can i get the ID of the record running in the Pre-configured page? I want the system to run a set of activities after it save the record. I am not able to use Edit Page process element as it gives me the below error:
"Terrasoft.Core.LicException: Cannot add more than 1000 records to table "ActivityParticipant" in demo mode".
This error indicates that you have added more than 1000 records to the ActivityParticipant object in the demo mode. As this limit is reached, the system cannot add more records to this object so that the process cannot be completed. You need to delete some records from this object to test your process in demo mode.
Since there are some in progress activities which has some participants connected to it, how can I remove the Activity participants records without affecting any task and I am not sure which participant's task is currently active.
Appreciable if you can share the steps on how to do it?
You can try to delete some completed or any other activities that you do not need so that the Activity participants should be also deleted for those records. Please try to deal with it in this way.
You can make the field visible or hidden if the printable meets some conditions with the help of the development tools only. Please use the following script as an example for further investigation. It hides a form depending on a field value (if it’s less than 350 000 in this case) and you can alter it to reach your aim:
Please also note that such idea has been registered for our R&D team to include the functionality in the upcoming releases in the out-of-the-box version.
You can find the schema by the name in the configuration (System Designer -> Advanced settings -> Configuration). Please note that there may be a few schemas with the same name belonging to different packages. The schemas with the user customization are placed in the Custom package and if there is no schema in that package you'll need to create it to be able to apply any changes.
In out-of-the-box version of the system the Address fields are not required for creating a new account, so you may leave them empty. If in your system you cannot skip this step, please write an email to support@bpmonline.com with the URL of your instance so we could check and provide you with the further assistance.
I want to add some fields from contact section inside order section, Currently, only the contact lookup that shows the name of the contact is available out of the box, I want to add extra fields from contact like Country and City fields so they will be populated automatically once I select a contact inside order section.
We are using the cloud version of bmp'online sales commerce.
The easiest option to achieve your purpose would be creating a custom business process that would be triggered by the field Contact changed on the Order page. The process will read the contact data (including City and Country) and auto-populate the fields with the help of Modify Data element. So this would be a simple process that consists of three elements only.
The new section can be created based on the existing object in database directly only.
Here is the example of the query you should run to create a new section based on the Activity object:
insert into SysModule
(Caption, SysModuleEntityId, Image16, Image20, FolderModeId, GlobalSearchAvailable, HasAnalytics, HasActions, HasRecent, Code, ModuleHeader, CardSchemaUId, SectionModuleSchemaUId, SectionSchemaUId, CardModuleUId, Image32Id, LogoId)
values
('Emails', 'a2e7bf65-7380-e011-afbc-00155d04320c', (select Image16 from SysModule where Id ='055063c9-8180-e011-afbc-00155d04320c'), (select Image20 from SysModule where Id ='055063c9-8180-e011-afbc-00155d04320c'), 'b659d704-3955-e011-981f-00155d043204',
1, 1, 1, 0, 'Email', 'List of mails', '80918b27-ff37-4d8c-ba73-c985d74d3dc2', 'df58589e-26a6-44d1-b8d4-edf1734d02b4', '569aaf1a-5943-4f87-ab47-948d941e4920', '4e1670dc-10db-4217-929a-669f906e5d75', 'abe30a95-e663-43a9-a881-834b70de5206', '631b1018-9b82-43fe-9f5e-aad272aae679')
This is the first step to create a separate section that will display the activities with the type email only. The following actions you should perform are: