Wht is process name dynamic override?
Answers were Sorted based on User's Feedback
Answer / anshul
An XPath formula specifying the name of the process
to call. Use this field to dynamically determine which
process to call when the process instance is running.
You can use the Process Name Dynamic Override field on the Configuration tab
to specify an XPath expression that determines which process to call. This is
useful for calling a different process depending upon the value of the XPath
expression. For example, you have an incoming HTTP request that contains an
attribute named orderAmount. For all incoming orders over $10,000, you wish to
call a process that includes activities in the Manual Work palette to obtain the
proper approvals. For orders under $10,000, you wish to call a process that
handles the order automatically. You can create the following expression that
resolves to the proper process name for each type of order:
if($IncomingOrder/orderAmount > 10000) then
’/MyProject/manualApproval.process’
else ’/MyProject/processOrder.process’
Use the full path and name of the process file as stored in the project directory.
When you use the Process Name Dynamic Override field, you must also specify a
process to call in the Process field. The input, output, and error definitions of the
specified process must be the same as any process that the expression in the
Process Name Dynamic Override field can evaluate to.
Input
See TIBCO BusinessWorks Process Design Guide for more information about
mapping and transforming input data.
The input for the activity is the following.
It may be helpful to create process definitions that act as programmatic interfaces
when using the Process Name Dynamic Override field.
In the example above, you may create a process named orderProcessOrApprove.
The only purpose of this process is for specifying the input, output, and error
schemas. Place this process in the Process field of the Call Process tab. Then,
create the manualApproval and processOrder process definitions as copies of the
orderProcessOrApprove process. The Call Process activity then has the correct
input, output, and error schemas for all processes that can be called.
If you use the Process Name Dynamic Override field, make sure you include all
potentially callable subprocesses when you create your Process Archive for
deployment. TIBCO Designer cannot determine which subprocesses are
potentially callable at design time, and therefore they cannot be automatically
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / kumar k
for example we have 3 processes like addition,subtraction,division and one default process.now we have to call the one process dynamically,based on incoming values,when the process instance running.suppose getting input two values a,b then you have write this....in callprocess activity process dynamic override Xpath builder.
if ($Map-Data/root/a > $Map-Data/root/b)
then
'/processdynamicoverride/addition.process'
else if($Map-Data/root/a = $Map-Data/root/b)
then
'/processdynamicoverride/division.process'
else if($Map-Data/root/b > $Map-Data/root/a)
then
'/processdynamicoverride/subtraction.process'
else
'/processdynamicoverride/default.process'
based on the a,b values the process dynamically calls one process.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is custom id?
What is the purpose of a lock shared configuration resource?
I need to hit a service of a jms connection from another jms connection.I am using soap over jms.How can we achive this?
What is process name dynamic override?
What is the scope of user defined process variables ?
I wold like to learn TIBCO.Can any one who is working on TIBCO,please advice.Tell me brief abt TIBCO.Currently i have Java/J2ee background.Please update u r mail Id too.Thanx in advance
How to control the sequence of execution of process instances created by a process starter ?
What is max size and where u can define the size of the message over jms server ?
What is the functionality of the retrieve resources resource?
What are the mandatory configuration parameters for ftp connection & ftp with firewall ?
Which group do you use to wait for multiple events and proceed with the first to occur ?
Explain the process configuration parameters - max jobs, flow limit & activation limit ?