You are on page 1of 54

Using Workflow in Oracle Order Management

An Oracle White Paper October 2001

Using Workflow in Oracle Order Management

Table of Contents
EXECUTIVE OVERVIEW ..................................................................................... 4 INTRODUCTION..................................................................................................... 4 FUNCTIONAL DIFFERENCES............................................................................. 5 R11I FEATURES...................................................................................................... 6 FLEXIBLE AND EXTENSIBLE ORDER PROCESSES ....................................................... 6 Order Header and Line WorkFlow processes ................................................... 6 Workflow enabling order and line business functions....................................... 7 Creating customized workflow activities/sub-processes.................................... 9 Process dependencies...................................................................................... 10 AUTOMATED, DEFERRED AND MANUAL TRANSACTIONS ...................................... 11 INTERACTIVE DECISION SUPPORT AND EXCEPTION HANDLING ............................... 12 ORDER MANAGEMENT WORKFLOW STANDARDS.................................. 12 SYNCHRONOUS - IMPLEMENTING A BUSINESS FUNCTION THAT IS AUTOMATICALLY EXECUTED............................................................................................................. 12 MANUAL - IMPLEMENTING A BUSINESS FUNCTION THAT REQUIRES USER INTERVENTION. ..................................................................................................... 13 DEFERRED - IMPLEMENTING A BUSINESS FUNCTION THAT IS EXECUTED OFF-LINE. 14 NAMING CONVENTIONS ........................................................................................ 15 Process Flow ................................................................................................... 16 Sub-Process..................................................................................................... 16 Function Activity ............................................................................................. 16 ACTIVITY RESULTS ............................................................................................... 17 DEFAULT ERROR PROCESS.................................................................................... 18 ACCESS CONTROL................................................................................................. 18 USING WORKFLOW IN ORDER MANAGEMENT ........................................ 18 SET UP................................................................................................................... 18 Setup Order Management WF Administrator WF item attribute ................ 18 Review seeded OM WF data and Define Workflow processes via the Workflow Builder............................................................................................................. 19 Setup approval notification and OM: Notification Approver.......................... 20 Setup Workflow assignments for order/line transaction types ........................ 22 Setup the WF background Engine ................................................................... 23 ORDER OR LINE BUSINESS PROCESSES THAT ARE WORKFLOW ENABLED ............... 23 Booking ........................................................................................................... 23 Scheduling ....................................................................................................... 23

Using Workflow in Oracle Order Management

Page 1

Create Supply .................................................................................................. 24 ATO Processing............................................................................................... 24 Ship.................................................................................................................. 24 Purchase Release ............................................................................................ 24 Return Receipt ................................................................................................. 25 Fulfillment ....................................................................................................... 25 Invoice Interface.............................................................................................. 25 Close Order and Close Line ............................................................................ 26 MOVING ORDERS AND LINES FORWARD IN THEIR FLOWS ...................................... 26 Synchronous Completion................................................................................. 26 Manual Completion......................................................................................... 27 Deferred Completion....................................................................................... 28 TRACKING ORDER STATUS .................................................................................... 28 Order and Line Summary status...................................................................... 28 Workflow Activity Status Page ........................................................................ 29 Workflow Monitor ........................................................................................... 30 Public Status APIs........................................................................................... 31 WORKFLOW AND OTHER OM FUNCTION AREAS .................................................... 32 Cancellations................................................................................................... 32 Holds ............................................................................................................... 32 Processing Constraints.................................................................................... 32 ERROR HANDLING ................................................................................................. 33 Expected Errors............................................................................................... 33 Unexpected Errors .......................................................................................... 33 PURGING WORKFLOW STATUS INFORMATION ....................................................... 34 CUSTOMIZING ORDER AND LINE FLOWS................................................... 34 GUIDELINES .......................................................................................................... 35 EXAMPLES ............................................................................................................ 36 CAVEATS .............................................................................................................. 42 CONCLUSION ....................................................................................................... 43 GLOSSARY ............................................................................................................ 44 REFERENCES........................................................................................................ 44 APPENDIX A.......................................................................................................... 45 R11I.2 SEEDED ORDER HEADER/LINE WORKFLOW PROCESSES .............................. 45 APPENDIX B .......................................................................................................... 45 R11I.2 SEEDED WF ITEM ATTRIBUTES ................................................................. 45 APPENDIX C.......................................................................................................... 47 R11I.2 SEEDED UTILITY ACTIVITIES ....................................................................... 47 APPENDIX D.......................................................................................................... 48 PROCEDURES AVAILABLE TO QUERY HEADER STATUS.......................................... 48 PROCEDURES AVAILABLE TO QUERY LINE STATUS ............................................... 48 APPENDIX E .......................................................................................................... 50 PL/SQL WF WRAPPER FOR THE FUNCTION ACTIVITY IS THIS A BIG ORDER ..... 50

Using Workflow in Oracle Order Management

Page 2

Using Workflow in Oracle Order Management

Table of Figures

Figure 1a: Generic Order Header Workflow process ..................................5 Figure 1b: Generic Order Line Workflow process.......................................6 Figure 2: Sub-process that checks Order Totals and sends out a Notification................................................................................................9 Figure 3a: Order Booking sub-process........................................................10 Figure 3b: Enter Line sub-process...............................................................11 Figure 4: Automatic Scheduling sub-process ............................................13 Figure 5: Manual Booking sub- process .......................................................14 Figure 6 : Deferred Booking sub-process ....................................................15 Figure 7: Return Approval sub-process........................................................21 Figure 8: Transaction Types Form................................................................23 Figure 9: Progress Order LOV; available from the Sales Order Form....27 Figure 10: Order Organizer. Shows Order/Line Status summary ..........29 Figure 11: Workflow Status Page, available from the Sales Order Form 30 Figure 12: Workflow Monitor, available from the Status Page.................30 Figure 13 : Line Flow - Standard Items Only..............................................36 Figure 14: Book - Order, Manual and Deferred .......................................37 Figure 15: Export Compliance sub-process that uses a function activity38 Figure 16: Export Compliance sub-process that allows a re-try..............38 Figure 17: Export Compliance sub-process that is externally completed39 Figure 18: Export Compliance sub-process that handles holds. .............40 Figure 19: INCORRECT Flow to support both Order and Return Lines41 Figure 20: CORRECT Flow to support both Order and Return Lines..41

Using Workflow in Oracle Order Management

Page 3

Using Workflow in Oracle Order Management

EXECUTIVE OVERVIEW

Businesses seek technologies to increase profitability and enhance competency. They hope to use such technologies to streamline and automate their transaction flows, better manage exceptions and identify non-value added activities. Companies need software systems that can work in dynamic business environments, allow users to control business rules and increase transaction automation. Such systems not only have to be flexible and but have to also be easy to use. Workflow technology supports automation and continuous improvement of business processes. It supports routing information of any type according to userdefined business rules. Business transactions, such as order placements or purchase requests which involve various controls, routings, and approvals, can be managed more efficiently by leveraging Workflow technology. This is the primary reason why, Oracle Order Management integrates with Oracle Workflow; to provide users with a comprehensive order processing and fulfillment system.
INTRODUCTION

Oracle Order Entry (Release 11 and earlier) includes a feature called Order Cycles. This feature provides the flexibility in setting up different order processes to fit various business needs. Today, Order Management has greatly enhanced the order cycles functionality by replacing Order Cycles with Workflow. The goal is to give you the following benefits: Flexible and extensible order processing for all industry segments Automated transactions for reducing operation overhead Interactive decision support and exception handling

This paper attempts to explain functional differences between R11 Order Cycle and R11i Workflow. It also discusses Order Management Workflow features, Workflow standards, setup procedures, various means of processing orders and other useful tips.

Using Workflow in Oracle Order Management

Page 4

FUNCTIONAL DIFFERENCES

In R11i Order Management, Workflow replaces Order Cycles. Order cycles, cycle actions and approval cycle actions are obsolete. Users can define workflow processes that determine the series of activities that are executed in an order life cycle. Such workflow activities replace cycle actions. Workflow notification activities replace approval actions. The following table lists how cycle entities map to workflow ones in R11i:

R11 Entity Order Cycle Cycle Action Cycle Action Result Cycle Action Prerequisite Approval action

R11I Entity Workflow runnable process Workflow activity, Workflow sub-process Workflow activity result and look up Workflow Activity Transitions Workflow Notification Activity that requires a response

Note: Please check the Workflow users guide(A85440-01) for detailed information on workflow activities, sub-processes, processes, transitions and notifications. The following is an example of a generic order header workflow process:

Enter

Book - Order, Manual

Close - Order

End

Figure 1a: Generic Order Header Workflow process

Using Workflow in Oracle Order Management

Page 5

The following is an example of a generic order line workflow process:

Unreserve

Enter - Line

Schedule - Line

C reate Supply - Line

Ship - Line, M anual

Fulfill - Deferred

Fulfill

Invoice Interface Line

C - Line lose

End

Figure 1b: Generic Order Line Workflow process

R11I FEATURES Flexible and extensible order processes


Order Header and Line WorkFlow processes

In R11i, an order and each of its lines follow different workflow processes, unlike R11 order cycles, where an entire order and all its lines followed the same cycle. For example in R11i, an order header is entered, booked and then closed. Lines flow through line specific steps after the order is booked, such as scheduling, shipping, invoice interface, etc. Different lines on an order can follow different line flows, thus completing different activities. This means that return lines and sales order lines can be processed on the same order using different process flows. This can support requirements such as a Car Dealership, who can on a single order sell a new car to a customer and accept a trade-in on the customers old car. In R11 Order Entry, you can tailor cycles to your meet order processing needs by defining approval or custom cycle actions. Adding new approval actions is easy. However adding new custom actions is much harder, since that means you have to integrate with the obscure C based utilities that help set the status columns and move the order or line forward. Secondly the number of custom actions or approvals you can define is limited, since the number of status columns (S columns) available is fixed.

Using Workflow in Oracle Order Management

Page 6

Order Management addresses both these drawbacks in 11i, by integrating with Workflow. Oracle Workflow provides you with the Workflow Builder, a tool that lets you model your Ordering process, graphically. Secondly there is no limit on the number of custom function or notification activities you can define. Order Management provides you with seeded functional activities and subprocesses. Using the Workflow Builder, you can define new function activities and notifications. These functional activities, notifications and sub-processes serve as building blocks for creating flows. The product comes seeded with several order and line flows. If these seeded flows do not meet your requirements you can define your own. You can use these for processing your orders and lines, by assigning them to order and line transaction types.

Workflow enabling order and line business functions

If a business function is a workflow enabled, you can control when it is going to occur by adding the appropriate activity or sub-process into a workflow process. You can also control how it is executed; whether the activity requires user intervention, whether the activity is automatically executed, the activity is expensive and needs to be executed off-line. You can find order header or line business functions that are workflow enabled, in the seeded OM workflow activities or sub-processes. Order Management (OM) comes seeded with the following workflow item types: OM Order Header (OEOH) - All Order Header level activities and sub-processes, are seeded under this WF Item type. Header flows are started using this item type, with the header ID as the Item Key. An order flow is started when an order header is created and saved. OM Order Line (OEOL) - All order line level activities and sub-processes, are seeded under this WF item type. Line flows are started using this item type, with the line ID as the item key. An order line flow is started when an order line is created and saved. OM Standard (OESTD) - Common functions and lookups are seeded under this item type. No flows are started using this item type. OM Change Order (OECHGORD) - Change Order Notification flows are started using this item type. Some functions are seeded in multiple variants (Synchronous, Manual & Deferred). The following is a list of all the business functions that are Workflow enabled: Header level functions Activity or Sub-process name Equivalent to Cycle Action Concurrent program available in R11I

Using Workflow in Oracle Order Management

Page 7

Book - Order, Manual Book - Order, Deferred Close Order Header level Invoice Interface

Booking Close order N/A

No No No

Line level functions Activity or Sub-process name Schedule - Line Schedule - Line, Deferred Invoice Interface -Line Invoice Interface - Line, Deferred Ship -Line, Manual Pick Release, Ship Confirm and Inventory Interface N/A Close line Purchase Release Yes, to Pick Release Receivable Interface No Equivalent to Cycle Action Demand Interface Concurrent program available in R11i Yes **

Fulfill - Line Close - Line Purchase Release - Line, Manual Purchase Release - Line, Deferred Create Supply - Line Create Supply Order - Line Create Configuration Line Create Configuration Manufacturing Data- Line Return Receiving - Line

No No Yes

N/A Manufacturing Release

No Yes, to create Configuration, to create Work Orders.

RMA Interface

No

Note: For more details on the sub-process, please refer to the Order or Line business processes that are workflow enabled section, further down in this paper. ** - The seeded sub-processes have been designed such that concurrent program will pick up lines that did not schedule due to exceptions (holds,

Using Workflow in Oracle Order Management

Page 8

missing data etc.).


Creating customized workflow activities/sub-processes

Order processes can be dynamic and complex. Companies in different industries or regions often have different business needs and rules for fulfilling orders. Instead of providing flows and activities to meet every possible business rule and need, Order Management integrates with Workflow to provide easy customizing capability. Oracle Workflow provides a complete set of PL/SQL APIs and public views that can be used to make any application function workflow enabled. For example, your business makes a big floor announcement if an order whose total value exceeds a certain amount, is booked. You can create custom sub-process that checks the order total and send FYI notifications to a group of people.

Yes Start Is this a BIG Order? No Big Order coming through End (Yes)

End (No)

Figure 2: Sub-process that checks Order Totals and sends out a Notification.

The function activity Is this a BIG Order checks whether the Order value exceeds a certain amount (set via an activity attribute). If it does, then it completes with a Yes and a FYI notification is sent to a certain application Responsibility. The Appendix lists the PL/SQL API that the function activity calls. You can then, this sub-process in a header flow after the seeded Book Order, Manual sub-process and assign it to an Order Type. The notification activity this sub-process uses is defined to be an FYI notification. That is there is no result type associated with it. However you could also design this sub-process such that the notification requires a response, i.e. it is an approval notification. The sub-process could then meet the requirement where an order whose value exceeds a certain amount needs a special approval before it can proceed. To ensure that the lines on the order wait for the approval, you would need to coordinate the order and line flows using the workflow continue-flow and wait-for-flow activities. The following section discusses how you can do that.
Note: Please refer to the Using Workflow in Order Management section for examples of defining approval notifications. Refer to the section Customizing Order and Line Flows for more examples of customizations. Refer to the Workflow Users Guide (A85540-01) for details on defining Response and FYI Notification Activities).

Using Workflow in Oracle Order Management

Page 9

Process dependencies

Oracle Workflow provides utilities to build dependencies between parent and child workflow processes. With respect to orders and lines, the following dependencies come to mind: Example: Order lines should wait for the order to book before progressing in their individual Line flows. Example: All order lines should close, before the order header closes. Order Management creates all order flows are created as parent flows. Line flows for the lines on an order are created as child (detail) flows. Native WF utilities Wait For Flow and Continue flow are used to support this kind of order(parent) - line(child or detail) coordination. So to coordinate orders and lines for Booking; The Continue Flow (Book - Continue Line) activity is included as part of the Order Booking Sub-process (Figure 3a.). It is configured (via activity attributes) to continue the line activity that is waiting for the order to book. The Wait For Flow (Wait for Booking) activity is included in the Enter - Line sub-process in the line flow (Figure 3b). It is configured (via activity attributes) to wait for the Continue Flow inside the seeded booking process. This ensures that the line flow waits for the header level booking sub-process to complete.

Inc omplete

N ot Eligible

Complete Start Book - Eligible On H old Book Book - Continue Line End (Complete)

Figure 3a: Order Booking sub-process

Using Workflow in Oracle Order Management

Page 10

Start

Wait for Booking

End

Figure 3b: Enter Line sub-process

You may need similar coordination for other business functions. Example: All order lines should wait for a custom order level Legal Approval to complete before progressing in their individual Line flows. To support that, you would also need to use these Wait-for-flow and ContinueFlow activities and configure them based on your custom approval activity (Notification).
Note: Please Refer to the Workflow Users Guide (A85540-01) for details on using coordination activities.

Automated, Deferred and Manual Transactions

Workflow activities can be executed automatically by the Workflow engine. Instead of users pulling orders by running batch processes, the Workflow engine can push orders forward. This is called synchronous or automatic execution mode. As opposed to the synchronous mode, a workflow activity can be set to require user intervention. We call this manual execution mode. A workflow activity can also be set-up to be executed by the Workflow background engine in order to save on-line transaction time. This is called deferred execution mode. Automatic and deferred modes are natively supported by Workflow. Management additionally gives you the manual mode for more flexibility. Order

For example, if you use the seeded Schedule- Line sub-process (Figure 4) in a line flow, an order line automatically schedules after the order header is booked. You can setup an expedited order process where several activities are performed

Using Workflow in Oracle Order Management

Page 11

sequentially (synchronously) without user intervention. If you use the seeded Book - Order, Manual sub-process (Figure 5) in a header flow, the order will book only when the user requests to book an order (by clicking the Book button OR via the Progress Order LOV in the R11I Sales Order form). If you use the seeded Book - Order, Deferred sub-process(Figure 6) you do not need to explicitly request for the order to book. Rather the order will book when Workflow Background Process concurrent program will processes the deferred activity. (See Setup Workflow Background Engine in later section). In the Order Management Workflow Standards section, we discuss how to implement business functions in synchronous, deferred, and manual modes.
Interactive decision support and exception handling

Notification functionality is new in R11I and can be used for handling business exceptions and approval requests. As described before, you can setup a notification that requires a sales managers approval when booking orders over a certain dollar amount. The role assigned to the Notification Performer, determines whom the notification is sent to. By default, users can view their own notifications in Order Management. The Notifications menu entry in the Order Management Menu launches the Workflow Notification Viewer Web Page. Users can setup the Workflow notification viewer to view notifications using a web interface or receive notifications as e-mails in plain text.
Note : Please refer to Setup approval notification and OM: Notification Approver in later section for details on notification features. ORDER MANAGEMENT WORKFLOW STANDARDS

Most Order Management functions are seeded in one or more variants (Automatic/Synchronous, Manual or Deferred). The following section discusses how these variants are designed.
Synchronous - Implementing a business function that is automatically executed.

In a synchronous mode, the function executes automatically. That is, it requires no User intervention. Example - The seeded Schedule - Line sub-process.

Using Workflow in Oracle Order Management

Page 12

Schedule - Eligible On Hold Incomplete

Not Eligible Start Schedule Complete End

End

Figure 4: Automatic Scheduling sub-process

If you create a Line that uses a flow with this Scheduling sub-process, then the Line will schedule as soon as the Order books. If Scheduling cannot complete due to Holds or other expected errors then the flow will transition to the ScheduleEligible activity. You can run the Schedule Order Concurrent program to reprocess such lines or complete them via the Progress Order LOV on the Sales Order Form.
Manual - Implementing a business function that requires user intervention.

To enable a function to be completed manually, you need to place special block activity before the actual function activity. This special block activity needs to call the function OE_STANDARD_WF.STANDARD_BLOCK and NOT the WF_STANDARD.BLOCK. This ensures that Orders or Lines awaiting at this special activity shows up in the Progress Order LOV, in the Sales Order Form. We recommend that you follow the following naming conventions to name this special block activity: Internal Name - FuncName_ELIGIBLE (eg: BOOK_ELIGIBLE) Display Name Function Name - Eligible (eg: Book - Eligible)

Example - The seeded Book - Order, Manual sub-process.

Using Workflow in Oracle Order Management

Page 13

Incomplete

Not Eligible

Complete Start Book - Eligible On Hold Book Book - Continue Line End (Complete)

Figure 5: Manual Booking sub- process

The Book - Eligible activity calls the function OE_STANDARD_WF. STANDARD_BLOCK. If you create an Order with an Order Type that uses this Booking sub-process in its Header flow, its flow will stop at the Book Eligible activity. The Progress Order LOV on the Sales Order Form will show you that this order is eligible for Booking. You can book such an order either by clicking OK button on the LOV or by clicking the Book button on the Sales Order Form.
Deferred - Implementing a business function that is executed off-line.

Oracle Workflow lets you associate a cost to a function activity. This refers to the processing time it takes to execute that activity. Generally, you should assign complex, long running activities a high cost. In normal processing, the Workflow Engine completes the execution of a single activity before continuing to a subsequent activity. In some cases, an activity might take so long to process that background processing would be more appropriate. The default threshold for the Workflow Engine is 50 hundredths of a second. When a flow comes across an activity whose cost is higher than the threshold, it is deferred to the background. Cost can also be relative in terms of the business flow that is being executed. For example; you have a few Order Entry clerks who are dedicated to taking orders from habitual, long time customers. Since you have all the standard information for these customers already set-up, you would rather that the order is entered as quickly as possible into the system and the clerk not have to wait for it to book, before he can move on to the next order or customer. So in this case you would want the booking process to be deferred. Now on the other hand, you have some other Order Entry clerks who deal with new first-time customers. In this case, you want the order to be booked online so that the clerk can if required get additional information from the Customer or inform him about credit check related issues. To give you such flexibility, Order Management uses the Workflow API WF_ENGINE.Defer_Thread to defer a flow to the background. That is instead

Using Workflow in Oracle Order Management

Page 14

of defining an activity to be a high cost one, it gives you variants of business functions that are deferred and those that are not. This gives you a lot more flexibility in designing your flows. Thus you could use the seeded Book - Order, Deferred sub-process for processing orders from longtime customers, but use the seeded Book - Order, Manual sub-process for processing orders from new customers. Note that both these sub-processes use the same Book function activity. The naming convention followed WF_ENGINE.Defer_Thread is as follows: for activities that call the

Internal Name - FunctionName_DEFER (e.g.: BOOK_DEFER) Display Name - Function Name - Deferred (e.g.: Book - Deferred) Example - The seeded Book - Order, Deferred sub-process

Book - Eligible On Hold Incomplete

Start

Book - Deferred

Book

Complete

Not Eligible Book - Continue Line End (Complete)

Figure 6 : Deferred Booking sub-process

In this sub-process, the activity Book -Deferred calls the WF API WF_STANDARD.DEFER_THREAD to defer the flow to the background. When the Workflow Background Engine picks up this deferred flow, it executes the Book activity, thus booking the order.
Naming Conventions

Order Management follows certain naming convention for creating WF processes, sub-processes, activities, etc. It is not necessary that you follow the same conventions. However doing so, will make all OM WF data (seeded and custom) appear consistent to the end user. Here, we discuss only the display name naming conventions. Unlike internal names, display names can be changed after Workflow data is created. Users can

Using Workflow in Oracle Order Management

Page 15

see these display names in both Workflow builder and in the Workflow monitor when viewing the order or line status. For internal name naming conventions, please refer to Order Management User Guide. Order Management follows the following naming convention for Display Names:
Process Flow

Format: Order/Line Flow - XXX e.g. Name Order Flow - Generic Order Flow - Generic, with header level invoicing Line Flow - Generic Line Flow - Return for credit only Description Generic order header flow that can go with any line flow for standard item, model, return. Generic order header flow that includes header level invoice activities. Generic sales order line flow that supports all item types except the Configured Item. Return line flow for issuing credit only.

Sub-Process

Format: Function - Order/Line, Manual/Deferred e.g. Name Book - Order, Manual Book - Order, Deferred Invoice Interface - Line
Function Activity

Description Automatic booking header level sub-process Deferred booking header level sub-process Automatic Invoice Interface line level sub-process

Format: Function - Eligible/Deferred/Continue/Wait e.g. Name Book Book - Eligible Book - Deferred Description The actual booking function activity Booking eligibility block Activity to defer Booking

Using Workflow in Oracle Order Management

Page 16

Book - Continue Line Wait for Booking

Booking coordinating activity to continue the waiting line flows Line coordinating activity that waits for the Order to Book.

Activity Results

Most Order Management function activities use the standard seeded lookup OM Sub-Process Results, handles Holds. This lookup has the following result codes: Complete, Incomplete, On Hold, Not Eligible. A function activity completes with the Complete result when it executes successfully. E.g.: When the seeded Book function successfully books an order, it will complete with a Complete result. A function activity completes with the Incomplete result when it runs into expected errors that it is built to handle. The Incomplete result normally transitions to an Eligibility block or a Wait Activity. E.g.: When the seeded Book function finds that the order header does not have a Customer specified, it will complete with an Incomplete result and transition to the Book -Eligible activity. You can then provide the missing information and attempt to re-book the order via the Book button or the Progress Order LOV. A function activity completes the On Hold result when it runs into a generic or activity specific Hold. The On Hold result normally transitions to an Eligibility block or a Wait Activity. E.g.: When the seeded Book function finds that there is generic hold on the order, it will complete with an On Hold result and transition to the Book -Eligible activity. You can then provide the missing information and attempt to re-book the order via the Book button or the Progress Order LOV. A function activity completes with the Not Eligible result when it does not make sense for the Order Header or Line to be processed by a that activity. E.g.: When the seeded Schedule activity processes a Service Item Line, it completes with a Not Eligible result and transitions to the end of the scheduling subprocess. It is important to note, that only on a successful completion (Complete or Not Eligible result) of a business function, does a flow exits out of the respective functional sub-process. Hence most function high-level sub- processes (those that can be used in runnable flows) use the seeded lookup OM Sub-Process Success Results. This lookup has the result codes: Complete, Not Eligible. All seeded flows are built using the Default transitions to move a flow forward, as opposed to having separate transitions for the Complete and the Not

Using Workflow in Oracle Order Management

Page 17

Eligible results. The assumption being that in either case the sub-process has completed processing and the flow can move forward.

Default Error Process

All Order Management seed WF data is defined to use the Retry Only error process. This process determines the notification flow that Oracle Workflow starts when a workflow activity runs into an unexpected error. When you create any new OM WF data, you should specify this error process as the default. If you do not specify an error process, then Oracle Workflow does not start a notification flow in case the activity runs into an unexpected error. If you specify a default error process other than Retry Only, the user who receives the error notification has the option of skipping or aborting the errored activity, this can result in data corruption. Order Management does not support you specifying a default error process other than Retry Only error process.

Note: Please refer to Handling Errors section for details on how unexpected errors are handled.
Access Control

All Order Management seed WF data is locked at the access level of 20. You should be working at an access level of 100. To customize, you can make copies of the seeded processes and then make the necessary modifications. The following data is not locked: Item Attribute - OM WF Administrator Message Bodies

USING WORKFLOW IN ORDER MANAGEMENT Set up

Here are the things you need to do before using Workflow with Order Management:

Setup Order Management WF Administrator Workflow item attribute Review seeded OM WF data and define Workflow processes via the Workflow builder Setup approval notifications and OM: Notification Approver Setup Workflow assignments for order/line transaction types Setup the WF background Engine

Setup Order Management WF Administrator WF item attribute

Using Workflow in Oracle Order Management

Page 18

You need to assign a responsibility (role) to the Order Management Workflow item attribute Order Management WF Administrator for unexpected error handling. An order progressing along a flow can run into unexpected errors (Rollback segment errors, Data integrity errors etc). Whenever an unexpected error occurs, a notification is sent (please refer to Workflow error process in Workflow Users Guide) to the responsibility assigned to Order Management WF administrator item attribute. The WF activity that generated the error is marked to be in an error state. You can set this item attribute via the WF builder. The item attribute is available for Order Management Workflow items OEOH (OM order header), OEOL (OM order line) and OECHORD (OM Change Order) and needs to be set for all three. The item attribute is set to have a default value of SYSADMIN. In the Workflow builder, click on any of the OM Workflow items (OEOH, OEOL or OECHORD). Under the Attribute, find Order Management WF administrator. Right click on it and select Properties to open the properties window. In the Attribute tab, there is a Default region. Assign a responsibility in the Value field. If you cant see any other responsibilities in the LOV, youll need to load roles from the database by going to the menu bar File and select Load roles from database.
Note: Please refer to the section Error Handling on details on how errors are handled.
Review seeded OM WF data and Define Workflow processes via the Workflow Builder

Before you can process orders in Order Management, you need to setup the order header/line workflow processes, just like you setup order cycles in R11 Order Entry. Order Management comes with several seeded order and line workflow processes. We recommend you do the following: 1. 2. 3. Review the seeded flows, activities, notifications, etc. Check whether the seeded data meets your business needs. Create custom activities, notifications, and any other components needed to build flow processes to meet your specific business requirements. Use the seeded runnable flows as examples to create your own flows, using seeded and/or custom sub-processes/activities. OR Copy a seeded workflow process to create a new workflow process and modify this newly, copied workflow process according to your business requirements.

Suggestion: You can build few complex flows to accommodate various business scenarios. Or you can build several simpler flows to handle the different business process needs and use them appropriately via Transaction Type Workflow Assignments. You need to balance performance with user convenience. Since a complex flow will have more condition checking and branching to handle various scenarios, the performance cost will be higher. However, the down side of

Using Workflow in Oracle Order Management

Page 19

creating many simpler flows is that it relies on user to pick the right Order Type/Line Type when entering orders.
Note: Please see the Appendix for seeded R11i.2 workflow processes.
Setup approval notification and OM: Notification Approver

Workflow Notifications in R11I replace R11 Approval functionality. To support the Approval requirements, you need to define Notification Activities that require a response. When an order or line flow comes across such an activity, the WF Engine will send out a notification to the approver and request a response. The approver can either approve, decline, or forward the notification to another approver. In R11 Order Entry, any user who had access to Approve Orders form could perform an approval. In R11i Order Management, there are a couple of ways you determine who gets an Approval Notification : When you add the notification activity to a workflow process, set the Performer to be of type Constant and assign a value (WF Role) to it. This is a static approver for this notification for any order or line using this workflow process. That is such a notification will always go to the same recipient (WF Role). When you add the notification activity to a workflow process, set the Performer to be of type Item Attribute and assign the value Notification Approver to it,. In this case, the responder of the notification is the value indicated by the NOTIFICATION_APPROVER Workflow Item attribute.

(With R11i.2) When an order or line is created, this WF item attribute is set based on the value of the Profile Option OM: Notification Approver. When the notification is sent, the recipient is derived based on the value of the Notification Approver item attribute. This means that the same notification can go to different recipients for different orders/lines. You can also set the value of this Workflow item attribute dynamically based on one of the following values: OM: Notification Approver profile option value, Created By of the order or line. To do this, you place the seeded order Management Workflow utility Set Notification Approver in a workflow process before the notification activity.

Using Workflow in Oracle Order Management

Page 20

Approval Failed

End (Incomplete)

Fails

Passes Start Utility - Set Notification Approver Approve Return Order Approve - Continue Line End (Complete)

Figure 7: Return Approval sub-process

You then need to set its activity attribute Source to one of the following: Profile Approver, Created By, Order Created By. When this activity is executed, it will dynamically set the WF Item Attribute Notification Approver for that Order or Line to the appropriate role value. And the notification will be sent to that role. You could define custom activities that dynamically determine who the Approver is. We recommend that you use the Notification Approver Item attribute as a place holder to store such a value, as opposed to defining additional item attributes. Again the responder on the Notification Activity would default from the Notification Approver Item attribute.

When defining notification message bodies, you can use the following seeded Order Management Workflow item attributes to provide context: Header Short Descriptor - This returns the order type and order number. Line Short Descriptor - This returns the order type, order number, and line quadruplet (Line number, shipment number, option number, service number).

You can use these as default values for your message attributes and then use the message attributes in the body of the message. e.g. This return order (&RMA_HDR_SHORT_DESCRIPTOR) requires your approval. In this example, the message attribute RMA_HDR_SHORT_DESCRIPTOR has the WF item attribute Header Short Descriptor as its default value. Again you can define additional item attributes, set them using custom function activities and use them for message context. However note that having too many workflow item attributes defined can deteriorate performance, since a database row is created for the order or line for every item attribute defined. You can use the seeded Approval Failed block defined under OM: Standard (OESTD) to manage failed approvals. Transition failure results to this block to

Using Workflow in Oracle Order Management

Page 21

ensure that the flow does not progress any further. You can then manually cancel the Order or Line that failed the approval.

Setup Workflow assignments for order/line transaction types

Note: Please refer to the Transaction Types White Paper for detailed information on defining Transaction types and setting up workflow assignments . Now, how do you get an Order or a Line to start a particular workflow process? by setting up workflow assignments for Order and Line transaction types. This is very similar to associating order cycles to order types in R11 Order Entry. In R11i, in addition to order types, you have line types. Both order and line types are setup using the Transaction Types form. When you define an order type, you need to assign a header workflow to it. E.g. You set up a Standard order Type. You can assign the seeded Order Flow - Generic to it. Now if you create an order with the Standard order type. The order header will start a flow using the Order Flow - Generic workflow process. Since each line follows its own flow, you also need to setup workflow assignments at the Line Type level. Line level workflow processes are assigned based on an order type, line type, and item type combination. You have to do the following: 1. 2. 3. 4. Setup Line and Order Types in the Transaction Type form Query up a particular Order Type Click on the Assign Line Flows button Assign a line workflow process for a combination of Order type, Line type, and Item type. If you leave item type field empty, any type of item will be able to use this line flow assignment.

E.g. If you setup the following assignment: Standard Order Type + Standard Line Type + Standard Item -> Line Flow Generic When you create an Order using the Standard order type, add a Line using the Standard line type for a standard item, it will start a flow using the Line Flow Generic workflow process.

Using Workflow in Oracle Order Management

Page 22

12

Figure 8: Transaction Types Form


Setup the WF background Engine

The Workflow Background Engine processes deferred activities, wait activities and timed out activities. You need to schedule the Workflow Background Process concurrent program to re-submit periodically. When scheduling the concurrent program, please specify Order Management work item types as parameter so that it only picks up activities specific to Order Management work items.
Note: Refer to the Oracle Workflow Users Guide (Part Number A85440-01) for information on the Workflow Background Engine. Order or Line business processes that are workflow enabled
Booking

In R11i, Booking an Order is workflow enabled. You can book an order in various ways. You may decide to use the Book - Order, Deferred process for certain kinds of Orders and the Book - Order, Manual for certain others. You can also create you own Booking process that say, lets you control when the Order books, but defers it to the background. You can also add an order-level approval before the Booking process in a header flow. Order Management uses native WF co-ordination activities to ensure that order lines wait for the order to book before progressing. A seeded sub-process Enter - Line is provided at the line level; this is configured to wait for the seeded Booking function to complete before progressing (figure 3).
Scheduling

Using Workflow in Oracle Order Management

Page 23

In R11i, the Scheduling function allocates supply to your demand and makes the Order line visible to MRP (as demand). Order Management provides two variations on Scheduling, one where it is performed synchronously and another one where it is deferred. In both cases exceptions are routed to the Schedule Eligible block activity. You can progress lines that are at this activity using the Schedule Orders Concurrent program or the Progress Order LOV. You could also define your own custom sub-process, such that Scheduling can only be done via the concurrent program (by placing the Schedule - Eligible activity before the Schedule activity).
Note: Please refer to the Scheduling White Paper for more details.
Create Supply

The seeded Create Supply sub-process has the intelligence to route Order Lines differently based on the item type and whether they are internally or externally sourced. You need to use this sub-process when defining line flows that need to support different types of items. For example, it branches ATO model lines through the Create Configuration process; or branches externally sourced lines to the Purchase Release process.
Note: The Create Supply sub-process can handle all kinds of lines except the Configured Item Line.
ATO Processing

The entire ATO process is now workflow enabled. There are various seeded subprocesses to support functions such as creating the configuration item, the BOM & routings, calculating lead time and rolling-up cost, creating the work order, etc. The processing needed for handling the configuration item is separated out from that for the ATO Model. The seeded Line Flow - Generic can handle all kinds of lines except the Configured Item Line. The seeded flow Line Flow - Configuration supports processing for Configured Item Lines.
Ship

The functionality provided by the cycle actions of Pick Release, Back Order Release, Ship Confirm and Inventory Interface is now delivered via the seeded Ship - Line, Manual sub-process. Each of the shipping functions are not Workflow enabled in R11i. In fact the Ship activity is a block activity that waits until the line is picked, shipped and interfaced to Inventory and Shipping communicates that information to Order Management. One a Line hits this block activity, you need to manually pick and ship the line using the Shipping transaction forms.
Purchase Release

Using Workflow in Oracle Order Management

Page 24

The seeded Purchase Release sub-process interfaces information to Purchasing when order lines need to be drop-shipped. This process has been seeded in two variations: Purchase Release - Line, Manual - This needs manual intervention. You can Purchase Release the Line either via the Progress Order LOV from the Sales Order form or by running the Purchase Release Concurrent Program. Purchase Release - Line, Deferred - This defers the Purchase Release activity to the background. When the WF Background Process Concurrent Program is run it picks up such deferred activities and processes them.
Return Receipt

The RMA Interface concurrent program is obsolete in Order Management. The Returns receipt and acceptance function is workflow enabled using block activities. Returns are received using the Oracle Purchasing Receipt functionality. Purchasing looks at a view based off Return Lines to determine what is eligible to be received. It then communicates information to Order Management regarding receipt and acceptance against those lines.
Fulfillment

In R11 Order Entry the Receivables Interface Concurrent program had built-in intelligence to not interface lines that were not fulfilled. Example: The ATO Model, Class and Option lines would not interface to Receivables until the Configured item was shipped. Order Management enhances this functionality of Fulfillment and separates it from the function that interfaces to Invoicing. Ship-confirmation, Purchase Release Receipt and Returns Receipt are supported as fulfillment events, out of the box. Fulfillment is also workflow enabled and the seeded Fulfill activity ensures that lines do not move forward in their flows until they are fulfilled. You can define your own fulfillment sets and put Lines in them. The fulfillment functionality will ensure that they all go past the Fulfill activity together. ATO and PTO configurations are viewed as native fulfillment sets by the application. When you define custom line flows, ensure that you configure the Fulfill activity appropriately by setting its activity attributes.
Invoice Interface

The Receivable Interface concurrent is obsolete in. The seeded Invoice Interface - Line sub-process interfaces line information to Invoicing. Order Management also provides the means to interface all lines on an Order to Invoicing at the same time via the seeded sub-process Header level Invoice Interface - Order. You can use the seeded Order Flow Order Flow - Generic with Header Level Invoice Interface along with the seeded Line Flow Line Flow - Generic with Header Level Invoice Interface to interface the entire order

Using Workflow in Oracle Order Management

Page 25

to Invoicing. It is important to note that the creation of the invoice is still controlled by the Auto Invoice concurrent program. You need to setup Invoicing Grouping Rules if you want to create one invoice for the entire order. The application still supports Invoicing only after Shipping. There is nothing to prevent you from a creating a workflow process that interfaces to Invoicing before the Line is shipped. However if a line using such a flow is partially shipped, Invoicing data will be pointing only to the original line. Secondly various seeded constraints go into effect one a line is Invoice interfaced, Eg.: You cannot cancel a line once it is interfaced to Invoicing. This will prevent you from canceling a line that is not yet shipped. You would also need to resolve legal issues if any with respect to recognizing revenue before the product is shipped.
Close Order and Close Line

The Close Orders Concurrent program is obsolete in R11i. Closing Orders and Lines is workflow enabled. The seeded Close - Order sub-process uses native WF co-ordination activities (wait for Flow) to ensure that the order header closes after all the lines have closed. It is designed to close the order at the end of the month. The seeded Close - Line closes the line and uses the native WF activity Continue-Flow to communicate to the waiting header Close process
Note: The Service Interface Concurrent Program is obsolete with R11i. Management calls CRM APIs whenever an Order is created or updated. Order

Note: Please refer to the Sales Order Overview White Paper on more details on the various products that Order Management integrates with. Moving Orders and Lines forward in their flows

How do you progress an order or line along its flow? As we said before, there are three modes in which business functions could be executed: Synchronous, Manual or Deferred. When an order (or line) is created, the application starts a header (or line) flow for it. The Workflow engine will push the order/line ahead as long as the activities are synchronous. The flow stops when it hits block activities, notification activities or wait activities. The flow gets deferred to the background when it hit a highcost activity or an activity that explicitly defers the flow to the background.
Synchronous Completion

In this mode, once a flow is started or re-started (after it has stopped) the WF

Using Workflow in Oracle Order Management

Page 26

activities are executed synchronously or online until it reaches the end of the flow or reaches some kind of a block activity or is deferred. Example - You create a line that uses the seeded Line Flow - Generic. This has the seeded Schedule - Line sub-process (Figure 5). Provided that there are no holds, once the order is booked, the line will automatically go ahead and schedule. The flow will then continue on stop at the Ship activity, making the line eligible for Pick Release.
Manual Completion

If the order/line hits an Eligibility Blocks like the one we discussed in the section on Implementing a manual function in Order Management, then you can move the order/line forward via the Progress Order LOV (Can be accessed from Action button). This LOV displays the functions that the order or line is eligible for (and can be manually completed). The following (Figure 9), shows the case where an order is eligible for Booking. That is the flow for that order, uses the seeded Book - Order, Manual subprocess (Figure 4). The order is currently stopped at the Book - Eligible block. The Progress Order LOV displays that the order is eligible for Booking. Clicking OK on the LOV, will trigger completion of the Book -Eligible block, the flow will move to the Book activity and execute it, thus booking the order.

20

Figure 9: Progress Order LOV; available from the Sales Order Form

Some seeded Eligibility Blocks can be completed en-masse by running the following concurrent programs: Schedule Orders Purchase Release

Using Workflow in Oracle Order Management

Page 27

AutoCreate Configuration Items AutoCreate Final Assembly Orders Some other block activities can be completed by performing certain specific actions. Thus if a line is waiting at the Ship activity, you have to Pick Release the line and then Ship Confirm it to move it forward. If a return line is stopped at the Wait for Receiving activity, you need to receive the goods against that return line (and accept them) to move it forward. If a order or line flow stops because it is awaiting a user response on a Notification Activity, then you need to respond to the Notification to re-start the flow.

Deferred Completion

A order or line flow can also stop because the flow was deferred to the Background Engine. Example: You create an order that uses a flow that has the seeded Book - Order, Deferred sub-process (Figure 6). When the flow reaches the Book - Defer activity, the Order flow is deferred to the background. You need to run the Workflow Background Engine Process concurrent program to pick up such deferred flow and process them. Fulfillment is deferred in all the seeded line flows. You need to schedule the Workflow Background Engine Process concurrent program to run at periodic intervals to be able to fulfill and invoice interface lines. The Workflow Background Engine also processes Wait activities and Timed-Out activities.

Tracking order status

R11 Order Entry tracks cycle status via the S and S Date columns on Order Headers and Lines. In R11i Order Management workflow status is stored Workflow entities; in WF_ITEM_ACTIVITY_STATUSES and WF_ITEM_ACTIVITY_STATUSES_H tables. The Workflow Engine maintains state information and history for work items (orders & lines) in these tables. Some core status information (Booking, Open/Close, Fulfillment etc) is denormalized onto the base Order Management entities. So how do you know where an order or line is in its flow? There are a couple of ways:
Order and Line Summary status

The status field on order and line tabs in the Sales Order form and Order Organizer, shows where an order or line is in its flow. The header status displays one of the following values based on where the order

Using Workflow in Oracle Order Management

Page 28

header is in its flow: Entered, Booked, Closed or Canceled. The line status displays one of the following values based on where the order line is in its flow: Entered, Booked, Awaiting Shipping, Awaiting Receipt, Picked Partial, Picked, Shipped, Received, Awaiting Fulfillment, Fulfilled, Invoice Interfaced, Invoice Interfaced Partial. Status for the Configuration Line will additionally show the following information: BOM and Routing Created, Config Item Created. Status for configuration and ATO Item lines will additionally show: Production Eligible, Production Open, Production Partial, Production Complete, depending on where the line is in its line flow.

Figure 10: Order Organizer. Shows Order/Line Status summary


Workflow Activity Status Page

You can also launch the Workflow Status page from the Tools menu from the Sales Order Form/Order Organizer. A Browser window is launched to display the Workflow status history in a tabular format.. It displays detailed information on when an activity was completed, which activity is currently active etc. You can use filters on this page to only view status information for certain kinds of activities (eg: Response Notifications, FYI Notifications, Functions etc.).

Using Workflow in Oracle Order Management

Page 29

Figure 11: Workflow Status Page, available from the Sales Order Form
Workflow Monitor

From the Status Page, you can launch the Workflow Monitor, via the View Diagram button. This gives you a graphical representation of where an order or line is in its flow. The progress of flow is highlighted in green. You can select individual components of the flow, and the tabs at the bottom will display information about the selected activity/sub-process. You can also zoom in/out of sub-processes using the buttons in the right-hand corner.

Figure 12: Workflow Monitor, available from the Status Page

Using Workflow in Oracle Order Management

Page 30

Public Status APIs

Order Management also provides you with Public PL/SQL APIs to query order and line workflow status. The package OE_HEADER_STATUS_PUB provides status information for order headers for Booking, Cancellation and Close status. The package OE_LINE_STATUS_PUB provides status information for Order Lines for Cancellation, Configuration Creation, Close, Drop-Ship Receipt, Fulfillment, Invoice Interface, Pick Release, Return Receipt, Scheduling, Shipping and Work Order Management. These APIs are overloaded with the following generic signature: GET_FUNCTION_STATUS (ENTITY_ID IN NUMBER, STATUS OUT VARCHAR2) GET_FUNCTION _STATUS(ENTITY_ID IN NUMBER STATUS OUT VARCHAR2, DATE_COMPLETED OUT DATE) Where FUNCTION stands for the actual function that you are querying status information for. ENTITY_ID stands for either HEADER_ID or LINE_ID depending on whether the functions is returning order or line status information. You need to pass to the API the HEADER_ID or LINE_ID for the order or line that you are querying status for. These APIs allow you to retrieve status information or status and date(when the function was completed) information for a order header or line. The APIs return a Y when a order or line has completed a specified business function, a N when a order or line has not completed a specified business function and a P when a order or line has partially completed a specified business function (eg: Invoiced Interfaced partial on account of unfulfilled Required for Revenue components).

Example - To check whether a certain order is booked, you can call the booking status API as follows:
OE_ORDER_HEADER_PUB.GET_BOOKED_STATUS(12345, l_result);

In this case the header_id for the order whose booking status you are querying is 12345. L_result is declared as a variable of type VARCHAR2. If the order is booked, then after this call, l_result will have a value of Y, if the order isnt booked then l_result will have a value of N. If you wanted to query both the booking status and the date the order was booked, you can call the booking status API as follows:
OE_ORDER_HEADER_PUB.GET_BOOKED_STATUS(12345,

Using Workflow in Oracle Order Management

Page 31

l_result,

l_result_date);

If the order is booked then the l_result_date will indicate the date the order was booked on.

Note: Please see the Appendix for a listing of Procedures.


Workflow and other OM function areas
Cancellations

Cancellations is not workflow enabled in Order Management. However when you fully cancel an order or a line, its flow is stopped and transitioned to the Close Order or Line activity. The order or line summary status will indicate the order or line is canceled.
Holds

In R11 Order Entry, you cand define generic or cycle action specific holds. Cycle actions honor both kinds of holds. This is carried forward in Order Management, you can define and apply generic or activity specific Holds (based on workflow activities). Header and line flows honor both kinds of holds. A flow that comes across a hold does not proceed unless that hold is removed. Example: You cannot Book an order that has a generic order level hold or a Booking specific hold. The Book activity posts messages indicating that a hold exists. It then completes with an On Hold result and transition back to the Book - Eligible activity. You can define custom workflow activities that honor holds. Order Management provides Public APIs (OE_HOLDS_PUB) that can apply holds, check whether an order or line is on hold and remove holds. You can also seed lookups (Holdable Header Activities, Holdable Line Activities) based on your custom workflow activities and define holds based on them.
Processing Constraints

In R11 Order Entry you can define security rules based on cycle actions. In R11i Order Management, the Processing Constraints Framework provides you with enhanced security rules functionality. You can define processing constraints based on flow state or custom PL/SQL APIs. The application checks constraints before every update/delete/insert operation. If the Constraints are status based, the framework logic looks at WF status tables or status information de-normalized onto the base Order Management entities. The product comes seeded with various constraints and you can define additional constraints. Example: Cannot delete an Order Line, once the Order is booked, Example: Cannot change quantity, once Line is past some custom approval.

Using Workflow in Oracle Order Management

Page 32

Since the Processing Constraints Framework looks at Workflow status tables, you can define constraints based your custom activities as well.

Error handling

There are two kinds of errors that Order and Line flows can run into; Expected errors and Unexpected errors.
Expected Errors

These are errors that business processes expect to run into and handle. Example: Booking requires that a Customer is specified on the Order. If you attempt to Book an Order that does not have a Customer specified, the application will display an appropriate message and the Order will not book. The seeded WF activity Book will complete with an Incomplete result. When an activity is completed via the Sales Order Form, i.e the activity is synchronous or is manually completed via the Progress Order LOV, the Processing Messages window pops up to display messages that indicate the errors. When an activity is processed by the Background Engine, i.e the activity is deferred, these error messages are stored in the Order Management processing message table. You can view these messages via the Processing Messages window using either the Concurrent Program request number, or the Workflow activity (Book) and/or by Order or Line Basis. When an activity is completed via a concurrent program, its output file lists all the error messages that were posted.
Unexpected Errors

These are errors that a business process does not expect under normal circumstances. Eg: Database errors such as running out of rollback segments, Data integrity errors. In this case, the activity errors out and Oracle Workflow starts the default error process - Retry Only. This is seeded WF error process. T he activity that ran into the unexpected error gets marked with an Error status (in WF_ITEM_ACTIVITY_STATUSES) and a notification listing the details is sent to the role specified in the OM Workflow Administrator item attribute. Once the problems have been corrected the administrator can choose the Re-try option on the notification and complete it. This triggers a retry of the errored activity. The Administrator can also choose to retry the activity from the Workflow Monitor.

Using Workflow in Oracle Order Management

Page 33

Note: Refer to Setup Order Management WF Administrator WF item attribute section on how you can set this WF Item attribute.

Purging Workflow Status Information

Oracle Workflow provides a Concurrent program that lets you purge workflow status information for flows that have completed. If the high volume of workflow status information is affecting performance negatively, you can run this Concurrent program to delete WF status history data for Closed Orders (and their closed Lines) whose flows have completed. Do remember, to specify a value (in days) for the "Age" parameter, the program only purges those flows that completed before the number of days specified. However if you run this concurrent program, you should be aware of the following: You will no longer be able to view Workflow status information for such orders. Most of the core Order Management status information (like open, booked, fulfilled etc) is de-normalized onto the base OM entities. Most seeded processing constraints work off these base columns. Seeded constraints prevent you from updating Orders/lines that are closed. However if you had defined custom constraints based off workflow activity statuses, they would no longer apply (since the WF status information is deleted). Many OM Public Status APIs look at Workflow tables to return status and date information for some seeded business functions. If you purge workflow status information for closed orders, you will not be able to use these Status APIs for those orders.

Note: Order Purge functionality is provided with Order Management. The Purge Orders concurrent program lets you purge selected closed orders and their workflow history.

CUSTOMIZING ORDER AND LINE FLOWS

You can customize Order or Line Workflow processes via the Workflow builder. Again you should be working at an access level of 100. You can copy seeded runnable processes, change the internal & display names and then modify them as needed. Any new runnable Order or Line flows can be used by assigning them to

Using Workflow in Oracle Order Management

Page 34

Order or Line types via the Define Transaction Types form.


Guidelines

We recommend the following guidelines when you define custom data: When defining runnable order or line flows, use the seeded functional subprocesses as opposed to using the function activities.

Example: When defining a header flow, use one of the seeded Booking processes as opposed to the seeded Book function activity. The functional sub-processes are designed to handle exceptions and sometimes to additional stuff. You could use specific function activities when the seeded flows also use them. Example: All the seeded line flows that support fulfillment use the function activity Fulfill. Adhere to the following rules All order header flows should have the Close Order sub-process. All line flows should have the Close Line sub-process. If the header or the line flow (used with the header flow) is using any of the seeded functional sub-processes then; the order header flow should have the Booking sub-process and the line flow should have the Enter sub-process (to ensure that lines wait for the order to book). If Close Order and Close Line are the only seeded subprocesses you are using in your header or line flows then you do not need to include the Booking sub-process in the Header flow and you do not need to include the Enter sub-process in the Line flow. Do not design a line flow such that the line interfaces to Invoicing before it ships. See the section Order or Line processes that are workflow enabled - Invoice Interface for details. Include the functions sub-processes that represent the processing you would like the order or line to go through. Thus if a line needs be interfaced to Invoicing, you need to ensure that its flow has a subprocess that does that. Some WF activities need to be configured to be used, via setting its activity attributes. You need to set the activity attributes when such an activity is placed in a process. Example - Fulfillment activity, The activity to set the Notification Approver. If you add order level approvals that need to be honored by all lines on an order, then you may need to ensure that new lines are not added to the order once it is past that header approval (via custom constraints).

Using Workflow in Oracle Order Management

Page 35

Always specify RETRY_ONLY as the default error process for any custom WF data. If you copy a seeded functional sub-process and change its definition (eg: add a custom activity in between seeded activities, delete a seeded activity etc) and use it in new order or line flows, then this sub-process is considered a custom sub-process. Oracle does not guarantee that such a custom subprocess will provide the same functionality as the seeded sub-process. Secondly, when the seeded functional sub-process is altered to provide enhanced functionality, the custom sub-process will not automatically be changed. Hence instead of customizing the seeded functional sub-process, you should create a different activity or sub-process that does the custom processing. You can then place this new activity or sub-process before or after the appropriate seeded functional sub-process in a runnable Order or Line flow.

Examples

You can do simple to very complex customizations using Oracle Workflow. You can design order - line co-ordination based on custom activities. You can define your custom activities such that they honor holds. You can define custom activities such that they can be completed via the Progress Order LOV. You can also define constraints based on your custom activities and how they were completed.

Standard Items and PTO Only - Your business does not do ATO processing and it does not drop-ship lines. The seeded Order Management flows are designed to handle different kinds of items. You can copy and modify these to exactly suit your requirements, thus making them more efficient.

You can copy the flow Line Flow - Generic to a new one, change its internal and display name. You can then remove the sub-process Create Supply - Line from this new definition(Figure 13). This sub-process internally calls other sub-processes based on whether the item is built and whether the line is internally or externally sourced. Since you only deal with Standard items and PTOs and you do not source from an external vendor, your line flows do not need this sub-process.

Enter - Line

Schedule - Line

Ship - Line, Manual

Fulfill - Deferred

Fulfill

Invoice Interface - Close - Line Line

End

Figure 13 : Line Flow - Standard Items Only

Using Workflow in Oracle Order Management

Page 36

Deferred Booking that is manually controlled - You want your Order Entry clerks to be able to control when an order is booked, however you do not want them to have to wait while the order books. Order Management does not seed a sub-process that supports this exact variant, however you can very easily create such a sub-process. Using the seeded activities Book -Eligible, Book -Deferred, Book, and Book - Continue Line, you can create a new Booking sub-process. Branch the transitions for the Incomplete and On Hold results back to the Book - Eligible activity. Create an order header flow that uses this booking process and assign it to an Order Type.

Incomplete

Start

Book - Eligible

Book - Deferred

Book

Book - Continue Line End (Complete)

On Hold

Figure 14: Book - Order, Manual and Deferred

Custom external processing - Your business sells to foreign nations and hence needs to comply with export regulations. You use Export Compliance software from an external vendor that ensures that you are compliant. You need to integrate with this software so that it checks that an order line is export compliant before it can be processed further. There are many different ways to achieve this:

Define a workflow function activity Export Compliance that calls a PL/SQL API that integrates with your Export Compliance software (Figure 15). If the Order line is export compliant then if completes with a Passes result. In case of failure it completes with a Fails result and transitions to a failure block(WF_STANDARD.BLOCK), that ensures that the flow does not move forward. You would then need to manually cancel the line.

Using Workflow in Oracle Order Management

Page 37

Export Compliance Failed Fails

End (Fails)

Passes Start Export Compliance End (Passes)

Figure 15: Export Compliance sub-process that uses a function activity

Alternatively you could also code the cover for the Export Compliance activity such that, in case of failure it transitions the flow to a Block activity that calls the API OE_STANDARD_WF.STANDARD_BLOCK (Figure 16). Users who have the authority to deal with such lines can either cancel the line or complete the necessary procedures to make the line compliant. In the latter case, they would be able to progress the line from the Progress Order LOV(from the Sales Order Form). The sub-process is designed such that it performs the compliance check again.

Export Compliance Failed, Cancel or Re-try

Fails

Passes Start Export Compliance End (Passes)

Figure 16: Export Compliance sub-process that allows a re-try

If the Export Compliance call is expensive you can defer it by setting its cost to be higher than the WF Threshold. If you think it is more efficient to process Lines for export compliance en-masse, you can design the sub-process as follows(Figure 17):

Using Workflow in Oracle Order Management

Page 38

Start

Eligible for Export Compliance Check

Passes End (Passes)

Figure 17: Export Compliance sub-process that is externally completed

The block activity Eligible for Export Compliance Check calls the API WF_STANDARD.BLOCK. You can write a concurrent program that can pick up lines that are eligible for Export Compliance; that is it queries lines that are awaiting at the block activity Eligible for Export Compliance Check by looking at WF Item Activity Statuses view. It then integrates with the export compliance software and processes them. If they fail export compliance, the concurrent program can call the Order Management Process Order API (OE_ORDER_PUB.Process_Order) to cancel such lines. If they pass export compliance, it can complete the block activity using WF Engine APIs (WF_ENGINE.COMPLETE_ACTIVITY). You could refine it further (Figure 18); in cases where completing some additional procedures could make an Order Line compliant, the concurrent program could put the Line on Hold, using the Order Management Hold APIs). In such cases the flow transitions with a On Hold result to an eligibility block. Authorized Users could complete required procedures and release the Hold. They could then complete the Handle Holds block activity via the Progress Order LOV. You can also set a time-out interval (e.g. 1 day) on the block activity, this will automatically trigger its completion after the specified time. In case it is deemed that there is anything that can be done to make this Order Line export compliant, the user could cancel the line. This will force the flow to closure.

Using Workflow in Oracle Order Management

Page 39

Handle Holds On Hold

Complete Start Eligible for Export Compliance Check End

Figure 18: Export Compliance sub-process that handles holds.

As you can see, using Order Management and Workflow you can solve this business requirement in many different ways. You could enhance this process further, by adding notifications activities. Once you have defined one or more sub-processes to meet your needs, you need to use it/them in a line flow(s) and assign the flow(s) to a Line Type(s). Oracle Workflow also lets you define activities that call external functions. It uses Oracle Advanced Queues functionality to achieve this.
Note: Refer to the Oracle Workflow Users Guide (Part Number A85440-01) for more information on the WF APIs and on defining function activities of type PL/SQL and External. Refer to the Open Interfaces Manual (Part Number - A83746-01) for information on the calling the Process Order API.

Defining a flow that can be used for both Outbound(order) and Inbound(return) Lines:

Order Management does not seed a generic flow that can support both order and return lines. However, if you wanted to do so for some reason, you can do so using the seeded sub-processes. However this should be done with caution as Workflow does not function identically to Cycles.

Using Workflow in Oracle Order Management

Page 40

Unreserve

Schedule - Line Create Supply - Line

Ship - Line, Manual

Enter - Line

Fulfill - Deferred

Fulfill Invoice Interface - Close - Line Line

End

Return Receiving Line

Figure 19: INCORRECT Flow to support both Order and Return Lines

The above flow WILL NOT work correctly, since once a line is booked, WF randomly picks which transition to process first. It then processes it all the way till it can go no further. So for an outbound Line using this flow, if the branch Returns receiving is first processed, it will get marked as Not Eligible and hit the Fulfill -Defer activity (to defer thread) and stop. Then the WF Engine starts executing the other branch; the line will schedule and hit the Ship - Line, Manual sub-process, where it will stop and wait to get picked and shipped. However the Background Engine could pick up the deferred thread and execute the Fulfill activity. This activity will error out since the fulfilling event for the order line Ship-Confirmation is not yet complete. For this to work correctly you need to define the flow as follows:

Unreserve

Schedule - Line Create Supply - Line Order

Ship - Line, Manual

Enter - Line

Utility to Get Line Category Return Return Receiving Line

Fulfill - Deferred

Fulfill Invoice Interface - Close - Line Line

End

Figure 20: CORRECT Flow to support both Order and Return Lines

After booking the line flow branches based on the Line Category ensuring that only one of the branches are (Order or Return) executed runtime. The activity Utility to get Line Category is seeded OM: Order Line Work Item.

Using Workflow in Oracle Order Management

Page 41

Caveats

While you get immense flexibility when designing order and line flows with Oracle Order Management and Oracle Workflow, we recommend that you do so wisely. It is recommended that you acquire training in using Oracle Workflow, before you customize Order Management Workflow processes. We also recommend that you keep in mind the following: When Order Management sends you patches for bug fixes or new releases, it will affect only the seeded OM data. You should carefully review any WF patches you receive. You need to look at the changes made, and decide whether you need to change your custom processes accordingly.

Example - You define a custom booking process (Figure 13). Patches that update the definitions of the Book-Order, Manual and Book-Order, Deferred will not affect the definition of this custom booking process. However if Order Management sends out a patch that changes the definition of the seeded Book activity, your custom process will also pick up the updated definition since it is referencing this seeded activity. Example: Currently the seeded Book function internally calls the Credit Checking API. With a future release Order Management release, this may changed such that credit checking/payment verification is WF enabled. The API that seeded Book function will be changed to not call the credit checking API. And the seeded Booking processes will be changed to include the credit checking /payment verification workflow activities. Now when you get this patch, you need to review it and modify your custom booking process accordingly. If you do not, then your custom booking process will not do credit checking (since it references the updated book function that no longer calls credit checking). You may define new workflow item attributes for the seeded Order Management Work items. However you should keep in mind that Oracle Workflow creates a row for every item attribute whenever a flow is started using a workflow item type (irrespective of whether the item attribute has a value) and this can affect performance negatively. Hence we recommend that you define new workflow item attributes judiciously.

Example: You define 10 new item attributes under the item type OM: Order Line. You define new workflow activities that set values for these attributes and you use them in your notification activities. Now whenever you create an Order Line, Workflow will create 10 additional rows in WF_ITEM_ATTR_VALUES for these new attributes. Order Management uses the primary key (Header_id/Line_id) for the Order/Line as the workflow item key when it starts Order/Line flows. You can use this in your function activities to get more information about a order or line.
Note: Look at the appendix for an example of a PL/SQL based function activity.

Using Workflow in Oracle Order Management

Page 42

CONCLUSION

Oracle Order Managements use of Workflow provides you with powerful order processing and fulfillment capabilities. You need to understand the capability that Oracle Workflow provides and the seeded functionality that Order Management provides to design the best order processing flows for your business. By configuring flows that are flexible and optimal, you can significantly improve your order fulfillment times, thus increase your profitability.

Using Workflow in Oracle Order Management

Page 43

GLOSSARY

The document uses the following abbreviations:

Line Type(s) - Line Transaction Type(s) OE - Order Entry OM - Order Management Order Type(s) - Order Transaction Type(s) R11 - Release 11 R11i - Release 11i Transaction Type(s) - Order and Line Transaction Type(s) WF - Workflow

Other terms used Flow - A flow is what the application starts for a order or a line. A flow is started using a specific "workflow process" Workflow Process - A workflow process is made up of workflow activites or workflow sub-processes. Workflow Sub-process - A workflow sub-process is made of workflow activites or more workflow sub-processes. A workflow sub-process is not defined as "runnable" which means that you cannot start a flow using it.

REFERENCES

Oracle Workflow Users Guide - Part Number A85440-01 Applications Open Interface Manual - Part Number A83746-01 All the White Papers that this document refers to are available on Metalink

Using Workflow in Oracle Order Management

Page 44

APPENDIX A R11i.2 seeded order header/line Workflow processes

Header level seeded workflows: Order Flow-Generic Order Flow-Generic with Header Level Invoice Interface Order Flow-Return with Approval Line level seeded workflows : Line Flow-ATO Item Line Flow-ATO Model Line Flow-Configuration Line Flow-Configuration w/authorization to Ship Line Flow-Generic Line Flow-Generic with authorization to Ship Line Flow-Generic with Header Level Invoice Interface Line Flow-Generic, Bill Only Line Flow-Generic, Ship Only Line Flow- Standard Service Line Flow- Return for Credit only Line Flow- Return for Credit with Approval Line Flow- Return for Credit with Receipt Line Flow- Return for Credit with Receipt & Approval

APPENDIX B R11i.2 seeded WF Item Attributes

Order Management comes seeded with the following WF Item attributes. Item Attributes that are common for OEOH, OEOL & OECHORD:

Order Management WF Administrator (WF_ADMINISTRATOR) - This is set to have a default value of SYSADMIN. You can changes this to reference any other WF Role. This is the role that the default error process sends notifications to, when a WF activity runs into unexpected errors. Item Attributes that are common for OEOH, OEOL:

User ID (USER_ID) - The FND User that created the Order or Line. Application ID (APPLICATION_ID) - The Application tied to the Responsibility under which the Order or Line was created. Responsibility ID (RESPONSIBILITY_ID) - The Responsibility under which the Order or Line was created. Org ID (ORG_ID) - The Operating Unit in which the Order or Line is created.

Using Workflow in Oracle Order Management

Page 45

Notification Approver (NOTIFICATION_APPROVER) - The item attribute that is used as a placeholder to hold values for Notification Responders. The utility activity Set Notification Approver can set a value for this attribute. With 11i.2 onwards, this is set to the value of the profile option OM: Notification Approver at the time the Order or Line is created. The first 3 item attributes are used to set Application Context (Profiles, Operating Unit context) by calling a AOL utility (FND_GLOBAL.APPS_INITIALIZE()). This code is executed in the selector function that the WF Engine calls using a SET_CTX mode, when executing deferred activities for a work item (Order or Line). The ORG_ID Item attribute is used to test whether a flow is being re-started in the right application context (Operating Unit). This code is executed in the selector function that the WF Engine calls using a TEST_CTX mode, whenever somebody calls it to restart a flow.
Note: Please refer to the Oracle Workflow Users Guide for more information on the selector function and Callbacks for setting and testing context.

Item Attributes defined under OEOH:

Order Category(ORDER_CATEGORY) - This is the category of the Order Header (ORDER, RETURN or MIXED). This is set when the Order Header is created. It is can be used to branch flow logic based on order category. Header Short Descriptor(HDR_SHORT_DESCRIPTOR) - This is an attribute of type PL/SQL Document. That is it is set dynamically. It can be used to provide context to message bodies. It returns the Order Type and Order Number. Item Attributes defined under OEOL:

Line Category(LINE_CATEGORY) - This is the category of the Line (ORDER or RETURN). This is set when the Order Line is created. It is can be used to branch flow logic based on line category. Line Short Descriptor(LIN_SHORT_DESCRIPTOR) - This is an attribute of type PL/SQL Document. That is it is set dynamically. It can be used to provide context to message bodies. It returns the Order Type, Order Number, Line Number, Shipment Number, Option Number and Service Line Number. Lead Time Rollup Organization (LEAD_TIME_ROLLUP_ORG), Lead Time Rollup Config Item(LEAD_TIME_ROLLUP_ITEM), Lead Time Date(LEAD_TIME_DATE), Lead Time Category Structure(LEAD_TIME_CATEGORY_STRUCTURE), Lead Time Request ID (LT_ATTR_REQ_ID), AFAS Line ID (AFAS_LINE_ID) - These are used to provide parameter values to the Lead Time Calculation Concurrent Program. This is launched by the ATO Config creation sub-process. Item Attributes defined under OECHORD:

Using Workflow in Oracle Order Management

Page 46

Resolving Role(RESOLVING_ROLE) - The Role that the change Order Notification is going to. This is set dynamically when a User chooses to send a Change Order Notification to a certain responsibility. It is set when the change order notification flow is started. User Text(USER_TEXT) - This is used to store the message body that an end user types in when he chooses to send a Change Order Notification to a certain responsibility. It is set when the change order notification flow is started. Order Number(ORDER_NUMBER) - This is used to provide context to the change order notification. It is set dynamically when the change order notification flow is started.
APPENDIX C R11i.2 seeded utility activities

These are seeded under the OM Standard (OESTD) Workflow Item Type. Approval Failed (APPROVE_FAILED_BLOCK) - This is a block activity that can be used to transition failure results from Approvals. It calls the WF Standard block function. Using this activity enables the flow to remain active, so that you can manually cancel the Order/Line. Set Notification Approver (UTIL_SET_NOTIFICATION_APPROVER) This is a function Activity that can be used to set the value for the item attribute NOTIFICATION_APPROVER It has an activity attribute called SOURCE of type lookup(NOTIFICATION_APPROVER_SOURCE). The default value for this attribute is PROFILE_APPROVER.

The lookup NOTIFICATION_APPROVER_SOURCE (Role Sources for Notification Approver) has the following codes: PROFILE_APPROVER (Notification Approver Profile Role Value), ORDER_CREATED_BY (Role that created Order), CREATED_BY (Role that created the entity) Sample Block that can be completed from the Sales Order Form (BLOCK_ORDER) - This is the block activity that can be used to indicate eligibility for a function activity that follows it. A Order or Line awaiting at this activity will show up in the Progress Order LOV (available from the Sales Order form).

The following utility activities seeded under OM Order Line(OEOL) and can be used as decision points in branching a flow. Utility - Is Return Line Receivable?(RMA_IS_LINE_RECEIVABLE) - This utility returns a result of Yes or No based on whether the line is receivable. Utility to Get Line Category(UTIL_GET_LINE_CATEGORY) - This utility returns the line category Order or Return.

Using Workflow in Oracle Order Management

Page 47

Utility to Get Supply Source Type(UTIL_GET_SUPPLY_SOURCE_TYPE) This Utility return the line supply source type Internal or External.

APPENDIX D Procedures available to query Header Status

Functions available in the package OE_HEADER_STATUS_PUB:


PROCEDURE Get_Booked_Status( p_header_id NUMBER, x_result OUT VARCHAR2); IN

PROCEDURE Get_Booked_Status( p_header_id NUMBER, x_result

IN

OUT VARCHAR2, x_result_date OUT DATE);

PROCEDURE Get_Closed_Status( p_header_id NUMBER, x_result OUT VARCHAR2);

IN

PROCEDURE Get_Closed_Status(p_header_id IN NUMBER, x_result OUT VARCHAR2, x_result_date OUT DATE);

PROCEDURE Get_Cancelled_status( p_header_id IN NUMBER, x_result OUT VARCHAR2);

PROCEDURE Get_Cancelled_Status( p_Header_id IN NUMBER, x_result OUT VARCHAR2, x_result_date OUT DATE);

Procedures available to query Line Status

Using Workflow in Oracle Order Management

Page 48

Functions available in the package OE_LINE_STATUS_PUB


PROCEDURE Get_Closed_Status(p_line_id x_result OUT VARCHAR2); IN NUMBER,

PROCEDURE Get_Closed_Status(p_line_id x_result

IN NUMBER,

OUT VARCHAR2, x_result_date OUT DATE);

PROCEDURE Get_Cancelled_status( p_line_id NUMBER, x_result OUT VARCHAR2);

IN

PROCEDURE Get_Cancelled_Status(p_line_id NUMBER, x_result

IN

OUT VARCHAR2, x_result_date OUT DATE); IN

PROCEDURE Get_Purchase_Release_status(p_line_id NUMBER, x_result OUT VARCHAR2);

PROCEDURE Get_Purchase_Release_status(p_line_id NUMBER, x_result OUT VARCHAR2, x_result_date OUT DATE);

IN

PROCEDURE Get_ship_Status(p_line_id x_result OUT VARCHAR2);

IN NUMBER,

PROCEDURE Get_ship_Status(p_line_id x_result

IN NUMBER,

OUT VARCHAR2, x_result_date OUT DATE);

PROCEDURE Get_pick_Status(p_line_id x_result OUT VARCHAR2);

IN NUMBER,

Using Workflow in Oracle Order Management

Page 49

PROCEDURE Get_pick_Status(p_line_id x_result OUT VARCHAR2, OUT NUMBER,

IN NUMBER,

x_picked_quantity

x_picked_quantity_uom OUT VARCHAR2);

PROCEDURE Get_Received_Status(p_line_id IN NUMBER, x_result OUT VARCHAR2);

PROCEDURE Get_Received_Status(p_line_id IN NUMBER, x_result OUT VARCHAR2, OUT DATE);

x_result_date

/* This function returns invoice interface status */ PROCEDURE Get_Invoiced_Status(p_line_id IN NUMBER, x_result OUT VARCHAR2);

/* This function returns invoice interface status */ PROCEDURE Get_Invoiced_Status(p_line_id IN NUMBER, x_result OUT VARCHAR2, OUT DATE);

x_result_date

APPENDIX E PL/SQL WF wrapper for the function activity Is this a BIG Order Note: WF Function wrappers have to meet certain specifications. Please refer to the WF Users Guide for more details. Note: This API calls an Order Management Group API to get the Order Total. A Public version of this totals API will soon be available.

CREATE OR REPLACE PACKAGE BODY OM_WF_WHITEPAPER as

Using Workflow in Oracle Order Management

Page 50

PROCEDURE CHECK_ORDER_TOTAL( itemtype itemkey actid funcmode IN VARCHAR2, IN VARCHAR2, IN NUMBER, IN VARCHAR2,

resultout IN OUT VARCHAR2) IS l_order_total number; l_big_value number;

BEGIN -- RUN mode - normal process execution IF (funcmode = 'RUN') THEN

/* Get Total Order Value for this Order */ l_order_total := OE_TOTALS_GRP.GET_ORDER_TOTAL(to_number(itemkey), null, 'ALL');

/* Get Activity Attribute Value that determines what amount makes an Order BIG */ l_big_value := wf_engine.GetActivityAttrNumber(itemtype, itemkey, actid, 'BIG_VALUE');

/* Check whether this Order is a BIG Order */ IF (l_order_total > l_big_value) then resultout := 'Y'; ELSE resultout := 'N'; END IF;

Using Workflow in Oracle Order Management

Page 51

RETURN; END IF; -- mode is RUN

-- Other execution modes may be created in the future. Your -- activity will indicate that it does not implement a mode -- by returning null

resultout := ''; RETURN; EXCEPTION WHEN OTHERS THEN -- The line below records this function call in the error system -- in the case of an exception. wf_core.context('OEOH', 'CHECK_ORDER_TOTAL', itemtype, itemkey, to_char(actid), funcmode); RAISE; END CHECK_ORDER_TOTAL; END OM_WF_WHITEPAPER;

Using Workflow in Oracle Order Management

Page 52

Using Workflow in Oracle Order Management Created October 2000 Updated October 2001 Authors: Leena Sampemane, Tsui-Ying Wang Oracle Corporation World Headquarters 500 Oracle Parkway Redwood Shores, CA 94065 U.S.A. Worldwide Inquiries: Phone: +1.650.506.7000 Fax: +1.650.506.7200 Web: www.oracle.com This document is provided for informational purposes only and the information herein is subject to change without notice. Please report any errors herein to Oracle Corporation. Oracle Corporation does not provide any warranties covering and specifically disclaims any liability in connection with this document. Oracle is a registered trademark, and Oracle Order Management is a trademark(s) or registered trademark(s) of Oracle corporation. All other names may be trademarks of their respective owners. Copyright Oracle Corporation 2000 All Rights Reserved

You might also like