Login
Register

Home

Trainings

Fusion Blog

EBS Blog

Authors

CONTACT US

Oracle Workflows - All Articles
  • Register

Oracle Gold Partners, our very popular training packages, training schedule is listed here
Designed by Five Star Rated Oracle Press Authors & Oracle ACE's.

webinar new

Search Courses

The Lesson 2 of Oracle Workflow training is driven by screenshots.

Thanks to all the responses from Lesson 1 of Oracle Workflows Training. The most promising response was that from Swetha who mentioned that although
Audio-Visual training is good, however if someone wants to practice the steps as they read then its best to have screenshot.
Another problem with Audio-Visual is that it is not possible to print such audio-video presentations of macromedia.
( Many thanks Swetha, I appreciate your sincere views. )

Hence the Lesson 2 of Workflow training is driven by screenshots. Please note that Workflows Training Lesson 1 ( Audio Visual)
is a pre-requisite for fresh workflow learners.

In this lesson we are going to learn:-
1. How to creates lookups in workflow.
2. How to provide a drop down list in notification to user. User will be select the response(approve or reject) from drop down list.
3. How to make a user enter rejection reason in free text response field within notification.
4. Validate that the value of rejection reason is not null, if user selects rejected. Effectivley this will train you on how to do
validations on notification responses using pl/sql.


Step 1. Open the Workflow “XX Training Workflow” that we created in lesson one.
The source code for this is in Workflow Training Lesson 1.


Step 2. Under ItemType” XX Training Workflow”, right click on “Lookup Types” and select New.

Select lookup type XX_MY_RESPONSE_TYPE.
Click on Apply and OK, after having created the Lookup Type.

Step3. Within lookup type, right click and select New, to create two new lookup codes.

Create lookup codes like as below.
Lookup code:XX_APPROVED

Ditto as above for Lookup Code: XX_REJECTED


Step 4. Now lets define two attributes.
These attributes will later be assigned to workflow message that we created in Training Lesson 1 .

Attribute: XX_RESPONSE_ACTION

Note: This attribute will be used in conjunction with the Lookup Type “XX_MY_RESPONSE_TYPE” to display the drop-down list in notification response.
Each lookup code value will be presented to the user in notification.

Attribute: XX_RESPONSE_REASON

Note: User will be able to enter a free text response reason. Please note that we will validate the value entered into this Notification response field using PL/SQL.
For this training, we will validate to ensure that Response Reason is entered if the user decides to reject notification.

Step 5. Drag these two attributes one by one using left mouse click, into the message “PO Information”. You will be prompted with a message box when you drag
these attributes, simply click OK to those messages. After dragging the two attributes to message, these will appear in Workflow as below.


Step 6. Double click on attribute "XX Response Action" within the Message.
Set type to a value of “Lookup”.
Set Source to a value of “Respond”.
Set Lookup Type to "XX My Response Type"

Now double click on attribute "XX Response Reason" within the message "PO Information".
Set Source to "Respond". Leave everything else to its default value and click on OK.

Step7 Important Note: This Oracle Workflow training lesson is simply trying to depict how to present drop down list for response to notification.
Ideally, for approvals, you will simply attach a Lookup Type to notification itself.


Double click on notification “PO Notif Info”.
In the Function Name field assign “xxxx_po_wf_training_pkg.xx_validate_response”

Step 8
Write the pl/sql function as below for xx_validate_response (dont worry, I am attaching the code for this tutorial).
PROCEDURE xx_validate_response(itemtype IN VARCHAR2
,itemkey IN VARCHAR2
,actid IN NUMBER
,funcmode IN VARCHAR2
,RESULT IN OUT VARCHAR2) IS
l_nid NUMBER;
l_activity_result_code VARCHAR2(200);
v_response_reason VARCHAR2(50);
BEGIN
IF (funcmode IN ('RESPOND'))
THEN
l_nid := wf_engine.context_nid;
l_activity_result_code := wf_notification.getattrtext(l_nid
,'XX_RESPONSE_ACTION');
v_response_reason := wf_notification.getattrtext(l_nid
,'XX_RESPONSE_REASON');
IF l_activity_result_code = 'XX_REJECTED' AND
v_response_reason IS NULL
THEN
RESULT := 'ERROR: You must enter rejection reason if rejecting.';
RETURN;
END IF;
END IF;
EXCEPTION
WHEN OTHERS THEN
RESULT := SQLERRM;
END xx_validate_response;



Step9 Now save the workflow in database.
The definition of Workflow File can be downloaded by right clicking here

Step 10 Test your workflow.
The remainder PL/SQL scripts for this training tutorial can be downloaded from Lesson 2 Scripts

When testing, select "XX Rejected" in response while leaving the rejection reason blank. You will then see the error as below.
Image

For any comments/questions for this training session, leave a comment here.


Anil Passi

Comments   

0 #1 Anil Passi 2006-12-21 00:00
Hi Srikanth

I certainly will write up on that, but will probably be after xmas holidays.

I think there is a white paper on metalink too for Payables/Expens es. Did you have a look at that?

thanks
anil
Quote
0 #2 Srikanth 2006-12-21 00:00
Hi Anil ,
Can you please direct me to some documentation on using AME in Workflow.I could not find much informative docs on this.

It would be great if you could handle a session on this.

Please help me in this regard.

Than k you in advance,
Srika nth
Quote
0 #3 Anil Passi 2006-12-21 00:00
Hi Srikanth

I certainly will write up on that, but will probably be after xmas holidays.

I think there is a white paper on metalink too for Payables/Expens es. Did you have a look at that?

thanks
anil
Quote
0 #4 Srikanth 2006-12-21 00:00
Hi Anil ,
Can you please direct me to some documentation on using AME in Workflow.I could not find much informative docs on this.

It would be great if you could handle a session on this.

Please help me in this regard.

Than k you in advance,
Srika nth
Quote
0 #5 Srikanth 2006-12-22 00:00
Hi Anil ,
I didnt find the document.Can you give the details of the white paper .

Thank you,
Srikanth
Quote
0 #6 Anil Passi 2006-12-22 00:00
Hi Sri

Refer to Metalink Notes 369040.1 and 251770.1

Tho se will provide you an insight

Than ks
Anil Passi
Quote
0 #7 Srikanth 2006-12-22 00:00
Hi Anil ,
I didnt find the document.Can you give the details of the white paper .

Thank you,
Srikanth
Quote
0 #8 Anil Passi 2006-12-22 00:00
Hi Sri

Refer to Metalink Notes 369040.1 and 251770.1

Tho se will provide you an insight

Than ks
Anil Passi
Quote
0 #9 Srikanth 2007-01-03 00:00
Hi Anil ,

I have followed the steps in WF Lesson1.The issue is it is working in Lical instance but the same Package and same WF Process are not working in client instance.

Wi ll there be any differences for on the fly roles from instance to instance.

Th e status field in wf_notification s table of client is CLOSED where as in local instance it is OPEN.

Thanks ,
Sri
Quote
0 #10 Anil Passi 2007-01-03 00:00
.
.
.
.
Hi Sri,

Is the ad Hoc Role API returning an error?
Try calling that API from SQL*Plus and see how it behaves.

Tha nks
Anil Passi
.
.
.
Quote
0 #11 Srikanth 2007-01-03 00:00
Hi Anil ,

I have followed the steps in WF Lesson1.The issue is it is working in Lical instance but the same Package and same WF Process are not working in client instance.

Wi ll there be any differences for on the fly roles from instance to instance.

Th e status field in wf_notification s table of client is CLOSED where as in local instance it is OPEN.

Thanks ,
Sri
Quote
0 #12 Anil Passi 2007-01-03 00:00
.
.
.
.
Hi Sri,

Is the ad Hoc Role API returning an error?
Try calling that API from SQL*Plus and see how it behaves.

Tha nks
Anil Passi
.
.
.
Quote
0 #13 Anil Passi 2007-01-12 00:00
.
.
.
Hi Jon,
Great yuo fixed the problem. Many thanks for sharnig your experience/rese arch on this error.

Thank s
Anil pAssi
Quote
0 #14 Anil Passi 2007-01-12 00:00
.
.
.
Hi Jon,
Great yuo fixed the problem. Many thanks for sharnig your experience/rese arch on this error.

Thank s
Anil pAssi
Quote
0 #15 SAI 2007-02-08 00:00
Hi anil

This is a great work you are doing man keep it up
.I am a fresher to oracle apps and am trying to do the screen shots in leson two and i was not able to figure out where can i see the last screen shot in which ican select aprroved or rejected.i checked my mail and have not recieved any thing can you please explain that last step in detail

Thank s

Sai
Quote
0 #16 Raj 2007-02-21 00:00
Hi Anil,

Great job Man. Its really a good one for the freshers like me to get started with the Work Flows.

Thank s,

Raj.
Quote
0 #17 Sasidhar 2007-04-26 00:00
Hi Anil,

Thanks for sharing the knowledge.

I Have a case where in the Action is not been captured inside an attribute, we simply attached a lookup to the Message, in this case how can i achieve the validation for reason column.
Thanks in Advance.

Reg ards,
Sasidhar .
Quote
0 #18 Anil Passi 2007-04-27 00:00
Hi Sas

Have you attached a lookup to attribute of type Respond ? If so, the workflow notification will convert the lokkupcodes into a List Of Values, and it will be presented in notification as drop down list. In this case, no further validation is required as LOV will be restricted to the list of valid values in lookup.

Than ks
Anil
Quote
0 #19 Sasidhar 2007-04-28 00:00
Hi Anil,

Thanks for responce.

In continuation of my previous question, is there any way to capture the Events of Approved, Rejected on the notification if we are not maintaining any attribute to store the lookup values but directly attaching the lookup to the Message.

Reg ards,
Sasidhar
Quote
0 #20 Anil Passi 2007-04-29 00:00
HiSasi

If you wish to store the auditing of action/response s on custom notifications [so that you can report that elsewhere], then you would need a custom table and then using post notification insert record into that table. Much like PO_APPROVAL_HIS TORY, whereby Oracle captures the entire lifespan of a purchase order which includes creation, reservation, approval, timeout etc.

Thanks
Anil
Quote
0 #21 Jagdish 2007-05-15 00:00
Hi Anil,

The articles what you are providing are really fantastic to have a good start. Thank you for your wonderful effort.

Regards,
J agdish
Quote
0 #22 S.Mahaboob Basha 2007-06-19 00:00
Hi Anil,

Its Good.Its really helpfull for oracle Apps Consultants.Its Good work from your side.Keep it up.If any issues i will mail to you.

Regards
Basha
Quote
0 #23 Sasidhar 2007-06-23 00:00
Hi Anil,
In our current project we had a requirement to invoke a child workflow process from the Parent Workflow. We have achieved this by calling the start process in a loop for each child workflow process. Here the Problem is, in the Status Monitor we are seeing as many lines as child workflow process are invoked.
We donot want these child workflow process appear in the Status Monitor is there a way to do that.
This is all becoz our client wants only one Process against one workflow in Status Monitor.
As wel we want the main workflow to error state if any child process fails.

Thank s in Advance...

R egards,
Sasidh ar.
Quote
0 #24 Suresh Babu 2007-08-21 09:55
Hi Anil,

Thank you very very much for your WF training materials. It is more than a tutor for me... Excellent job....

I have a query regarding the FUNCTIONS executed thru WF Notification. For eg., in your sample procedure xx_validate_res ponse is called from the WF. My query is, when exactly is this xx_validate_res ponse procedure getting executed, i mean before the APPROVE/REJECT action from the user or after the APPROVE/REJECT action.

I asssume that the function is executed after the user select either APPROV/REJECT. Kindly confirm me.

Thanx
Suresh
Quote
0 #25 moammed khasawneh 2007-08-26 09:14
thanks alot ,but i want to ask about where to find documents or lessons on which connect the alerts of apps with some workflow .please I need that.
thanks in advance.
Quote
0 #26 Sree 2007-11-14 20:33
This is the best way(Screen shots) to practice what ever been taught in the lesson. Thanks alot Anil for such a vivid explanation and to Swetha for giving such a splendid feedback.

- Pavan.
Quote
0 #27 zafar sadiq 2007-11-30 11:18
Hi every one ,
Thanks for this tutorial, its has helped me a lot .. but i am facing one problem if i select response action as rejected and click on submit with response reason as null i get an error as

Cannot create picklist ViewObject for region item (N40); Pick list view object definition must be supplied, if pick list view usage or list view object is not set.

plz help me ..

thanks a alot
Quote
0 #28 Premal Mehta 2008-01-08 10:26
It was a great tutorial...
I just need to ask one think...how would the User be able to Launch the Workflow?
regar ds
Premal mehta
Quote
0 #29 Jayesh Bhangdiya 2008-02-28 14:27
Hi Anil,
Thanks a lot for such wonderful tutorial.

I follwed all the steps of Step 1 & Step 2 & it worked successfully.

I am trying to follow the same steps for my project requirement as its almost the same.
The only change is my notification has the the result type of Approval.
I am getting following error:

Notific ation activity's message must have a respond attribute named 'RESULT' with lookup type 'WFSTD_APPROVAL '.

What's the solution for the same?

Thanks & Regards,
Jayesh



:)
Quote
0 #30 Jayesh Bhangdiya 2008-02-29 07:44
I got the solution. I didn't add type in result navigation of Message.

Thank s & Regards,
Jayesh
Quote
0 #31 Hirdesh Gupta 2008-03-05 02:02
Dear Anil

It is a great online training tutorial...

Th ank you so much , I was new for workflow, Now I can start work on WF independently .

Once agian
Thank you

Regards

Hirde sh
Quote
0 #32 Siva sankar v 2008-03-09 03:47
Hi Anil,

I am going through your articles and training.I would like to appreciate your efforts on this.I got several vision access where i can access application but i dont have any free database access.Do you have any idea where i can get free vision database access so that i can have trails on your training stuff.

Thanks for your efforts.

Regar ds
Siva V
Quote
0 #33 Hemanth 2008-11-09 10:40
hi Anil,

I am trying to display the data from IRC_DEFAULT_POS TINGS_TL table, in this table some of the fields are of CLOB datatype,
for example org_description is Bulleted Text, i would like to display this in the WF notification as regular text without any html tags. how could i do that?

Regards
Hemanth
Quote
0 #34 Santhosh Kotha 2009-01-10 00:39
Hi Anil,

I have gone through your articles and presentations. They are really very much useful to everyone who ever with the
thirst of learning Apps... The way you present things is superb and have no words to admire you. I appreciate your work
from the bottom of my heart and would like to extend my sincere thanks. Thanks a lot.

Regards,
Santhosh
Quote
0 #35 gjpraveen 2009-04-23 05:14
Hi Anil,

Thank you very very much for your WF training materials

Than ks
Praveen
Quote
0 #36 sujathaorcl 2010-01-19 01:31
Hi Anil,

Thanks for sharing the wondersful articles which make learning easy.

I had a question , how can we capture the re assign activity as the result and take the workflow to next step after re-assign ?
I just want to capture the re-assigned username and go to the next step .

I am using post notification function to capture the value without sending the notification.
B ut the worklfow doesn seem to move fwd

Thanks
Sujath a
Quote
0 #37 Imran Baig 2010-02-23 12:45
Hi! Anil! THis is Imran from Hyderabad-India . Presently I am working for Satyam as a oracle PL/SQL developer and I want to learn Oracle Apps. Please let me know how can I start learning from basics, to become a techo-functiona l consultant. Do let me know which modules will be best to learn in terms of getting good packages in India and abroad. I will be very thankfull to you. Please help me in learning it quickly.

Thank s & Regards
Imran Baig
MSat
Hyder abad, IND
Quote
0 #38 umamaheswararao 2012-09-18 05:54
hi,this is fine but i have one requirement ....will u plz provide some interformation regarding that my issue in in iexpences afrer creation of expence report it will follow some hirarchy..i am new to workflow i dont know how to handle this one
Quote
0 #39 interracial sex cam 2021-08-14 08:37
Fantastic beat ! I wish to apprentice while you
amend your site, how can i subscribe for a blog web site?
The account helped me a acceptable deal. I had been tiny bit acquainted of this
your broadcast provided bright clear idea
Quote
0 #40 best sex cam chat 2021-08-16 07:16
I always used to read post in news papers but now as I am a user of net so from now I am using net
for posts, thanks to web.
Quote

Add comment


Security code
Refresh

Search Trainings

Fully verifiable testimonials

Apps2Fusion - Event List

<<  Apr 2024  >>
 Mon  Tue  Wed  Thu  Fri  Sat  Sun 
  1  2  3  4  5  6  7
  8  91011121314
15161718192021
22232425262728
2930     

Enquire For Training

Related Items

Fusion Training Packages

Get Email Updates


Powered by Google FeedBurner