Generating and Changing object name using process flow?

Generating and Changing object name using process flow?

rajankur6494
Advocate Advocate
11 Views
1 Reply
Message 1 of 2

Generating and Changing object name using process flow?

rajankur6494
Advocate
Advocate

[ FlexSim 20.0.10 ]

Hi Team,

Is there any way to change staff name using process flow?

Thank you!

ChangeNameUsingProcessFlow.fsm

0 Likes
Accepted solutions (1)
12 Views
1 Reply
Reply (1)
Message 2 of 2

joerg_vogel_HsH
Mentor
Mentor
Accepted solution

Custom Code or Code snippet:

token.Staff.name = Table("GlobalTable1")[1][1];

or with a direct cast

token.Staff.as(Object).name = Table("GlobalTable1")[1][1];
0 Likes