Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Define constants in workflow

Former Member
0 Likes
797

Hi,

I am using loop until for sending workitem to a group of user. For assigning agent, I am using Role and getting proper agent. I want to come out of loop when loop pass is n times. I am using container operation for incrementing loop count (loop_count = loop_count + 1). I want to specify 1 as a constant, as we can't assign 1 directly. Please suggest how to define a constant inside workflow.

Thanks in advance.

--Ashok

2 REPLIES 2
Read only

Former Member
0 Likes
477

Hi Ashok,

I think you can try this way.

Declare a Container element which refers to Database field which in turn is an integer. Dont set any IMPORT or EXPORT parameters for this container element. But set it's default value as 1.

I think this may cater your need.

Regards,

Raja Sekhar.

Read only

Former Member
0 Likes
477

I am simply using a container operation

Result Element App_Counter

Assignment = Assign (contents of table ar

Expression &APP_COUNTER&

Operator + (Add)

Expression 1

Does'n this work for you.

---

Linkin