Need suggestion on Develop the Hierarchical Structure OAF page--priority

Hi experts,
i need to develop the hierarchical structure of OAF page, for this devlopment i need suggestions from you side.
please find below diagram how to develop the OAF page.
CEO
|
vice president vice president
| |
managers managers managers managers
| | | |
developer develoer developer developer developer
Like that i need to develop the OAF page please give me some inputs. Is it feasible in OAF.

CEO
|
vicepresident vicepresident
|
manager manager manager manager manager
| | | | |
develper developer developer developer

Similar Messages

  • Is there any way to specify a URL in the servlet-mapping that doesn't need to be in the directory structure?

              I migrated from WebLogic 5.1 to 7.0.2 Something I used to have set-up in 5.1 no
              longer
              works.
              I am using the weblogic.servlet.FileServlet and have the URL "/cxedocs/" mapped
              to this
              servlet. So whenever the URL http://localhost:7001/cxedocs/en_US/index.html
              is used it would use the docHome associated with the /cxedocs/ URL and then append
              the "en_US/index.html" on to it. So let's say d:\temp\en_US\index.html
              But now for WL 7.0.2 it appears that the URL also needs to be in the directory
              structure.
              So it now takes the docHome "d:\temp" adds the URL "/cxedocs/" and then appends
              the
              rest - so d:\temp\cxedocs\en_US\index.html.
              I can't require that the "cxedocs" directory be there. Is there anyway to map
              a certain URL
              without requiring it in the directory structure. I looked at virtual directory
              mapping too but
              it still seemed to require this.
              Any help would be appreciated!
              Thanks!
              -Lori
              

              I opened up a case with support on this. After some research they came back with
              that
              NO there is no way to do this. In 6.0 it was changed to follow the spec which
              restricts this.
              The URL must be part of the directory path.
              -Lori
              "Lori Ronning" <[email protected]> wrote:
              >
              >I migrated from WebLogic 5.1 to 7.0.2 Something I used to have set-up
              >in 5.1 no
              >longer
              >works.
              >
              >I am using the weblogic.servlet.FileServlet and have the URL "/cxedocs/"
              >mapped
              >to this
              >servlet. So whenever the URL http://localhost:7001/cxedocs/en_US/index.html
              >is used it would use the docHome associated with the /cxedocs/ URL and
              >then append
              >the "en_US/index.html" on to it. So let's say d:\temp\en_US\index.html
              >
              >But now for WL 7.0.2 it appears that the URL also needs to be in the
              >directory
              >structure.
              >So it now takes the docHome "d:\temp" adds the URL "/cxedocs/" and then
              >appends
              >the
              >rest - so d:\temp\cxedocs\en_US\index.html.
              >
              >I can't require that the "cxedocs" directory be there. Is there anyway
              >to map
              >a certain URL
              >without requiring it in the directory structure. I looked at virtual
              >directory
              >mapping too but
              >it still seemed to require this.
              >Any help would be appreciated!
              >Thanks!
              >-Lori
              

  • How can I export my Firefox bookmarks (and the hierarchical structure of folders) to the Scrapbook Add-On?

    I'm trying to replicate the hierarchical structure of my Firefox bookmarks in Scrapbook and save the webpages automatically. Is that possible in an automatic (or easy) way?
    Many thanks

    I'm not sure how Scrapbook works, but if you open a web page, can it automatically capture all the linked pages? If so, try this:
    (1) Export your bookmarks to an HTML file, and save it in a convenient locaiton (e.g., desktop). This article has the steps: [[Export Firefox bookmarks to an HTML file to back up or transfer bookmarks]].
    (2) Open the file you just created in Firefox. You could double-click the file, or use Open from the menu, or drag and drop it on an open tab.
    Will Scrapbook work with that?

  • How to capture PLSQL package error and show the same in OAF Page.?

    Hi all,
    I am having the requirement to capture the error from a PL/SQL package and show the error in OAF page with meaning full error.
    Assume i am having the create and review page.
    The create page having the employeeLOV input field (non mandatory field).
    (i have the package which will check whether this LOV value is filled or not.. if not given then the user should be able to see a "understandable message.)
    to achieve the above scenario am following the below steps
    In my CO,
    with in try catch i called the am method which will invoke the XX_CUSTOM_PKG.
    so, from the catch it is giving me the message as shown below.
    try
    ((OAApplicationModule)localObject1).invokeMethod("insertData", personParam);--which will call the am method which in turn call the package.
    catch(Exception exception)
    throw new OAException("Review Error: "+ exception);
    Assume there are 2 possiblity of error inside this package one for Date field and another one for Employee field. we don't know which validation the user will encounter.
    For Employee field validation it is giving messag as below
    Review Error: oracle.apps.fnd.framework.OAException: Exception in insertData:java.sql.SQLException: ORA-20500: Employee field is required. ORA-06512: at "APPS.CUSTOM_UTIL_PKG", line 702 ORA-06512: at line 1
    for Date field as below.
    Review Error: oracle.apps.fnd.framework.OAException: Exception in insertData:java.sql.SQLException: ORA-20500: Date field should always greater than sysdate. ORA-06512: at "APPS.CUSTOM_UTIL_PKG", line 702 ORA-06512: at line 1
    But i need to display only the message "Employee field is required" or "Date field should always greater than sysdate" in the screen.. as information.
    Could you please help me to achive the above message? any sample code will be great help for me.
    Thanks,
    Thiru.
    Edited by: thiru_apps on Mar 13, 2012 11:13 AM

    try
    ((OAApplicationModule)localObject1).invokeMethod("insertData", personParam);--which will call the am method which in turn call the package.
    catch(Exception exception)
    //throw new OAException("Review Error: "+ exception);
    /*Try this code*/
    String exception = null;
    exception = exception.toString();
    if(exception.contains("Employee")){
    throw new OAException("Employee field is required");
    else if(exception.contains("Date")){
    throw new OAException("Date field should always greater than sysdate");
    else
    throw new OAException(exception.toString());
    I hope this might help
    Niranjana

  • How to enable the DFF in OAF page(where Dff is based on the custom table).

    Hi Experts!!
    I am in the process of enabling the dff in OAF page. I am not able to enable the dff if am using the Custom table.
    Ex:
    Assume that my DFF XX_DFF is using the custom table XX_TABLE of att1,att2..
    I am able to enable the dff in OAF page but not able to make those values entered to get stored in the custom table.
    I need helping hands to help me out to get the entered dff values stored in my custom table.
    Kindly provide me the steps so that I can follow up..
    Best wishes,
    Thiru.

    Hi,
    thiru_apps wrote:
    I need to store the captured values of Dff(which was enabled in the seeded page based on the custom table XX_Table) and the same needs to be stored into the custom table xx_Table.
    Basically the entered values for the DFF enabled should have to be get stored in the XX_TABLE(Custom TAble).As per my understands in Standard page u want create some extra fields and those should be save in custom table...is it ...
    For that u r going create stack layout region in standard page via personalization and extend with custom region.
    IF im geting u correctly u need to write code in co and am.
    ---U had already created the components eo vo AM co...
    ---For the custom region in Jdev do the mapping of viewInstacne and view attribute properties for the fields.
    ---In AM:
    public void CreateVo(OAPageContext pageContext, OAWebBean webBean)
    Row hrow;
    OADBTransaction tr=getOADBTransaction();
    EOVOImpl vo=getEOVO1();
    if(!vo.isPreparedForExecution())
    vo. executeQuery();
    hrow=vo.createRow();
    vo.insertRow(hrow);
    hrow.setNewRowState(Row.STATUS_INITIALIZED);
    public void savetr()
    OADBTransaction tr=getOADBTransaction();
    tr.commit();
    In Co ProcessREq:
    AMImpl AM=(AMImpl)pageContext.getApplicationModule(webBean);
    AM.CreateVo(pageContext, webBean);
    In Co ProcessFormREq:
    ---GEt the event of the save button of the standard page
    if(pageContext.getParameter("save")!= null)---DI of the standard page
    AM.savetr(pageContext, webBean);
    Regards
    Meher Irk

  • How can we export the data from OAF Page to Excel instead of .csv or .txt

    Hello,
    How can we export the data from OAF Page to Excel instead of .csv or .txt
    When i click on the export button it is exporting to txt file, But i need to export the data into Excel by default
    Please help me
    Thanks in advance
    Thanks,
    Raju
    We have changed the below profile option to get the data in excel by default
    Profile Name Export MIME type
    Profile Code FND_EXPORT_MIME_TYPE+
    Existing Value: text/tab-separated-values+
    Change as: Excel
    Thank you,
    Raju
    Edited by: 1006649 on May 21, 2013 10:55 AM

    We have changed the below profile option to get the data in excel by default
    Profile Name Export MIME type
    Profile Code FND_EXPORT_MIME_TYPE+
    Existing Value: text/tab-separated-values+
    Change as: Excel
    Thank you,
    Raju

  • R12 CLASSPATH to compile the 11i custom OAF pages in R12

    Hi,
    Can you please let us know how to compile the 11i custom OAF pages in R12 in Unix Box.
    We copied the 11i custom OAF pages to R12 and when we try to compile the java files all are erroring out. How can we compile these classes.
    Thanks,
    HC

    Hi Anoop,
    Thanks for responding. Please find the error messages below.
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    public void setupHeaderAndItemsRgn(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:770: cannot find symbol
    symbol : class OAPageContext
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    public void setupHeadercustributesTable(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:770: cannot find symbol
    symbol : class OAWebBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    public void setupHeadercustributesTable(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:823: cannot find symbol
    symbol : class OAPageContext
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:823: cannot find symbol
    symbol : class OAWebBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:1499: cannot find symbol
    symbol : class OAPageContext
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    public void processFormData(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:1499: cannot find symbol
    symbol : class OAWebBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    public void processFormData(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:1513: cannot find symbol
    symbol : class OAPageContext
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    public void processFormRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:1513: cannot find symbol
    symbol : class OAWebBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    public void processFormRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:2022: cannot find symbol
    symbol : class OAPageContext
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    private void setupContractTeams(OAPageContext oapagecontext, OAWebBean oawebbean, BidHeaderVORow bidheadervorow)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:2022: cannot find symbol
    symbol : class OAWebBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    private void setupContractTeams(OAPageContext oapagecontext, OAWebBean oawebbean, BidHeaderVORow bidheadervorow)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:2022: cannot find symbol
    symbol : class BidHeaderVORow
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    private void setupContractTeams(OAPageContext oapagecontext, OAWebBean oawebbean, BidHeaderVORow bidheadervorow)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:2078: cannot find symbol
    symbol : class OAPageContext
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    private void setupSiteAddressBean(OAPageContext oapagecontext, OAWebBean oawebbean, Number number, Number number1, Number number2)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:2078: cannot find symbol
    symbol : class OAWebBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    private void setupSiteAddressBean(OAPageContext oapagecontext, OAWebBean oawebbean, Number number, Number number1, Number number2)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:2211: cannot find symbol
    symbol : class OAPageContext
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    private void removeSessionValues(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:2211: cannot find symbol
    symbol : class OAWebBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    private void removeSessionValues(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:2218: cannot find symbol
    symbol : class OAPageContext
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    private void putSessionValues(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:2218: cannot find symbol
    symbol : class OAWebBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    private void putSessionValues(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:54: cannot find symbol
    symbol : variable VersionInfo
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    public static final boolean RCS_ID_RECORDED = VersionInfo.recordClassVersion("$Header: ResponsePageLevelCO.java 115.138.11510.27 2006/04/25 22:08:10 snatu shi" +
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:60: cannot find symbol
    symbol : class OAApplicationModule
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    OAApplicationModule oaapplicationmodule = oapagecontext.getApplicationModule(oawebbean);
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:61: cannot find symbol
    symbol : class OAViewObject
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    OAViewObject oaviewobject = (OAViewObject)oaapplicationmodule.findViewObject("BidItemsVO");
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:61: cannot find symbol
    symbol : class OAViewObject
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    OAViewObject oaviewobject = (OAViewObject)oaapplicationmodule.findViewObject("BidItemsVO");
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:62: cannot find symbol
    symbol : class OAViewRowImpl
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    OAViewRowImpl oaviewrowimpl = (OAViewRowImpl)oaviewobject.getCurrentRow();
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:62: cannot find symbol
    symbol : class OAViewRowImpl
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    OAViewRowImpl oaviewrowimpl = (OAViewRowImpl)oaviewobject.getCurrentRow();
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:71: cannot find symbol
    symbol : class OAPageLayoutBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    OAPageLayoutBean oapagelayoutbean = oapagecontext.getPageLayoutBean();
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:72: cannot find symbol
    symbol : class ResponseAM
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    ResponseAM responseam = (ResponseAM)oapagecontext.getApplicationModule(oawebbean);
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:72: cannot find symbol
    symbol : class ResponseAM
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    ResponseAM responseam = (ResponseAM)oapagecontext.getApplicationModule(oawebbean);
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:73: cannot find symbol
    symbol : class BidHeaderVO
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    BidHeaderVO bidheadervo = (BidHeaderVO)responseam.findViewObject("BidHeaderVO");
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:73: cannot find symbol
    symbol : class BidHeaderVO
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    BidHeaderVO bidheadervo = (BidHeaderVO)responseam.findViewObject("BidHeaderVO");
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:74: cannot find symbol
    symbol : class BidHeaderVORow
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    BidHeaderVORow bidheadervorow = (BidHeaderVORow)bidheadervo.first();
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:74: cannot find symbol
    symbol : class BidHeaderVORow
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    BidHeaderVORow bidheadervorow = (BidHeaderVORow)bidheadervo.first();
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:76: cannot find symbol
    symbol : class MessageToken
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    MessageToken amessagetoken[] = {
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:77: cannot find symbol
    symbol : class MessageToken
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    new MessageToken("AUCTIONID", bidheadervorow.getAuctionDisplayNumber().toString()), new MessageToken("BIDNUMBER", bidheadervorow.getBidNumber().toString())
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:77: cannot find symbol
    symbol : class MessageToken
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    new MessageToken("AUCTIONID", bidheadervorow.getAuctionDisplayNumber().toString()), new MessageToken("BIDNUMBER", bidheadervorow.getBidNumber().toString())
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:79: cannot find symbol
    symbol : variable SourcingUtil
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    s = SourcingUtil.getMessage(oapagecontext, oawebbean, "PON_CRT_RESP_TITLE", amessagetoken, bidheadervorow.getDoctypeId().intValue());
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:87: cannot find symbol
    symbol : class ResponseAM
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    ResponseAM responseam = (ResponseAM)oapagecontext.getApplicationModule(oawebbean);
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:87: cannot find symbol
    symbol : class ResponseAM
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    ResponseAM responseam = (ResponseAM)oapagecontext.getApplicationModule(oawebbean);
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:88: cannot find symbol
    symbol : class BidHeaderVO
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    BidHeaderVO bidheadervo = (BidHeaderVO)responseam.findViewObject("BidHeaderVO");
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:88: cannot find symbol
    symbol : class BidHeaderVO
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    BidHeaderVO bidheadervo = (BidHeaderVO)responseam.findViewObject("BidHeaderVO");
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:89: cannot find symbol
    symbol : class BidHeaderVORow
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    BidHeaderVORow bidheadervorow = (BidHeaderVORow)bidheadervo.getCurrentRow();
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:89: cannot find symbol
    symbol : class BidHeaderVORow
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    BidHeaderVORow bidheadervorow = (BidHeaderVORow)bidheadervo.getCurrentRow();
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:91: cannot find symbol
    symbol : class OAPageLayoutBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    OAPageLayoutBean oapagelayoutbean = (OAPageLayoutBean)oawebbean;
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:91: cannot find symbol
    symbol : class OAPageLayoutBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    OAPageLayoutBean oapagelayoutbean = (OAPageLayoutBean)oawebbean;
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:94: cannot find symbol
    symbol : class OABreadCrumbsBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    OABreadCrumbsBean oabreadcrumbsbean = (OABreadCrumbsBean)oapagelayoutbean.getBreadCrumbsLocator();
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:94: cannot find symbol
    symbol : class OABreadCrumbsBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    OABreadCrumbsBean oabreadcrumbsbean = (OABreadCrumbsBean)oapagelayoutbean.getBreadCrumbsLocator();
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:115: cannot find symbol
    symbol : variable OAUrl
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    s = new String(OAUrl.removeParamFromUrlString(s1, as));
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:120: cannot find symbol
    symbol : variable SourcingUtil
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    s = SourcingUtil.constructOAFLink("PON_SOURCING_BUYER", "buying", 0);
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:123: cannot find symbol
    symbol : variable SourcingUtil
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    s = SourcingUtil.constructOAFLink("PON_SOURCING_SUPPLIER", "selling", 0);
    ^
    100 errors

  • Getting the error while calling the report from oaf page

    Dear all
    when i am calling the report from oaf page
    if (pageContext.getParameter("PrintPDF") != null)
    DataObject sessionDictionary =
    (DataObject)pageContext.getNamedDataObject("_SessionParameters");
    HttpServletResponse response =
    (HttpServletResponse)sessionDictionary.selectValue("HttpServletResponse");
    try
    ServletOutputStream os = response.getOutputStream();
    // Set the Output Report File Name and Content Type
    String contentDisposition = "attachment;filename=EmpReport.pdf";
    response.setHeader("Content-Disposition", contentDisposition);
    response.setContentType("application/pdf");
    // Get the Data XML File as the XMLNode
    XMLNode xmlNode = (XMLNode)am.invokeMethod("getEmpDataXML");
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    xmlNode.print(outputStream);
    ByteArrayInputStream inputStream =
    new ByteArrayInputStream(outputStream.toByteArray());
    ByteArrayOutputStream pdfFile = new ByteArrayOutputStream();
    //Generate the PDF Report.
    TemplateHelper.processTemplate(((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getAppsContext(),
    "XXCRM", "XXCRM_EMP",
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getLanguage(),
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getCountry(),
    inputStream,
    TemplateHelper.OUTPUT_TYPE_PDF, null,
    pdfFile);
    // Write the PDF Report to the HttpServletResponse object and flush.
    byte[] b = pdfFile.toByteArray();
    response.setContentLength(b.length);
    os.write(b, 0, b.length);
    os.flush();
    os.close();
    } catch (Exception e)
    response.setContentType("text/html");
    throw new OAException(e.getMessage(), OAException.ERROR);
    pageContext.setDocumentRendered(false);
    i am getting the error java.classcastexception at this line
    DataObject sessionDictionary =
    (DataObject)pageContext.getNamedDataObject("_SessionParameters");
    regards
    Sreekanth

    check if you have import oracle.cabo.ui.data.DataObject; in your import statement.
    --Prasanna                                                                                                                                                                                               

  • Identifying the customization is OAF Page

    Hi,
    I have a requirement to identify the customizations in  OAF pages from back end , in modules like AP,AR,GL.
    I had used the below query
    SELECT jdr_mds_internal.getdocumentname(ja.att_comp_docid) AS customized_document
                               FROM jdr_attributes ja
                              WHERE att_value LIKE '/oracle/apps/%customizations%';
    ex: /oracle/apps/ap/oie/webui/customizations/responsibility/23/OIEMAINPAGE
    Here how to identify the the above path is related to AP (Acccounts payable).
    Thanks in Advance
    Harry !!

    There are 3 concepts in OAF: Personalizations, BC4J extensions/substitutions and Customizations.
    Personalizations are stored in the MDS and there is a page under System Administration to list the personalizations for any given page.
    Now, have in mind that there are personalizations for certain products that are provided also by Oracle.
    BC4J extensions/substitutions involve the replacement of the BC4J objects referenced by a given page by custom BC4J objects (i.e.: queries) that can be achieved
    via the personalizations feature (replacing the AMs referenced by the page).
    Customizations involve custom controllers (java code), custom pages, custom BC4J objects, etc. and are more difficult to track if they are implemented as
    "in-site" customizations (for example, a standard shipped file by oracle that is changed by the customer)
    With all of these in mind, the first 2 can be detected by scanning the MDS for a certain group of pages.  The third is more complicated and the reason why we request customers to follow the standards in terms of splicing a new custom module.
    Refer to the OAF troubleshooting guide for more information. See MOS note 1496055.1 for reference.
    Let me know if any question.
    Thanks
    --Gustavo

  • Develop the Org-chart style page in OAF--Need suggestions

    How would I go about creating a basic organisation chart using css? What I want is a series of boxes with job titles in them which appear vertically and with a connecting line in the center.
    For the above requirement i need to develop the OAF page. can you provide any valid suggestions to me to acheive this kind of requirement.
    Is there any CSS styles for org-chart style..
    Thanks in advance

    I doubt you'll be able to achieve your exact requirement in OAF. Try experimenting with other techs like Flash, AJAX or HTML.
    Oracle.com has an 'out of the box' Flash based solution published here: http://solutions.oracle.com/solutions/applaud/org

  • Need suggestion to choose the Weblogic Edition

    We are developing the Rich web application using ADF technology which has more number of pages (approx. 700 – 800) also expecting more no. of users (15K).
    1.We want to know which weblogic edition (Enterprise or Suite) is suitable for production.
    2.Is there any ADF code change required if we develop and test in one edition and deploy it in different edition? For example develop and test in Weblogic Enterprise Edition. Is there any code change required to deploy it in Weblogic Suite Edition or vise versa)
    3.Do we need to consider the weblogic edition for Application Design?
    TIA.
    Maaniks.

    Strange
    I have finished MBA and corrently working as Software test engineer.
    Why you join as test engineer after MBA?
    Now I should say:
    Even I am not satisfied with YOUR current job,
    anyway i believe you should follow Rahul's reply cause it all depends on your past exp...
    Cheers

  • Need guidance to develop the Universe & Reports

    Hi Friends,
    I am new to Business Object and given with the assignment of migrating the existing Oracle On Demand reports to Business Objects.
    I am provided with the sample reports and there query and asked to develop Universe and subsequent reports based on it as its present in Oracle On Demand. There is no relationship document for the data source, probably based on the query need to identify the relationships among the tables and develop the universe and on top of it the reports needs to be developed.
    I require guidance from the experts out there what steps I need to start with to execute this assignment successfully. What should be the question to the report end user to understand there requirement where to start with Universe development or any other the things which helps me to execute this in right path.
    Please share your best practices and knowledge.
    Thanks

    Hi Arian,
    Please find the below documents for your help.
    Best Practices while creating a Universe.
    Official Product Tutorials – SAP BusinessObjects Information Design Tool
    For more help...
    Official Product Tutorials – SAP BI Suite
    Official Product Tutorials – SAP BusinessObjects Web Intelligence
    http://help.sap.com/businessobject/product_guides/boexir4/en/xi4_bip_admin_en.pdf
    Hope it helps!
    Thanks,
    Shardendu

  • Need help in Developing the Smartform for Delivery notes

    I'm developing the smartform for tcode vl02n.
    My question is when writing the print program which is the best way :
    1) By making use of standard print program RLE_DELNOTE
    2) developing from scratch by declaring my own types and subroutines as per my requirement.

    Hi,
    Welcome to SDN.
    I would always recommend start with the standard print program.  Most requirements can be satisfied by working with a copy of the standard form called by the standard program.
    Regards,
    Nick

  • Need suggestions on improving the performance end to end

    I referred following links and as many as 25 previous posts before posting this question.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/10b54994-f569-2a10-ad8f-cf5c68a9447c
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/402fae48-0601-0010-3088-85c46a236f50
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e0068bc1-6f8c-2a10-52bb-c6ee3562feb2
    /people/boris.zarske/blog/2007/06/13/sizing-a-system-for-the-system-landscape-directory-of-sap-netweaver
    I have some queries related to improving the performance of a scenario in my landscape.
    Scenario : IDOC-SOAP (Synchronous with BPM)
    The mapping is simple with 3 fld direct mapping.
    Works grt with no problem in normal cases for one message transfer.
    But initial load ( when we put it in new system, the scenario generates erros if we send more than 23 IDOCs at a time)
    I have decided to perform the following to solve it.
    /people/william.li/blog/2008/03/07/step-by-step-guide-in-processing-high-volume-messages-using-pi-71s-message-packaging
    Will it help me because its a IDOC sync scenario.
    What can I do to improve the performance of this scenario?
    Please suggest me good suggestions to improve the performance
    Please do list me out points that I have to perform (for a sync scenario with BPM) as I am already confused watching lots of blogs posts.
    Nikhil.

    do you think that the performance tuning that I mentioned in the link will hold good with sync scenarios?
    i dont think so.....in this scenario the async mesg processing is made to wait
    from the blog:
    As you can see, for the 1st minute, all the messages are waiting to be processed. After 60 seconds,
    the packages will be created and processed. There is no change to the monitoring of each of the
    individual messages in SXI_MONITOR.
    ....but if you make a sync scenario wait....then probably you may run into the risk of blocking the Queues.......
    If this is going to be in production then i would have been more careful...becoz firstly it is BPM....then synchronous BPM.....then a processing wait......normally do not try to make the BPM processing wait...my small suggestion

  • Need help to develop a customised search  BSP page

    Hi Every one.
    I need to develop a custom BSP search page which is a modified version of search.htm page of HCM_LEARNING bsp application.
    here we need to replace the Qualification dropdown boxes with 2 qualifications in tree format where first one is 1. Prerequisite and 2. Aspired . the values will be in node format and the other functionality should work the same  way as it works in search.htm page.
    How to handle 3 events now?? 1. Node click on Prerequisite Tree
                                                 2. Node Click on Aspired Tree
                                                 3. Find button click
    Only when the find button is clicked , The search should happen not on any node click.
    Could you please suggest me some thing how to proceed??
    Samikhya

    Look at the below step by step blogs to create custom serach page. It will help.
    /people/koen.labie2/blog/2006/11/17/showhelp-functionality-with-pop-up--part2
    /people/koen.labie2/blog/2006/09/28/showhelp-functionality-with-pop-up
    /people/thomas.jung3/blog/2004/11/01/bsp-value-input-help-popups-version-20-part-1
    /people/thomas.jung3/blog/2004/11/01/bsp-value-input-help-popups-version-20-part-2
    /people/thomas.jung3/blog/2004/09/17/bsp-150-a-developer146s-journal-part-xii-150-value-input-help-popups
    Regards,
    Raja

Maybe you are looking for

  • Easiest way to untangle two iPhones on one iTunes account

    I blame myself for this problem. My wife and I have two iPhones. I'm into the music so I set up an iTunes account a long time ago for my multiple iPods. It's now come time to disengage my wife's iPhone from my iTunes account. I know how to set up a n

  • Error with "on-the-fly" controls in waveform generation

    I am trying to output a waveform in which I can change amplitude while the VI is running. When trying to do so, however, I am allowed to change the amplitude only once, and then I get error #-10880. What does this mean? I am using AO Write, and placi

  • SAP Hana FAQ Frequently Asked Questions

    Hi All, SAP have published a fantastic Knowledge Base Article containing an extremely detailed SAP Hana FAQ - Frequently Asked Questions Go and download it now, it's here:      2000003 - FAQ: SAP HANA And then come back to it from time to time, becau

  • Recent Security Update

    I did the security update this morning and when I restarted my Mac mini I simply get the wheel of death. Now what? Help!! Annie

  • Please help me on making a buton go to a url when clicked

    so i have a home page thing. all the buttlons fly in and such all i need is so when a mouse hovers over a button it lights up or the brightness increases and when you remove the mouse from the button it goes back to normal please help me out.