I have a business process that will open a sub-process. That one I want to have a timer so every 10 minutes it will be called until it finds some type of value.
Yes, it works but it still doesn't really help me. I want for the timer to run every 5 minutes only when I start that sub process. That process is trigger by the pressing of a button.
In addition to the above, I could see the source code section on the downloaded https://academy.creatio.com/docs/node/2311 package with many autogenerated function related to event triggers. If I check my custom object it only has getter and setter for each columns.
To autogenerate the source code I have tried
1. Generate schemas
2. Publish
3. Complie
All options I have tried but Source code is not generated.
From the screenshots it look like the column you're storing the number in is "UsrCode", however the screenshots show you're attempting to set that in a column named "Code".
Secondly, it's unlikely that the name of the UserTask component (the element titled "Generate ordinal number" in your screenshot) is really just UserTask1 (unless you've changed it to that). To find it's name, select that element, then click the three-dot button on the top of the properties on the right and switch to advanced mode to see the name. Then change the "UserTask1" part of the code in both script tasks to that name (it's likely something like UserTask_ followed by random numbers/letters)
Thanks for your reply. I have double checked my code and I have changed it into "UserTask1" also I have shown 2 examples where I am trying to follow the tutorial with property value as "Code" and my custom section with the property as "UsrCodee".
Also, I see this as because of missing source code details for my custom section than the sample SDK which was referenced in the document.
Can you please explain the execution of the sub event process element?
It says: The event sub-process actions are executed as regular elements of the current business process and do not interrupt its execution.
When I through a message and an event sub process is being called, does the main process waits for the sub process to finish (like a regular sub process or regular element) or they run together?