Рет қаралды 253
In this video, we are able to create Orchestration process.
Orchestration:
Orchestration is the automated sequence of fulfillment steps for processing an order.
The Oracle Fusion Distributed Order Orchestration architecture is situated between one or more order capture systems and one or more fulfillment systems.
How to create and associate with Order Type Orchestration Process
• How to create Orchestr...
Pausing Distributed Orchestration Until the Perfect Ship Date!
• Pausing Distributed Or...
How to create PAUSE TASK in Orchestration in Oracle Fusion
• How to create PAUSE TA...
--------------------------------
Attribute Value : sacType
Specify the action to take when your If statement evaluates to True.
Set sacType to one of these values.
SAC_TYPE_EVENT. Pause the orchestration process until an event happens.
SAC_TYPE_TIMER. Pause the orchestration process until the date and time you specify happens.
SAC_TYPE_IMMEDIATE. Release the pause task and resume processing.
SAC_SYSTEM_EVENT_IPC_PAUSE. Use an interprocess communication (IPC) to pause according to an event across orchestration processes.
If you use IPC, the rule will evaluate the condition every time the orchestration process finishes a step even if you set reevaluateFlag to N.
Note that sac is an abbreviation for start after condition.
Attribute Value : reevaluateFlag
Y. Evaluate the condition every time the orchestration process finishes a step. If the condition doesn't evaluate to true, then release the pause task.
For example, assume the orchestration process is processing more than one fulfillment line in a sales order, and that you must evaluate the condition after it processes each line. You can use reevaluateFlag to evaluate each line.
For another example, assume you must print pictures for customers and then frame them. You set up a flow that includes another task that prints the picture. You promise same day shipping, so you periodically examine whether the picture printed so you can frame it as soon as possible.
N. Don't evaluate the condition every time the orchestration process finishes a task. If the IF statement is True, then the orchestration process remains paused until you explicitly release the pause task.