Deploy the OAF Page in AppsR12


Hello

Please help how to deploy a page developed in Jdeveloper in Apps R12.

I have read many articles for the deployment of a page but was not clear, please help me how to deploy step by step and exact location on the linux server, where we can deploy.

Thank you

Anmisha.

Anmisha,

Basically, you need to copy all the files on the linux server, except the Page or the XMLs region.

For AM, EO, VO, it depends on what implementation all of the files with the .xml

.XML must settles in text mode.

You can either move the class files (must be compiled with the same version of java as the server) in binary mode or move the java files in text and compiling the server mode.

Page or xml in the region, you just need to import into the database.

I hope this helps.

See you soon

AJ

Tags: Oracle Applications

Similar Questions

  • My array is not having that columns every time I ran the OAF page in Jdev wife who wants mandatory columns how to override that columns?

    My array is not having that columns every time I ran the OAF page in Jdev wife who wants mandatory columns how to override that columns?

    That add columns to your table, it is necessary for the audit also. It is a preferred method of creating custom table. It will do no harm.

    If you want to continue to move forward with the recommended not method, take a look to follow the link.

    iWiDi - EO without columns that

    See you soon

    AJ

  • Use the OAF page and Workflow:

    Hello

    In a workflow, I have a region refered as OAF

    JSP:/OA_HTML/OA.jsp?page=/Oracle/Apps/AP/invoice/request/negotiation/WebUI/NotifPGRN & REFFACTURE = - & INVOICE_ID -.

    Now, instead of this region, I created a new area to satisfy my needs.

    Then, the region and import to the server.

    In the workflow, I changed the new name of the region.

    Now, when I run my page to the old area shows only. OAF page as I can't find the area to be called. But the region is available in the server.

    Please someone help me.

    Thanks in advance,
    Roselyne

    Roselyne,

    Bounce once on the server. It will solve your problem.

    Thank you
    Kumar

  • How read the error message displayed in the OAF page... its urguent very please

    Hi friends,

    In a stnd irec registration page, if the user selects a StartDate or EndDate field as a later date like January 2, 2019, his watch a validation error database as HR_ST_DT_INVAL_PEM in the page of the OFA. So I want to replace this error with a custom message such as, "Please enter a valid start date.
    Can someone please help this.its very urguent for me...
    I analyzed according to origin of this error message, I found that the CO page called AOS, AM his call to an API that makes this error message.

    Hi GA,.

    Error message could be popping up every time you naviate to a foeld to other similar to when field Instance of new element or when file validate.

    In this case, you can take this field say that your domain is enterOrg

    if (pageContext.getParameter("enterOrg") != null && "XX_ORG".equals(pageContext.getParameter("enterOrg")) {
              try
                 {
                        if ()
                           {
                                    throw new XXException("Your Check");
                           }
                     ..
                   ..
                     ..
                     ..
                 }
               catch(XXException re)
                                {
                                String errMsg;
                                MessageToken tokens[] = {new MessageToken("XX_TOKEN1", token1)
                                                        ,new MessageToken("XX_TOKEN2", token2)
                                                                    };
                                OAException errorMessage = new OAException("XXPA","YOUR_MEG_IN_FND",tokens,OAException.ERROR,null);
                                pageContext.putDialogMessage(errorMessage);
                                } 
    
    }
    

    Thank you
    JIT

  • How to export the OAF page jdr_utils.printdocument

    Hi all

    I use to export CheckoutSummaryPG page of MDS, below is my syntax, but I'm not able to see all the outputs as this page XML tags.

    I can see only the message as "PL/SQL Procedure successfully completed. I want this page xml in order to copy and save as xml file and then open it in JDeveloper.below is my code.

    DECLARE

    BEGIN

    jdr_utils. PrintDocument

    (p_document = > ' / oracle/apps/icx/por/req/webui/CheckoutSummaryPG ");

    END;

    Thank you.

    Thank you... Solved

  • Simultaneous application of the OAF page button

    I called concurrent demand in extended controller.

    In debugging instructions, the request_id was shown. But in the system with this request id there is no demand. I ran the page JDeveloper by ing ftp all the files on PC. How to find demand which was called from the page of the OFA.

    Thank you
    HP

    In debugging instructions, the request_id was shown. But in the system with this request id there is no demand. I ran the page JDeveloper by ing ftp all the files on PC. How to find demand which was called from the page of the OFA.

    call OADBTransaction.commit() //IF Not
    

    Thank you
    -Anil

  • error in the deployment of the OAF in R12.2.4 page

    Hi all

    I developed the oaf page and when I deploy the page it gives the error below. Kindly help. Do we need to apply a patch.

    Details of the exception.
    oracle.apps.fnd.framework.OAException: could not load application module 'xxmsc.oracle.apps.wsm.TLS.server.AssemblyLotAM '.

    As suggested by oracle, I use p19170592_R12_GENERIC this version of jDeveloper.

    In local jDeveloper, pages are working well.

    Kind regards

    Sangu

    Sangu,

    I mentioned the article you need to look at: "Section 1.6.3.5: deployment of OA framework Business Logic Extensions"

    See also the steps mentioned in the thread below

    Custom pages OAF does not not in the R 12.2.4 upgrade

    It will be useful.

    See you soon

    AJ

  • simultaneous oaf page program call

    hi................

    I need to call a simultaneous program with parameters of the oaf page...
    Can U suggest, how to do?
    Suggest me the sample code please...

    Hello

    Note the following method in your AMImpl.java

    public int submitCPRequest (String name) {}

    Try
    {
    OADBTransaction tx = (OADBTransaction) getDBTransaction ();
    java.sql.Connection pConncection = tx.getJdbcConnection ();
    ConcurrentRequest cr = new ConcurrentRequest (pConncection);
    cr.addLayout("XXEGA","XXEGA_IBR_BOM_EXPORT","en","US","EXCEL");

    String applnName = new String ("xxcus"); Application that contains the concurrent program
    String cpName = new String ("SUPPLIER_PRODUCT"); The simultaneous program name
    String cpDesc = new String ("this is a report that shows the details about the products supplied by the supplier"); simultaneous description of the program
    String time = new String("");
    Pass Arguments using the vector
    Here I added my headerId parameter to the vector and passed the vector to the concurrent program

    Vector cpArgs = new Vector();
    cpArgs.addElement (SupplierName);

    Call the simultaneous program
    requestId int = cr.submitRequest (applnName, cpName, cpDesc, null, false, cpArgs);
    TX.Commit ();

    return requestId;

    } catch (System.Exception e)
    {
    OAException oe = new OAException (e.getMessage ());
    oe.setApplicationModule (this);
    throw oe;

    }
    }
    Public Sub RefreshData()
    {
    ConcurrentProgramVOImpl vo = getConcurrentProgramVO1();
    vo.executeQuery ();
    }
    }

    call from controller

    Also please rate my answer.

    Kind regards
    Pitiot

  • Control the OFA page scrolling

    Hello

    In the OAF page, we have developed, when you click button SAVE to save the data, the screen is up i.e. that it scrolls automatically to the top of the page when save the ends of the event.

    There are also same thing when we click the button 'Add to the GRID' in a table that has multiple choice.

    Let me know if there is a way by which we can manage this problem and focus on the part of the page desired.

    Thanks in advance
    Saurabh

    test fire partial action instead of full submit.

    Prasanna-

  • OAF Page works only with the manuscript of java for the auto refresh

    Hi gurus,

    I have a problem with deployment of the page.

    I created a custom page and I have written a java script to make and auto refresh page.

    Please find the code I wrote to processRequest below

    OABodyBean rtBodyBean;

    rtBodyBean = pageContext.getRootWebBean ((OABodyBean));

    JavaS string = "javascript:setTimeout ('window.location.reload ()', 11000);

    / * This method is called to call java script function each time that for

    * refresh the page every 11 seconds * /.

    rtBodyBean .setOnLoad (javaS);

    When I run the page of Jdeveloper's get updated. but once I've deployed the page, and start it from the applications it is not refreshing.

    I tested the page of mozilla and it works fine but when I run IE it is not refreshing.

    Help, please

    Hi guys the problem is resolved.

    The problem was that I was using the old version of Jdeveloper which created oa_html with the older version files and the internet explore search the latest files from version of.js.

    and the code has been changed as below.

    Create a timer

    OABodyBean bodyBean = pageContext.getRootWebBean ((OABodyBean));

    JavaS string = 'JavaScript:setTimeout('window.location=window.location',11000);';

    bodyBean.setOnLoad (javaS);

    end timer

    OALinkBean linkBean;

    linkBean = (OALinkBean) webBean.findIndexedChildRecursive ("PayslipFile"); / * The ID of the column * /.

    BindValue OADataBoundValueViewObject;

    bindValue = new OADataBoundValueViewObject (linkBean, 'Url'); / * VO attribute * /.

    OALinkBean _temp = linkBean;

    / * - Required placeholder for the url column added by vo Extention *.

    linkBean.setAttributeValue (OALinkBean.DESTINATION_ATTR, bindValue);

    OAApplicationModule am;

    AM = pageContext.getApplicationModule (webBean);

    OAViewObject vo;

    VO = (OAViewObject) am.findViewObject ("ViewPayslipVO1");

    vo.clearCache ();

    vo.executeQuery ();

  • OAF Page expand to change the button action

    Hello

    We have a standard page of the OPS in iProcurement, where there are a standard change request button, which redirects to another standard page. We want to change the button action to call another custom OAF page. Please let me know how to do the same.

    Attached screenshot for reference

    Follow the steps below to create a button through customization.

    1. click on customize page where you want to create an element.

    2. find the area where you want to create

    3. click on Create icon, which opens a new window.

    4. Select the style of the item as button and give the values for the element.

    Browse link below

    Oracle concepts for you: Add a button to a Page of the OFA

    Also paste the error if you get none after following steps above.

    BR, FLS

  • R12.2.3 Custom OAF Page deployment Exception: could not load AM. Any idea?

    We are now R12.2.3 EBS and trying to deploy a developed previously 11i OFA custom to R12.2.3.

    We have followed the instructions to "Deploy a Custom Page" (Page 1539) Guide Release of Oracle Application Framework Developer 12.2.3 (Doc ID 1593765.1() and still get exception as follows:

    exception details:

    oracle.apps.fnd.framework.OAException: could not load application module 'ldc.oracle.apps.sla.calnet.xref.phone.server.PhoneAM '.

    Brief on the steps that we have done:

    1 update and run the project in the JDev IDE window (10.1.3.5 version OAExt for R12.2.3) successfully

    2 FTP windows < JDEV_USER_HOME > /myclasses/ < company > UNIX < JAVA_TOP > / < Company >

    3. copy PhonePG.xm < JDEV_USER_HOME > /myprojects/ < company > /... /WebUI/ to < APPL_TOP > / < product > /... /MDS/

    4 run the command of UNIX xml import and import completed successfully.

    Does anyone know what caused the exception will be the fix?

    Thank you

    Have you tried to bounce the server and the same control.

    All the steps in section 5.5 of the document Doc ID 1577661.1

  • urgent: Please tel me what is the procedure produection oaf page-move.

    Hi all

    I developed an OAF page.that page move into production.
    I already go to produection but its does not work very well.
    its throwing an error.

    Please tell me what is the follow-up of the steps when going to production.


    oracle.apps.fnd.framework.OAException: Application: DNF, Message name: FND_NO_REGION_DATA. Chips: BOUNDING is/wnsgs/oracle/apps/ap/agingbuckets/webui/AgingBucketsPG;.
    at oracle.apps.fnd.framework.webui.JRAD2AKMapper.getRootMElement(JRAD2AKMapper.java:529)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getWebBeanTypeDataFromJRAD(OAWebBeanFactoryImpl.java:3719)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getRootApplicationModuleClass(OAWebBeanFactoryImpl.java:3452)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1005)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:508)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:429)
    to _html._OA._jspService(_OA.java:85) oa
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
    at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
    to _html._RF._jspService(_RF.java:102) oa
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
    at org.apache.jserv.JServConnection.run(JServConnection.java:294)
    at java.lang.Thread.run(Thread.java:534)
    # # 0 in detail

    Exception:
    oracle.adf.mds.MetadataDefException: unable to find the component with an absolute reference = / wnsgs/oracle/apps/ap/agingbuckets/webui/AgingBucketsPG, XML Path = null. Please check that the reference is valid and the definition of the component on the file system or in the MDS repository.
    at oracle.adf.mds.internal.MetadataManagerBase.findElement(MetadataManagerBase.java:1350)
    at oracle.adf.mds.MElement.findElement(MElement.java:97)
    at oracle.apps.fnd.framework.webui.JRAD2AKMapper.getRootMElement(JRAD2AKMapper.java:503)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getWebBeanTypeDataFromJRAD(OAWebBeanFactoryImpl.java:3719)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getRootApplicationModuleClass(OAWebBeanFactoryImpl.java:3452)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1005)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:508)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:429)
    to _html._OA._jspService(_OA.java:85) oa
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
    at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
    to _html._RF._jspService(_RF.java:102) oa
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
    at org.apache.jserv.JServConnection.run(JServConnection.java:294)
    at java.lang.Thread.run(Thread.java:534)


    Exception:
    oracle.adf.mds.MetadataDefException: unable to find the component with an absolute reference = / wnsgs/oracle/apps/ap/agingbuckets/webui/AgingBucketsPG, XML Path = null. Please check that the reference is valid and the definition of the component on the file system or in the MDS repository.
    at oracle.adf.mds.internal.MetadataManagerBase.findElement(MetadataManagerBase.java:1350)
    at oracle.adf.mds.MElement.findElement(MElement.java:97)
    at oracle.apps.fnd.framework.webui.JRAD2AKMapper.getRootMElement(JRAD2AKMapper.java:503)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getWebBeanTypeDataFromJRAD(OAWebBeanFactoryImpl.java:3719)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getRootApplicationModuleClass(OAWebBeanFactoryImpl.java:3452)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1005)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:508)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:429)
    to _html._OA._jspService(_OA.java:85) oa
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
    at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
    to _html._RF._jspService(_RF.java:102) oa
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
    at org.apache.jserv.JServConnection.run(JServConnection.java:294)
    at java.lang.Thread.run(Thread.java:534)






    Thank you
    Sandrine.

    Published by: its urgent 8 February 2012 02:31

    Hello

    Drop the file (xml) definition under APPL_TOP
    and matching class Controller under JAVA_TOP

    Then use the below imoprt stmt

    Java applications oracle.jrad.tools.xml.importer.XMLImporter $APPL_TOP/cust/pos/12.0.0/mds/changeorder/webui/cuatpage1.xml - username username-password apps - dbconnection "(description = (address_list = (address = (protocol = TCP) (host =)(port=))) (connect_data = (sid =)))" rootdir - rootPackage - rootdir-rootPackage

  • The LOV OAF page does not pop up in applications, but no question in tool JDEV

    Hello
    I am faced with this strange problem.
    I developed a Page of the OAF who LOV attached to 5 fields on the page.
    Pop ups LOV when executing the JDEV tool page.
    But when the saved page to Oracle Apps. The LOV is not poping up for all fields.
    Then click on the flash light symbol in LOV access page, I get the error "error on page".

    Please help solve the problem.

    Concerning
    Krishnan

    {forum: id = 210} is where you want to be.

  • Call a page of the OAF of Oracle Forms

    Hello

    Is it possible to call a page of the OAF of Oracle Forms.

    Thanks in advance,
    Roselyne

    Hi Flo,

    Read Pages Executive Dev Guide to launch OA of Oracle Forms Applications.

    Thank you
    -Anil

Maybe you are looking for