Oracle Apps Knowledge Centre - Create A Custom Oracle Workflow in Oracle APPS r12
Oracle Apps Knowledge Centre - Create A Custom Oracle Workflow in Oracle APPS r12
Manish Dishwar
Create a custom Oracle Workflow in Oracle APPS r12
View my complete profile
Purpose: The purpose of this document is to create Oracle custom workflow using Oracle Workflow builder. Blog Archive
▼
▼ 2017 (30)
Steps: ▼
▼ August (10)
Removing/Filtering records using Group
Filters in ...
· Download and install Oracle workflow builder. We will create (.wft) extension file using Oracle
How to change default layout template
workflow builder. of Oracle Re...
Approved Supplier List (Error: Item is
· Open the Oracle workflow builder. restricted ...
Check Password for users in Oracle
· Set the access level to 0 and check the box for “Allow modification of customized objects” APPS r12
►
► July (11)
►
► June (2)
· Open (download) 2 standard Item types “Standard” and “Standard Flexfield Workflow” by clicking ►
► May (1)
File -> Open (Ctrl + O). ►
► March (3)
►
► February (3)
· In database section enter database details to connect the builder to the database and click “Ok”
button.
Report Abuse
Search
Home
oracleappsknowledgecentre.blogspot.com/2017/08/create-custom-oracle-workflow-in-oracle.html 1/10
8/15/23, 10:37 PM Oracle Apps Knowledge Centre: Create a custom Oracle Workflow in Oracle APPS r12
Popular Posts
Create A Custom
region in OAF
Page (OAF
EXTENSION,
CUSTOMIZATIO
N,
PERSONALIZATI
ON)
· Right click on the “Attributes” and select “New Attribute”. This post will
help u create a
· Enter the name, type, length, default value of the attribute. custom region in
OAF Page. In this
post I will include
· Here we will create 2 attributes: all the steps to
create a custom
region so that t...
o USER_NAME – (To which user the approval is send)
oracleappsknowledgecentre.blogspot.com/2017/08/create-custom-oracle-workflow-in-oracle.html 2/10
8/15/23, 10:37 PM Oracle Apps Knowledge Centre: Create a custom Oracle Workflow in Oracle APPS r12
· Enter the message name, internal name and then click on “Body” tab.
· Enter the “Subject” and the message in the “Body” part.
· Click on “Result” tab and select “Approval” in Lookup Type field. Click on “Ok” button.
· Enter the notification name, select “Approval” in the Result type field and select the message in the
Message field. Click on “Ok” button.
oracleappsknowledgecentre.blogspot.com/2017/08/create-custom-oracle-workflow-in-oracle.html 3/10
8/15/23, 10:37 PM Oracle Apps Knowledge Centre: Create a custom Oracle Workflow in Oracle APPS r12
· Right click on “Processes” and click on “New Process”. Click on “Ok” button.
· Now, drag and drop functions, notifications from the list of Items in the navigator.
· To create a link between two objects right click on any function and then drag and move the
cursor to other function.
· Drag “Start” function from the “Standard” item type.
· Double click on the “Start” function and click on “Node” tab and set the “Start/End” field to
“Start”. Click on “Ok” button.
oracleappsknowledgecentre.blogspot.com/2017/08/create-custom-oracle-workflow-in-oracle.html 4/10
8/15/23, 10:37 PM Oracle Apps Knowledge Centre: Create a custom Oracle Workflow in Oracle APPS r12
· Similarly drag “End” function from the “Standard” item type.
· Double click on the “End” function and click on “Node” tab and set the “Start/End” field to “End”.
Click on “Ok” button.
· Similarly drag and drop all the functions and notifications as shown in the image below.
· Double click on “Approval Notification” click on “Node” tab and select “Item Attribute” in
Performer section and select “attribute name” (USER_NAME) in value field.
· Now we create a package to initiate the workflow, write any logic or action to be completed on
workflow.
oracleappsknowledgecentre.blogspot.com/2017/08/create-custom-oracle-workflow-in-oracle.html 5/10
8/15/23, 10:37 PM Oracle Apps Knowledge Centre: Create a custom Oracle Workflow in Oracle APPS r12
IS
PROCEDURE REJECT (
);
PROCEDURE APPROVE (
);
END;
/
IS
IS
NULL,
NULL
);
);
);
COMMIT;
THEN
oracleappsknowledgecentre.blogspot.com/2017/08/create-custom-oracle-workflow-in-oracle.html 7/10
8/15/23, 10:37 PM Oracle Apps Knowledge Centre: Create a custom Oracle Workflow in Oracle APPS r12
PROCEDURE REJECT (
)
IS
L_USER_NAME VARCHAR2(100);
BEGIN
L_USER_NAME :=
);
EXCEPTION
THEN
NULL;
END REJECT;
PROCEDURE APPROVE (
)
IS
L_USER_NAME VARCHAR2(100);
BEGIN
L_USER_NAME :=
);
EXCEPTION
THEN
END APPROVE;
END XX_CUSTOM_PKG;
· Save the .wft file on the server. Click File -> Save As.
· In database section give the login credentials. And click on “Ok” button.
· Now write the below mentioned code in your PL/SQL program or form to initiate the approval.
XX_CUSTOM_PKG.LAUNCH_WORKFLOW (P_APPROVAL_ID);
oracleappsknowledgecentre.blogspot.com/2017/08/create-custom-oracle-workflow-in-oracle.html 9/10
8/15/23, 10:37 PM Oracle Apps Knowledge Centre: Create a custom Oracle Workflow in Oracle APPS r12
No comments:
Post a Comment
To leave a comment, click the button below to sign in with Google.
oracleappsknowledgecentre.blogspot.com/2017/08/create-custom-oracle-workflow-in-oracle.html 10/10