Use OAF page and Workflow:

Hi,
In a workflow i have a OAF region refered as
JSP:/OA_HTML/OA.jsp?page=/oracle/apps/ap/invoice/request/negotiation/webui/NotifPGRN&INVOICEID=-&INVOICE_ID-
Now instead of this region i created a new region satisfying my requirements.
Then moved the region and importing to server.
In the Workflow i changed the new region name.
Now when i run my page the old region only displays. In the OAF page also i cant find the region to be called. But the region is available in the server.
Please anyone help me.
Thanks in Advance,
Jegan

You can't change existing workflow messages. This will violate oracle solutions support.
you need to duplicate the workflow and duplicate the messages, then do the changes..
If you have access level at 100, you can change the workflow.
--Prasanna                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • HT4623 I still have an iPad 1, and need to update to iOS 7 to use Keynote, Pages and Numbers but I get the message the my system is updated in iOS 5.1.1 and doen's offer me another update!

    I still have an iPad 1, and need to update to iOS 7 to use Keynote, Pages and Numbers but I get the message the my system is updated in iOS 5.1.1 and doent's offer me another update! How can I update it? Or I can't?

    ayrosa wrote:
    I still have an iPad 1, and need to update to iOS 7 
    Sorry... This is not possible. The iPad 1 can Only go as far as iOS 5.1.1

  • Link to OAF page from workflow notification

    I am trying to give a link in a workflow notification to the customer details page in R12. I decompiled the Controller classes of the customer pages to get the parameters that the page needs.
    The page I am trying to access is defined as a function , AR_CUS_OVR with webhtml call :
    OA.jsp?page=/oracle/apps/ar/cusstd/ovrview/webui/ArCusOvrPG&OAFunc=AR_CUS_OVR
    I got the url for this page using the following function :
    FND_RUN_FUNCTION.GET_RUN_FUNCTION_URL
    (25779,660,21623,null,'HzPuiPartyId=32551,cusType=ORGANIZATION,HzPuiSubjectPartyType=ORGANIZATION')
    When i paste this URL in the browser, if I am not already logged in , I am directed to the login page and then I get an error :
    You have insufficient privileges for the current operation. Please contact your System Administrator.
    If i am logged in, i directly get the above error.
    I searched the DB to see where this message is thrown but did not find any match. It's probably thrown from some OAF page.
    The function is attached to the menu and my user has the required responsibility. I can access the page if i login and navigate to the page.
    It's probably the URL , but I am not able to lay a finger on the problem. Please let me know if I am missing something here.
    Does anyone know when this error is raised.
    thanks,
    Satya

    I was trying to access the page by pasting the link directly in the browser. I guess that's why it was throwing the indufficient privileges error.
    If I click the link from the notification, it tries to bring up the page. But throws a sql exception about invalid number.
    I checked the controller code in ArCusOvrCO.java. If the parameter cusType is null, the controlller invokes a method to get custType by calling amethod in the AM which executes a sql statement, SELECT party_type from HZ_PARTIES where party_id = : 1
    This parameter HzPuiPartyId is used for this. It looks like all the parameters are passed as null even though I am passing them .
    Is the following way the right way of passing multiple parameters to the function :
    FND_RUN_FUNCTION.GET_RUN_FUNCTION_URL. I am just passing a comma separated list.
    'HzPuiPartyId=24553,cusType=ORGANIZATION,HzPuiSubjectPartyType=ORGANIZATION,HzPuiPartyName=EOM40,HzPuiObjectPartyType=ORGANIZATION,HzPuiObjectPartyId=24553'
    thanks,
    satya

  • How to open and the view the .jsp(OAF) page and it's related code?

    Hi,
    Can anybody help on how to open the .jsp and it's related java files to see the coding? I want to know the table and view details related to a particular OAF page. It will be great help if someone explains.
    Thanks in advance.
    Muruga.
    Edited by: Murugeshapps on Jun 26, 2009 6:37 AM

    Hi,
    Please see the following documents.
    Note: 416708.1 - How to find the correct version of JDeveloper to use with eBusiness Suite 11i or Release 12.x
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=416708.1
    Note: 330236.1 - Configuring JDeveloper For Use With Oracle Applications 11i and R12
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=330236.1
    For further OAF questions, please post it in [Technology - OA Framework |http://forums.oracle.com/forums/forum.jspa?forumID=210] forum, you would probably get a better/faster response.
    Regards,
    Hussein

  • OAF: passing parameters to report from OAF page and running concurrent prog

    Hi Everyone,
    i have an OAF page with 10 fields after filling those fields i need to press "Submit" button.
    On pressing Submit button 5 parameters i have to pass to the xml publisher report to run the concurrent program and display the output in pdf format.(Out of 10 fields on the page the first 5 fields will be passed as parameters)
    How can i pass parameters from OAF page to the report(concurrent program)?
    and how can i call concurrent program?
    and how can display the output of the report in pdf format after calling the concurrent program?
    Any answers will be really useful...
    Thanks in advance.
    Thanks.

    Hi kumar ,
    XML report will generate output in PDF format , first you need to try generating report separately , manually submit
    the concurrent program and make sure every thing goes well .
    Once the above step is done you can try to submit the concurrent from controller class . The submitRequest method
    will return the request ID of the concurrent program .
    Now with the help of this request ID you can redirect the page to Oracle standards Request Page( you can monitor
    the status of concurrent program and view output ) this can be done with the following piece of code
    String url = "OA.jsp";
    parameters.put("akRegionApplicationId", "0");
    parameters.put("akRegionCode","FNDCPREQUESTVIEWPAGE");
    String id = "" + return_reqId + "";
    parameters.put("requestMode","DEFERRED");
    parameters.put("requestId", id);
    pageContext.setForwardURL(url,null,OAWebBeanConstants.KEEP_MENU_CONTEXT,null,parameters,true,OAWebBeanConstants.ADD_BREAD_CRUMB_NO ,OAWebBeanConstants.IGNORE_MESSAGES);
    Keerthi

  • OAF Page in Workflow

    Hello Everyone,
    I did the following to call the OAF Page in the workflow notification. I see the region in created in the workflow notification but the VO is not getting executed i guess, so i don't see any values in that region.
    1) Created a Region and in the processRequest, i did the following
    String p_id = pageContext.getParameter("doc_id");
    pageContext.putAttrDialogMessage(webBean,new OAException("param value is "+p_id));
    // Serializable s1[] = {p_id};
    OAApplicationModule oaappl = pageContext.getApplicationModule(webBean);
    OAViewObject oaview = (OAViewObject)oaappl.findViewObject("TestVO");
    oaview.reset();
    oaview.setWhereClauseParams(null);
    oaview.setWhereClauseParam(0,p_id);
    oaview.executeQuery();
    2) I created a Function in the application which calls the region as follows:
    =OA.jsp?page=/xxx/oracle/apps/xxxhr/selfservice/testworkflow/webui/TestWorkflowRN
    3) In the workflow, i defined an attribute and of type document and in the value property, i have given the following:
    JSP:/OA_HTML/OA.jsp?OAFunc=TEST_WORKFLOW_FUN&doc_id=-&P_SR_DOC_NO-
    4) When the workflow is being called, i am giving a value for the attribute P_SR_DOC_NO.
    I see the region in the notification but no values in it. The VO is not executing. Any suggestion would really help me.
    Thank you
    Akhil

    Hi,
    Including the custom page in the notification is fine. But what i find was generally we will call workflow to send messages to the other person based on the business requirement at that time inclusion of page in notification may not be good.

  • R12.2.4 Data lost after using Dialog Page and return back to calling page.(Help Please! )

    Hi Team,
    I am new to OAF and is working on a requirement to add some custom validations when the user clicks on a Button in a standard seeded page.
    The approach I took was to Extend the seeded Controller object that handled this button press event and put my custom logic in the extended controller and override the standard controller via personalization.
    The standard flow was that upon pressing the Complete Button in Page A ,user was taken to the next seeded page (Page B) to perform certain operations based on the records that were selected in Page A.
    Part of the custom validation requirement was that if certain validations were not met then the user needs to be shown a Pop-up asking if they really wanted to proceed and if they selected Yes then continue with the standard seeded flow(move to page B)  and if they selected NO then just stay on the current page.
    I was able to use OADialogPage and do this partially , the issue I am running into is that once the user selects the one or more records  using a check box from a multi-record (table) region and hits the Complete Button on page A and if the validation fails then a modal page is shown and the user makes a selection i.e.either Yes or No from the modal page and when they return to calling page (i.e. Page A) , All the Data (records ) that they selected previously is lost (Page is refreshed). Based on what I see on this forum I suspect that it is because after clicking on Yes on the modal page and while returning to the original page the processRequest fires again and VO data is queried again and all selections on the page A are lost. Since I am trying to alter the flow in seeded pages based on user intervention I am kind of lost as to how this issue can be fixed. i.e. either prevent the page refresh or preserve the selections that were made prior to navigating to the modal page. Any Help is truly appreciated !!
    My Code :
    public void processFormRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    if (oapagecontext.getParameter("completeOps") != null) {
    if (warnCount > 0) {
      //OAException message = new OAException("Not in Sequence...", OAException.WARNING);
      //oapagecontext.putDialogMessage(message);
      OAException message = new OAException("Rule XYZ Violated .Do you want continue ?",OAException.WARNING);
      OADialogPage dialogPage = new OADialogPage(OAException.WARNING, message, null, "","");
      String yes = oapagecontext.getMessage("AK", "FWK_TBX_T_YES", null);
      String no = oapagecontext.getMessage("AK", "FWK_TBX_T_NO", null);
      dialogPage.setOkButtonItemName("ConYesButton");
      dialogPage.setNoButtonItemName("ConNoButton");
      dialogPage.setOkButtonToPost(true);
      dialogPage.setNoButtonToPost(true);
      dialogPage.setPostToCallingPage(true);
      dialogPage.setOkButtonLabel(yes);
      dialogPage.setNoButtonLabel(no);
      oapagecontext.redirectToDialogPage(dialogPage);
    if (oapagecontext.getParameter("ConYesButton") != null)   {
              // Write Action code for Yes Button
              oapagecontext.putParameter("completeOps", "Continue");
    if (oapagecontext.getParameter("ConNoButton") != null){
                // Write Action code for No Button
                String errormsg = "Rule Violations have occured ";
                throw new OAException(errormsg);
       super.processFormRequest(oapagecontext, oawebbean);

    I was able to work around this issue by adding a simple check in the processRequest method of my extended Controller to prevent the call to super.processRequest incase when the control returns to the page after the user has made a selection in the Dialog Page
    if((oapagecontext.getParameter("ConYesButton") == null) && (oapagecontext.getParameter("ConNoButton") == null)) {
      super.processRequest(oapagecontext, oawebbean);
    Thanks !

  • How to do attachments in oaf page  and save

    Dear Friends
    I need to develop a  create page and in this i have to make a facility to user to attach their files .How to do this .Plz share any ideas.
    If know any standard  pages .plz share page paths.
    PLEASE HELP
    Thanks
    Aravinda

    Hi,
    Check below links:
    http://oraclearea51.com/premium-content/32-technical-articles/oaf-beginners-guide/288-adding-attachments-in-a-oaf-page.html
    http://apps2fusion.com/at/85-daxesh/516-oa-framework-attachment-region
    --Sushant

  • Using 'any pages' and 'right pages'

    I'm writing a book. I want to use right pages under section to automatically force the first page of a section to be odd paged. But when I use right page, then Pages inserts a page in front of the first page of that section and therefore the first page different does not work (it works of course but on the blank page). As a result I get headers where I do not want them.
    Any help there?
    Paul

    Hullo Paul:
    I assume you're using the blank template.
    Setting this up for a major project can involve some initial experimentation.
    With what you've done, try checking with view / show invisibles to see if you have inadvertently inserted a section or layout break ahead of your intended first page. The invisible markers are shown under "Keyboard Shortcuts" under the Help main menu. They could assist yourself or others to diagnose what has happened here.
    On the face of it, however, I am guessing that you may have "layout starts on new page" selected in the layout options of the layout inspector. Deselecting this, if so, might solve your problem. Otherwise, Pages will insert a break before what it is regarding as a new layout.
    Please try this, and report in a little more detail if this is not the case.
    Regards.

  • OAF - Pages and Regions - xml files migration

    Hi All,
    Can anybody explain me the answer to the following questions
    1) Why custom developed Page and Region Files should not exist under $JAVA_TOP ?
    2) Why Standard page and Region files exists under respective $XXXX_TOPs/mds  ... directory's

    Hi SushantSharma,
    We put custom page XML files under $JAVA_TOP/xx/oracle/apps/....
    Is it correct ?
    In my case
    Why some clients were following to store that XML Files as well as java, class into $CUST_TOP/XXXX/ .... as backups and
    importing the script is also done from this $CUST_TOP/XXXX/.../*PG.xml only for Page and Region files.
    and only class files were being stored in the $JAVA_TOP/....
    So there is no concept of storing page and region files under $JAVA_TOP/... is it correct ?

  • Upgrading from snow leopard to mountain lion will i have trouble using my Pages and Iphoto since it's not the latest version

    I am contemplating upgrading my OS from Snow Leopard to Mountain Lion.  Currently, I don't have ICloud available on my computer.  I also keep getting messages to upgrade my IPhoto to '11 version as well as Pages.  I know, I'm behind, but my theory is if it isn't broke don't mess with it.
    My concern is I don't want to lose my pictures and YES, I have backed up with Time Machine to an external hard drive.  (I just hope that's good enough).  IF I upgrade to start using ML OS, will I need to restore anything from my external hard drive or will I be able to start using computer as if nothing changed? 
    I know enough to be dangerous and I'm hesitant to upgrade for fear of losing everything.  Would appreciate help.  Thanks!

    Charmedgreen wrote:
    So it's alright to "skip" downloading the Lion version first?  I can go directly from Snow Leopard to Mountain Lion? 
    Correct, in fact, Lion is no longer directly available from the App Store.
    Also, do I need to "empty my trash"  before going forward?
    No need.
    Matt

  • I am using iPad pages, and figuring out how to create a table of content.

    Hello
    I am using pages on my iPad Air, and figuring out how to create a table of content? (TOC)
    Anyone can help me please?

    Based on what I have found, at this time, it appears that the only way to add a TOC or Bibliography to a Pages file is via Pages for MAC. Once that is done, you can automatically add entries in Pages for iOS. But you cannot initially add the element.
    It is not out of the question that there are some templates for Pages for iOS available that already have these added and available - but I cannot say first hand. All of the built in templates for iOS appear to be for short format documents and I have yet to find one that includes the TOC or Bibliography.

  • An out-landish use for Pages and iMovie ??

    Now this is just an idea and I thought I'd put it here to kick around a bit.
    If I were to create a single page document in Pages with just images (photos maybe even some digital sketches) and position them in a relatively artistic fashion so that it's not just a page with a stack of pics on it, would it be possible to then save that Pages document as something which I could then drop into iMovie like I do with any of my other photos and pics? Or perhaps use it in Keynote which I could then convert to a QT file?
    Or am I just thinking too out there?

    Hello Wytche,
    if you only want to have an image to use in other apps, there is a very easy way:
    1) Press the shortcut "cmdalt+shift4" to start the mouse-area-selection-screenshot.
    2) Hold the mouse button down where the left top corner of the image should be and drag the mouse to the right bottom corner you want to have for the image.
    3) Start Preview and press the shortcut "cmd+N" or choose the menu item "File/New From Clipboard".
    Now you have the image in Preview to save it as whatever file type you need. Of course you can use the shortcut "cmdshift4" to have an image saved directly to the Finder. Have a look in "System Preferences/Keyboard & Mouse" and there under the tab button "Keyboard-Shortcuts" to assign own shortcuts.
    Frank.

  • I use mymsn page and when upgrading to Firefox 4 the changes went away and I can not make changes to the stocks area or see my emails. How do I fix that?

    Mymsn has areas that allow you to list your stocks and also an area that allows you to see what emails you have waiting to be read. Both of these areas went away when I upgraded to Firefox 4 last week. When clicking on the menu area to make changes, nothing happens. How do I get back the information that was in these areas? Also the customize button does not work.

    Do you have Adblock Plus installed? If you do, disable on the page where you normally see your stock info. I've uploaded an image of what happens on another site where ABP is enabled. The Global News image disappears with ABP enabled even though it's not an ad.
    If that doesn't work, try running Firefox in [[Safe Mode]]. If it works correctly in that configuration, then one of your add-ons is the culprit.

  • Why does every system upgrade mean that every app. one has been using since you purchased the hardware is now defunct. I use preview, pages and iLife generally but I don't want to upgrade from the previously "wonderful"Maverick to Yosemite.

    Along with many others I am getting sick of upgrades being pushed at us continously.
    Just as you find all your data and the changes in layout, proceedure and process that have been made,
    along comes another system upgrade that means that previously accessible apps  have ceased to work
    UNLESS you take on the new system. I have been using Apple hardware for 30 years and the experience of
    the past 3 years have made me wish I hadn't put all my work and faith into what is now a very dubious tool.
    All this management speak of 'Community' and 'Support' is not backed up with any thing other than commercial
    trickery and planned obsolescence. Beware; when even your best friends decide they've had enough then your
    obscene profits and corporate gangsterism will soon disappear. Just ask Enron.

    Apple - Feedback
    They will not reply to your post.

Maybe you are looking for