Iexpense Page in OAF

Hi all,
While creating a Expense Report in "Create Expense Report: Cash and Other Expenses ",after filling the details in in lines like
Date,Receipt Amount,Exchange Rate,Expense Type,Justification and required fields in Details when i press the next button i am getting a error
Line 1 Error - Attribute ReportLineId in WebExpensesAM.CashAndOtherLinesVO is required
I am filling all the required fields but still getting this error.
Why i am getting this error??
Regards,
Debadutta Das

Hi ,
Clearly customization is causing the problem , can you tell us from where the value for ReportLineID is getting populated .
Is it coming from sequence or User enterable ?
--Keerthi                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • Is it possible to launch a form from an OAF page using OAF Personalization

    In R11, the Customer Standard form ARXCUDCI was customized to call a custom block from the Address screen. In R12 the customer standard form has become an OAF page. We have decided to create a custom form for the custom block using Oracle Developer. However we need a mechanism to call this custom form from the Customer Standard OAF page.
    My query is if it is possible to call a custom form from an OAF page using OAF personalization only (i.e. without directly customizing the code of the OAF page)
    Thanks
    Sanjay

    Dear Apurba,
    I have made some progress.
    I have open the Customers OAF Page, queried a customer, selected a site and opened it.
    Then chose Personalize "Account Site Address"
    There I added a Button on the Header Address level
    ID=XXTVL_LASSY_BUTTON
    Populated the Additional Text and Prompt properties.
    Also set Destination URI=form:SYSADMIN:SYSTEM_ADMINISTRATOR:STANDARD:FND_FNDMNMNU.
    The button is now showing in the address page, and when I click on it it opens the seeded Menu form.
    I now have to create the custom form and set Destination URI to the Custom Form.
    I am also aware how to add parameters to Destination URI.
    But could you let me know how to read the value from a OAF page form field and reference it in Destination URI.
    I need the value of PARTY_SITE_ID of the Address OAF page.
    Alternatively, the Site Number is displayed on the OAF page. If I can read it that will also do. I can use the Site Number in the custom form rather than PARTY_SITE_ID
    Thanks
    Sanjay

  • Is there a way to preview the dissing of the pages on OAF without deployment ??

    Is there a way to preview the dissing of the pages on OAF without deployment ??
    Hi to all,
    I´m recently  working with OAF and the main server are in Argetina, so when I try to make a deploy  to check the development it takes a lot of time. Is there a way to make a preview of the pages (Something like the visual designer of netbeans )
    thanks to all

    Run the page from your JDeveloper locally using the DBC file. I assume you are developing the pages using JDeveloper, so you should be able to run the page.
    Thanks
    Shree

  • How to call a jsp page from oaf and run in jDeveloper

    Hi all,
    I created sample jsp and then tried.
    String temp = "sample.jsp?";
    pageContext.setForwardURL(temp,
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    null,
    true,
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES,
    OAWebBeanConstants.IGNORE_MESSAGES);
    It worked.
    But when i tried with one of the custom page that i downloaded from server it is giving error.
    But now i need to call that page.
    Its Code is given on below link:
    Re: how to call a jsp page from oaf
    Please help me to do this.
    Thanks in advance.
    Regards,
    Raj

    Raj,
    1. Hope you have placed the custom jsp page (which you have downloaded from server) under "jdevhome\jdev\myhtml\OA_HTML" directory ?
    2. Try to run the custom jsp page from Jdeveloper directly and check whether its working properly or not ?
    (i.e. add jsp page to any project in Jdeveloper then right click on jsp page and select Run xxx.jsp)
    3. If page errors out then custom jsp page seems require few parameters to run it successfully. Pass all requied parameters and test.
    4. There is no problem in the way you are calling jsp page from OAF page.
    regards,
    Anand

  • Default value in LOV field in Create and Update page in OAF

    Hi All,
    I am unable to default LOV field in Create and Update page in OAF.
    I tried in below way :
    OAMessageLovInputBean lovBean1 = (OAMessageLovInputBean)webBean.findChildRecursive("AAA");
    But I am getting developer mode exception, so please guide me how i can set the default value for create and update page instead of using code in process request method in controller.
    Thanks

    Hi,
    1) In case of create, you can default the value either in EOImpl or in AM while initializing the row:
    //in EOImpl
    public void create(AttributeList attributeList)
    super.create(attributeList);
    setXXAttribute(<value>);
    //in AM, VO new row initialization :-
    VOImpl VO = getVO1();
    VO.setMaxFetchSize(0);
    VORowImpl row = (VORowImpl)VO.createRow();
    row.setXXAttribute(<value>);
    VO.insertRow(row);
    row.setNewRowState(Row.STATUS_INITIALIZED);
    2) In case of update, execute the VO (also set the where clause if required) in PR method of update page.
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to create  Printable page in OAF using Jdev10g

    Hi,
    I tried to create a printable page in OAF using the following steps given in devguide of OAF
    Step 1: Add a page-level button as described in the Buttons (Action/Navigation) document.
    Step 2: Assuming your button label is the standard "Printable Page," apply the OA Framework attribute set /oracle/apps/fnd/attributesets/Buttons/PrintablePage.
    Step 3: Set the button's Destination URI property to point to the current page and set the UIX facet parameter (OARF) to printable as shown in the following example (See Controlling UIX Rendering Output for additional information about facets). Remember to retain your application module.
    OA.jsp_?page=<CURRENT_PAGE>&retainAM=Y&OARF=printable_
    *my current page path is *_
    OA.jsp?page=abhi.oracle.apps.ak.employee.webui.AdbPG&retainAM=Y&OARF=printable_
    Note: Earlier versions of OA Framework recommended giving the printable page submit button the ID IcxPrintablePageButton. OA Framework detects this ID and behaves appropriately when the user presses the button. Although this still works, new code leverages the facets approach instead.
    Step 4: Set the button's Target Frame property to _blank to ensure that the printable page opens in a new window.
    but after doing this i am getting below exception.
    Exception Details._
    oracle.apps.fnd.framework.OAException: The application id or shortname () you entered does not exist._
    i am new to OAF..
    can anybody guide me , how this exception can be corrected?

    Hi,
    sorry, wrong forum. This is all about Oracle JDeveloper. OAF related questions are handled on the OAF forum
    Frank

  • Help needed to create a master-detail JSP page using OAF.

    I like to create a master-detail JSP page using OAF. If any help or guide will be appreciate.
    - Kausik

    A Master Detail Page is a basically a game between two VOs(Master and Detail mostly connected through a View Link). You can also have a look at the View Link section in the Dev guide. Page Layouts is one thing which you can take a call yourself.
    Regards
    Sumit

  • Error running seeded iExpense Page

    Hi,
    I am trying to run an iExpense page from Jdeveloper, but get the below error:
    (This developer mode error is thrown instead of being registered due to the lack of the page context object.) The OA passivation framework coding standard has been violated. Web bean properties cannot be modified in the controller processFormData or processFormRequest method. Web bean properties should be modified in the processRequest method only. An attempt to modify a web bean has been made in the following call stack: java.lang.Throwable at oracle.apps.fnd.framework.OACommonUtils.getCallStack(OACommonUtils.java:784) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.setAttributeValue(OAWebBeanHelper.java:1778) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.setAttributeValue(OAWebBeanHelper.java:1809) at oracle.apps.fnd.framework.webui.beans.table.OAColumnBean.setAttributeValue(OAColumnBean.java:208) at oracle.cabo.ui.BaseMutableUINode.setRendered(Unknown Source) at oracle.cabo.ui.beans.BaseWebBean.setRendered(Unknown Source) at oracle.apps.ap.oie.entry.accounting.webui.ExpenseAllocationsTblCO.renderErrorColumn(ExpenseAllocationsTblCO.java:184) at oracle.apps.ap.oie.entry.accounting.webui.ExpenseAllocationsPageCO.validateExpenseAllocations(ExpenseAllocationsPageCO.java:165) at oracle.apps.ap.oie.entry.accounting.webui.ExpenseAllocationsPageCO.processFormRequest(ExpenseAllocationsPageCO.java:114) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:804) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363) at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1000) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:966) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:821) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363) at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1000) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:966) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:821) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363) at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1156) at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1000) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:966) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:821) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363) at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1000) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:966) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:821) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363) at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:363) at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2658) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1665) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:502) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:423) at OA.jspService(OA.jsp:40) at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106) at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803) at java.lang.Thread.run(Thread.java:534)
    I downloaded all the pages under $AP_TOP/mds and all the classes from $JAVA_TOP/oracle/apps/ap , $JAVA_TOP/oracle/apps/fun
    I run HOMEPG and try to "Create an Expense Report". I reach upto step 3 (ExpenseAllocationsPG), but when i select "Next", I get the above error.
    Any pointers? I have NOT changed anything yet.
    Thanks
    Ashish

    Method renderErrorColumn looks fine as it is just modifying the render property which is allowed both in processRequest and processFormRequest .
    See whether renderErrorColumn is getting called from processRequest or processFormRequest ?
    Also check the complete code flow from the stack
    oracle.apps.ap.oie.entry.accounting.webui.ExpenseAllocationsTblCO.renderErrorColumn(ExpenseAllocationsTblCO.java:184) at oracle.apps.ap.oie.entry.accounting.webui.ExpenseAllocationsPageCO.validateExpenseAllocations(ExpenseAllocationsPageCO.java:165) at oracle.apps.ap.oie.entry.accounting.webui.ExpenseAllocationsPageCO.processFormRequest(ExpenseAllocationsPageCO.java:114) at
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Embedding ADF page in OAF

    Hi,
    We have a requirement where we have to call ADF page as a region in OAF page.
    We are able to deploy ADF application on Web logic server and call them as a standalone application in OAF using "Function and Menu".
    Also, I understand that ADF and OAF interaction back and forth is not possible. ATG seems to be working on this for handling session management.
    However, I need to understand if there is any mechanism by which ADF pages can be embedded in OAF page as a region and work as a region in Oracle Ebiz Suite OAF pages?
    It seems that OAF Rich Interface allows embedding ADF pages in OAF.
    Appreciate some guidance on this.

    Hi YJ,
    Yes, we (ATG) are still working on session management between OA Framework and Oracle ADF, as well as other features of the Oracle E-Business Suite SDK for Java. Stay tuned for an announcement on Steven Chan's blog at https://blogs.oracle.com/stevenChan when that becomes available. My Oracle Support Note 974949.1 will be updated with further information at that time.
    Embedding an Oracle ADF region in an OA Framework page requires, at a minimum, that you create an EBS function security function for your ADF page and add a richContainer item to your OA Framework page that calls the function. You may need session management features depending on what you are trying to do with it. We haven't worked out all the nuances yet for more specific guidelines, sorry.
    Thanks,
    Sara
    (PS--I posted this in the OA Framework forum too)

  • Make attachment mandatory in IExpense page by using workflow

    Hi All,
    I have one requirement in which need to make attachment mandatory in IExpense page.
    how do I achieve that. Which process or function,packge do I need to modify to complete the requirement.
    Please Guide.
    Thanks,
    Priyanka

    Hi,
    Take the help of ABPer to get solution for your requirement.  before posting PR try to check document is attached or not with BADI "ME_REQ_POSTED".
    May be this will help you...
    Thanks...

  • How to deploy a custom page using OAF

    Hi,
    I need to deploy a custom page using OAF
    can anyone suggest me
    Thanks in Advance

    Hi,
    you could try posting on the OA Framework forums:
    OA Framework
    Deployment is covered in the Oracle Application Framework Developer’s Guide Release 11.5.10 RUP4 which can be found on Metalink. See note 269138.1 which is the full PDF
    Brenden

  • Table name for the iexpense page

    Hi,
    I am trying to find the database table name for per-diem policy schedules data, in iexpense application.
    Is there a way to find the table name for these OA pages? Pl. let know.
    any suggestions will be helpful.
    Thanks
    Ram B.

    Hi,
    user560519 wrote:
    Is there a way to find the table name for these OA pages? Pl. let know. ---Open OAF page,left side bottom of the page u will see AboutThisPgae_ link.
    ---If it is not appear set profile FND:Diagnostics% to Yes
    ---Click on AboutThisPage u will se all components of the page.
    ---Search for vo and click on that u will get query or table of the page.
    Regards
    Meher Irk
    Edited by: Meher Irk on Nov 17, 2010 11:20 AM

  • How to add a new  search criteria in Advance Search Page in OAF

    HI,
    In my application (R12) we can access customer related information from 2 places (2 different responsibilities as mentioned below), both are OAF pages.
    1. AX receivables
    2. Sales online
    From both the responsibilities we can perform search for customer related information as well (Simple as well as Advance Search).
    But Advance Search screen from 'Sales online' allows user to perform search, based on few additional fields as well such as 'Classification' (it's an lov based field).
    Now, User is asking to add that field on search page of AX receivables as well.
    So, how to add one more field (as search criteria), on an standard 'Customer' screen?
    Additional Info :
    1. LOV is based on HzPuiClassificationFilterVO
    2. And this VO is available on both pages. (oracle.apps.ar.hz.components.search.server.HzPuiClassificationFilterVO)
    So can we achieve this by Personalization only ? if yes plz share the steps as well.
    Regards,
    Adi

    Yes. It is possible through personalization.
    1. Create a criteria row under Advance Search
    2. Create a Result Item under advance table columns
    3. Create a Query Criteria Map based on the criteria and result item above.
    Please note the newly added criteria field should be in the Searchresults VO attributes list.
    Otherwise you need to extend the VO as well.
    Hope this helps.
    Regards,
    -Mukesh.

  • Error page while running sample page in OAF

    Hi i'm using new R12 instance, i started to create OAF page , at first i started with sample page. When i was compiled , no errors came. But in run time i got the following error:
    "Error Page
    You have encountered an unexpected error. Please contact the System Administrator for assistance"
    Please tell me what i have to do to solve this error.

    Enable profile option : FND : Diagnostics to get the error details.
    http://oracleanil.blogspot.com/2009/04/itemrn.html
    Thanks
    --Anil
    http://oracleanil.blogspot.com

  • How to implement the selfsecured page in oaf

    hi
    any one having knowledge how to implement the selfsecured OAF page documents
    can you please send me [email protected]
    Regards
    Chandra

    Use the search facility on the forum. Did you read the dev guide?
    --Shiv                                                                                                                                                                                       

Maybe you are looking for

  • Several inbound interfaces in intagrated configuration

    Hi all, I want to use an intagrated cnfiguration object for scenario with several inbound interfaces on a receiver side. As for now, I have a usual condition-based interface determination for my receiver system. I've studied all features of "Revceive

  • ITunes 10.5 Ruins Apple Experience

    I have not been using Apple products for very long, (approximately 2 years) but I think I know enough of the actual experience consumers are supposed to receive and the problem with iTunes 10.5 is NOT one of them.  I bought my first Apple iPod Touch

  • BootCamp & Partition Magikc

    I used bootcamp to create Winxp partition and was able to install windows xp successfully on the first time. Now, I found out that MacOS can see Window partition but could not modified the files becuase it is NTFS format. So, I called up Apple Suppor

  • AirPort Extreme Drivers for Windows XP???

    This may be a very silly question, but I've got a new Mac Pro that will be arriving in two days and I couldn't help but wonder, "How will the AirPort Extreme WiFi card be able to connect to the Internet when I'm running Windows XP from a separate har

  • HT1688 In app purchase failed and says to contact itoons.

    The dark sommuner app keeps saying purchase failed and to contact Itoons. I can make purchases from other apps just not that one. What's wrong?