Oracle Principiantes Scripts PDF
Oracle Principiantes Scripts PDF
Home Contact Me Downloads Scripts T raining/Job Support Interview Q&A Jobs News eBooks Website
SEARCH ARTICLES
Displaying an OAF Page through Workflow Notification
Search
Introduction
This blog post explains the process of firing/ Opening a Page through workflow
notifications. This can be used for implementing a feed back form which is to be filled by
the group of users who ever have gone under training. This Process generates link (URL)
in a notification through which a Page gets opened through the link.
Pre Requisites
Need to have Knowledge on Workflows, Pl/Sql and AOL
Process
Need to Create an OA Page which is supposed to be sent through notification
Register the OA Page as a function in any of the (Menu/Responsibility)
Generation of URL for the OA Page Created
Sending the URL through notification to all users
Registration of OA Page
Defining a function for the page CONTENTS
Attaching the function to menu
CONTENTS
Generation of URL for the Page
We use some standard Package for generating URL
Declare
l_resp_appl_id NUMBER;
l_resp_id NUMBER;
l_function_id NUMBER := fnd_function.get_function_id
(p_function_name => 'LRNG_IMP_EVALUATION'/* Function Name */
);
BEGIN
SELECT responsibility_id, application_id
INTO l_resp_id, l_resp_appl_id
FROM fnd_responsibility_tl
WHERE responsibility_name = 'Employee Self Service';Responsibility Name to which
we attach the function
l_url := fnd_run_function.get_run_function_url
(p_function_id => l_function_id,
p_resp_appl_id => l_resp_appl_id,
p_resp_id => l_resp_id,
p_security_group_id => 0,
p_parameters => NULL,
p_override_agent => NULL,
p_org_id => NULL,
p_lang_code => NULL,
p_encryptparameters => FALSE);
end;
http://oracleapps4u.blogspot.in/2012/12/displayingoafpagethroughworkflow.html 1/3
1/27/2015 Displaying an OAF Page through Workflow Notification | Oracle Apps
Setting Notification with URL
Need to create and start the desired Workflow and then setup the notification as
mentioned below
wf_engine.setitemattrtext(itemtype => 'XXMHPLRN', /*WFItem name*/
itemkey => l_item_key, /*WFItem Key*/
aname => 'PAGE_LINK', /*Attribute name*/
avalue => l_url /* Generated URL Path*/
);
Once Workflow starts the process it sent the notification with URL embedded to all of the
concern users.
We can trigger the new process by we submit the page which has been sent through
notification for performing further operations if required.
Posted by Venkat at Saturday, December 01, 2012
Labels: Integration of OAF with workflows, OAF page through Workflow notification, using WF URL
Attribute
ONLINE VIDEO TUTORIALS
JOIN THIS SITE & GET FREQ. UPDATES ON
NEW BLOG POSTS
Join this site
with Google Friend Connect
Members (222) More »
Already a member? Sign in
MAKE PAYMENTS
Stay Connected
http://oracleapps4u.blogspot.in/2012/12/displayingoafpagethroughworkflow.html 2/3
1/27/2015 Displaying an OAF Page through Workflow Notification | Oracle Apps
Disclaimer: Opinions expressed in this blog are entirely my own and do not reflect the position of my Employer, Oracle Corp. or any other corporation. I am
NOT responsible for any damages in whatever form caused by the usage of the content of this blog. I created this blog to share my knowledge, especially with
Oracle Application ERP.
▂ ▃ ▅ ▆ █ Mr Group █ ▆ ▅ ▃ ▂™. Powered by Blogger.
http://oracleapps4u.blogspot.in/2012/12/displayingoafpagethroughworkflow.html 3/3