Want to personalize a page using OA framework

How to personalize a page using OA framework?
How can I do the following?
1. How to add one more criteria in a drop down in a page and to run the query when we select that in the drop down?
2. How to change the oracle bill management logo in the top with another logo?
3. How to personalize the FAQ's ,news ,policies link in the oracle?

1. How to add one more criteria in a drop down in a page and to run the query when we select that in the drop down?
Dropdown , picklists may not refresh even if you add values to the tables it is querying, as the picklist could have been configured to cache values.2. How to change the oracle bill management logo in the top with another logo?
Change the corporate branding3. How to personalize the FAQ's ,news ,policies link in the oracle?
Look at global buttons, if these are in the global menu.Thanks,
Tapash

Similar Messages

  • Call a shell script using OA framework page.

    Dear all,
    I am new to OA Framework.There is a requirement in which I have to call a shell script using a Web page using OA framework.Can anyone throw light on how can we do this?
    Regards

    Hi,
    You can call shell script from Java and hence from OAF, following is a piece of code
    try
    String execString = "ls -all"
    Runtime r t = Runtime.getRuntime();
    Process proc = rt.exec(execString);
    /* handle you process from here..
    outputstreams, inputStreams and such
    catch (Exception e)
    e.printStackTrace()
    I also don't know Java much but to run shell script you need an object runtime class, I searched it on goolge for you.
    Regards,
    Reetesh Sharma

  • How to extract pages using adobe reader 11?

    Hi Webmasters,
    I want to extract pdf pages using adobe reader. Currently I am using version 11. Could anyone please advice on this?
    Thanks
    Srinath

    Adobe Reader has no such functionality; you will need Acrobat for this.

  • Adding Nationality Field in iRecruitment Page Using Personalization

    Dear Sir (+most probably Mr. Prabhu who is only helping here in this Forum) :)+
    I found one document on how can I add Nationality and National Identifier Fields in iRecruitment Pages Using Personalization, so it gave me an example so when he was personlazing
    "Basic Details” he was giving some parameters which I don't know the source of it :
    Select the “Level” of personalization
    • Select the item style as “Message Choice”. _(what's the difference between this type and others in LOV)?_
    • Provide a unique “ID”, for example: Nationality.
    • Provide: “Picklist Display Attribute”, for example: Meaning
    • Provide: “Picklist Value Attribute”, for example: LookupCode
    • Provide: “Picklist View Definition”. for example:
    oracle.apps.per.selfservice.personalinformation.server.NationalityListVO (_how can I get it if I want to create a new one_)
    • Provide a “Prompt”, for example: Nationality
    • Provide the “View Attribute”, for example: Nationality
    • Provide the “View Instance”, for example: IrcCandidatePerInfoVO _(??)_
    Do you have any clarification or supporting document for this?
    Thanks in advance..
    Akram
    BR
    Akram

    No Unfortunatelly it didn't answer my question and it took me to a programatic approach on how to attach the "DetailFuelTypesVO" to WebExpensesAM and extending the controller as follows (which is irrelevant to my case):
    package xx.oracle.apps.ap.oie.webui;
    import oracle.apps.ap.oie.webui.MileageListCO;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAImageBean;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.webui.beans.table.OATableBean;
    import oracle.apps.ap.oie.entry.server.* ;
    import oracle.apps.fnd.framework.* ;
    import oracle.apps.fnd.framework.server.* ;
    public class xxMileageListCO extends MileageListCO
    public xxMileageListCO()
    public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    if(oapagecontext.isLoggingEnabled(2))
    oapagecontext.writeDiagnostics(this, "start xxMileageListCO processRequest", 2);
    super.processRequest(oapagecontext, oawebbean);
    OAApplicationModule oam = oapagecontext.getApplicationModule(oawebbean) ;
    System.out.println("XXXX Mileage AM Name is =>" + oam.getFullName() );
    OAViewObject oav= (OAViewObject)oam.findViewObject("xxoieDetailFuelTypesVO") ;
    if ( oav != null )
    System.out.println("XXXX Found VO DetailFuelTypesVO for Mileage AM. This means we have re-entered the page" );
    else
    System.out.println("XXXX CAN NOT FIND VO DetailFuelTypesVO for Mileage AM" );
    oav = (OAViewObject)oam.createViewObject("xxoieDetailFuelTypesVO", "oracle.apps.ap.oie.entry.server.DetailFuelTypesVO") ;
    if ( oav != null )
    System.out.println("XXXX FINALLY FOUND VO DetailFuelTypesVO for Mileage AM" );
    oav.setWhereClauseParams(null);
    //Remove this hardcoding later, or get this from a profile option
    oav.setWhereClauseParam(0, "10090" );
    oav.executeQuery();
    }

  • Can I use OA framework to create custom pages

    Hi,
    My client is using 11.5.8 and the Framework version is 5.6.
    And we want to add a custom page to iSupplier application.
    Can I use OA Framework extension to develop the page and add it to the application without upgrading the applications techstack.? If Yes, what version of the OA patch do I need to use for development.
    If not, is there any way to add a custom page to this application?

    OAF can be technology of choice only after 11.5.9 . Use JSP instead to develop your custom pages.
    --Mukul                                                                                                                                                                                                                                                               

  • How to add link in subtabLayout using OA Framework page personlization

    Hi,
    how to add new link in subTabLayout using OA Framework page personalization.

    Hi Sumit,
    I am also working similar kind of requirement. In my case I tried to add new tab subtab using personalization , how ever the add new item button is not enable.
    So I created new stacklayout and tried to add this to new tab in the existing subtablayout by using co process form request code:
    public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    super.processRequest(oapagecontext, oawebbean);
    OracleCallableStatement oraclecallablestatement = null;
    OracleConnection oracleconnection = (OracleConnection)oapagecontext.getApplicationModule(oawebbean).getOADBTransaction().getJdbcConnection();
    try{
    oracleconnection.setAutoCommit(true);
    oraclecallablestatement = (OracleCallableStatement)oracleconnection.prepareCall("begin GLO_TMPVIJ_PRCV(:1); end;");
    oraclecallablestatement.setString(1,"In the custom co process request");
    oraclecallablestatement.execute();
    }catch(SQLException sqlexception)
    throw OAException.wrapperException(sqlexception);
    OASubTabLayoutBean subTabLayout =
    (OASubTabLayoutBean)oawebbean.findChildRecursive("ApplicationDetsTabLayout");
    OASubTabBarBean subtabbar = (OASubTabBarBean)oawebbean.findIndexedChildRecursive("subTabBar");
    OALinkBean link = (OALinkBean)oapagecontext.getWebBeanFactory().createWebBean(oapagecontext,
    OAWebBeanConstants.LINK_BEAN, null,
    "link");
    OAStackLayoutBean commentsRN =
    (OAStackLayoutBean)oapagecontext.getWebBeanFactory().createWebBean(oapagecontext,
    "/xxhr/oracle/apps/irc/candidateManagement/webui/CommentsRn",
    "CommentsRn", // always specify name
    true); // region created in Oracle9i JDeveloper OA Extension
    subTabLayout.addIndexedChild(commentsRN);
    subTabLayout.addIndexedChild(link);
    in this I am not ale to add the new tab.
    Regards,
    Vijay Reddy.

  • Personalize a page to hide specific fields in oa framework

    hOW TO PERSONALIZE A PAGE TO ENABLE OR DISABLE A SPECIC FIELDS IN THE OA FRAME WORK.
    I HAVE ONE MORE REQUIREMENT
    i HAVE ONE CONCURRENT PROGRAM DECLARED WHICH GENERATES REPORTS AFTER THE REQUEST COMPLETES IN FORMS.
    bUT MY REQUIREMENT IS IN ISUPPLIER MODULE I HAVE ONE REPORT DECLARED IN CONCURRENT PROGRAM I HAVE TO CALL THAT CONCURRENENT PROGRAM IN OA FRAMEWORK PAGE.AND THE REQUIREMENT IS AS SOON AS THE BUTTON IS PRESSES ON THE PAGE THE REPORT MUST GENERATE AUTOMATICALLY BY CALLING THAT CONCURRENT PROGRAM
    hOW WE CAN DO THIS TASK IN OA FRAMEWORK

    can u briefly tell me how we can call concurrent program in oa framework page and execute the report when ever the button is pressed

  • 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

  • I want to email a Pages document as a Word doc. I used to be able to do this by clicking on share then send via mail then on Word and an email would appear with my word doc attached.  Now the email does not come up.  Why?

    I want to email a Pages document as a Word doc. I used to be able to do this by clicking on 'share' then 'send via mail' then on 'Word' and an email would appear with my word doc attached.  Now the email does not come up.  Why?

    It's difficult to do more than guess when you don't say what version of OS X or Pages you're running, but if you're on the latest, have you tried the Share menu -> Send via Mail command?
    If that doesn't help, you may have better luck if you ask in the Pages forum:
    Pages
    When you repost, be sure to include full details about your versions so that people know what it is you're working with.
    Regards.

  • How to create a radio button on OA Page using Personalization

    I am trying to create a radio button on OA Page using Personalization. The item style , I can see is Message Radio Group.
    How to create Message Radio Button and bring them under one group.
    Thanks

    You should use jdev to define a radiogroup and radio buttons under that, wrap that definition inside a stackLayout in jdev, use personalization to add a stackLayout and extend the region which you had created earlier in jdev.

  • HT4059 Using my iPad 1, viewing a page from a book purchased through iBooks, want to print a page.  Does anyone know how??

    I'm using my iPad 1 and wanting to print a page from a book that I purchased from iBooks.  I can't figure out how to print.  Any suqqetions? Thanks.

    Sorry, but you can't.
    Regards.

  • Firefox 3.6.13 - Why, when I use the dropdown File menu to open a new window, does FF open my Home Page tabs? All I want is a blank page.

    I have four tabs in my home page:
    2 - https://mail.google.com/mail/;
    1 - http://us.mg5.mail.yahoo.com/dc/launch;
    1 - http://www.facebook.com/login.php
    When I use the "File" drop-down menu I want only a blank page, but I get the four tabs. How go I get other New Windows to open as blank pages?

    A new window open by default with the Home page(s), tabs open a blank page.
    The only ways to avoid opening a new window with the home page is either to set the home page to about:blank (ie disabling the home page) or use a bookmark with the location set to about:blank and use Shift + left-click to open that link in a new window.

  • Add to favourites disabled when using light framework page

    Hi,
    When using the light framework page our "add to favourites" link is disabled. If we instead use the normal framework page add to favourites in the dropdown menu works. Does anyone have an idea why this could be?
    Regards
    Mattias

    Hi,
    The reason why I decide to use Light Framework, itu2019s because Iu2019m creating an EFP, and Iu2019m using the WPC to publish the content (articles, news, and link list), using the standard Web Forms.
    The problem is, after adding to a WPC Page something so simple like an article (using the Web Form Article), no Portal iView, HTMLB or other stuff included, the preview of the WPC Page using the Default Framework Page is ok, but when using the Light Framework Page, the text in the article doesnu2019t have the correct font-family. It looks like there are some styles missing in the Light Framework Page, that WPC content is expecting.
    Thanks and Regards,
    John

  • Whenever I open firefox a add ons screen comes up with the yahoo web page behind it. . I just want the Yahoo web page and do not want to close the add ons page every time I use my computer.

    Whenever I open firefox a add ons screen comes up with the yahoo web page behind it. . I just want the Yahoo web page and do not want to close the add ons page every time I use my computer.
    I don't know what else to say about this. It is a screen that comes up in its own window everytime I open Firefox

    Please check your home page setting and see if about:addons is listed. If it is, please remove it
    https://support.mozilla.com/en-US/kb/How+to+set+the+home+page

  • I want to open my email using firefox, but since installing Google Chrome, all email links are opened with it, and I don't have access to my firefox tool bars to email a page, etc.

    All email are opened by Google Chrome since I installed it. I want to use Firefox with its toolbars for emailing pages, etc., and there seems to be no easy way to email a page using Chrome.
    I tried uninstalling Chrome, but then could not open any email.

    Make sure your Firefox set as default browser? See:
    * http://kb.mozillazine.org/Default_browser
    * http://kb.mozillazine.org/Default_mail_client

Maybe you are looking for

  • Change of Orion to OC4J server

    Hi ! well my problem is: in my IAS9i containet, I change of Orion to OC4J (new version) but my application client show this error. select CLVVERSION,MENSAJE,MODULO from VERSION where MODULO LIKE ? Exception passing by from remote server: java.lang.In

  • What is "Invoice Price Variance" in Accrual Reconciliation Report

    Hi friends can anyone pls explain me the Invoice Price Variance column data of Accrual Reconciliation Report? how most of the time ive seen this as 0. how can this be more than 0? im just experimenting with Accrual Reconciliation Report. pls help me.

  • Pixel Bender Application Error After Install

    I just installed eLearning Suite 2 (CS5). All programs appeared to have successfully installed, but when I try to launch Pixel Bender from the start menu, I get the following error and the software does not open: sniffer_gpu.exe - Application Error T

  • J'ai deja acheté lightroom et j'aimerai prendre un abonnement photoshop

    j'ai déjà acheté Lightroom et j'aimerai prendre un abonnement Photoshop. Vous proposz les 2 a 14 CHF/mois alors que si je ne veux que Photoshop, c'est 28 CHF/mois. je ne comprends pas très bien ! Si je prends l'abonnement à 14 CHF, je vais me retrouv

  • Java RMI or Servers

    I want to have a server process running on a Windows computer as long as the computer is on, but a user is not necessarily logged in. I don't want to have someone have to go physically to the computer, but I want this to run automatically. How can th