Help and advice appreciated.
I have a new entity type called Project hung off my Opportunity entity. The relationship is such that each Opportunity can have many Projects.
In the script language within BPM I have created a new Project entity. This works fine. What I want to do is have the Project.name attribute have a calculated value which is derived from the Opportunity.Name.
This is what I would like to do is something like the following (but I appreciate that this will not work):
How do i achieve this? I am sure that there is a function but I am not sure which one.
Thanks in advance.
I have a new entity type called Project hung off my Opportunity entity. The relationship is such that each Opportunity can have many Projects.
In the script language within BPM I have created a new Project entity. This works fine. What I want to do is have the Project.name attribute have a calculated value which is derived from the Opportunity.Name.
This is what I would like to do is something like the following (but I appreciate that this will not work):
Code:
Project.name = string\concatenate(Opportunity.name , '-Cash-Collection');
How do i achieve this? I am sure that there is a function but I am not sure which one.
Thanks in advance.
Comment