Diasable the personalize page,prefernce,Home,Logout links in the page

Hi all,
I want to disable the global links(personalize page,preferences,Home,Logout links) in my custom page and i want add a new link/item to that global link section on the top right corner of the page, is it possible if such please explain how t do this.

Hi,
Try the below code Do certain modification by refering Developer Guide. Due to the time constraint i am unable to test it.
String OkUrl=APPS_HTML_DIRECTORY + "OA.jsp?OAFunc=ICX_LOGOUT;
OALinkBean returnLink =  (OALinkBean)createWebBean(pageContext, OAWebBeanConstants.LINK_BEAN, null, "returnLink");
returnLink.setDestination(OkUrl);
{code}
Regards,
Gyan                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • Hide 'Home Logout Preferences....' links in a OAF page.

    Hi guys:
    I need to develop a customization as following: Add controlling logic on a standard OAF page's button before
    submit, if the data cannot pass the check logic, it will open a new window and show the failed data.
    now , I have customized a new OAF page to display the failed data , and personalized the controller class of the
    standard button to open the new OAF page in a new window. It works fine, but I want to hide the 'Home Logout
    Preferences....' links in the new OAF page.
    how to setup it? is there any profile can be used to hide the links? I know Diagnostics ,Personalize can be hidden
    by profiles.
    thanks a lot!
    David

    Hi,
    I tried the same code. I am getting the following error. Could anyone help me how to solve this error?
    Error(74,1): class OAGlobalButtonBarBean not found in class XXX.oracle.apps.po.requisition.webui.CustomPageCO
    I am new to OAF. Looking for some help.
    Thanks
    Edited by: 803923 on Oct 25, 2010 11:10 AM

  • Hide About this page,Home,Logout,Preferences links

    Hi all
    I have a requirement to hide About this page,Home,Logout and Preferences,Personlaize page links.
    How can i do that?
    To hide Personalize page link i know one profile value is there
    FND: Personalization Region Link Enabled if i set it to No,Personalize page link will not come but Requirement is They want only this links to be not rendered on this particluar page,For other pages,link should come.
    Is there any property at page level,which i can set?
    Can anbody throw some points?
    Thanks
    Hitesh

    No you don't need to change the layout all what u need is to implement the following code
    OAPageLayoutBean page = pageContext.getPageLayoutBean();
    // You must call prepareForRendering() if the following code is
    // included in a pageLayout controller. If you add it further down
    // in the layout hierarchy, the menus will be fully processed so you
    // don't need to do this.
    page.prepareForRendering(pageContext);
    OAGlobalButtonBarBean buttons = (OAGlobalButtonBarBean)page.getGlobalButtons();
    buttons.setRendered(false);
    that's it
    keep it up
    Ahmed Alshaer

  • Unable to enable the links(Personalize Page & About this Page)

    Hi,
    I have set the set the profile options at user level :
    1. Personalize Self Service Page Defn and 2)Region Links 3) Fnd Diagnostics
    I can see the links 'Personalize Page' & 'About this Page' and 'region links' for all the responsibilities like isupplier , iexpenses..etc
    except for the responsibility "Oracle Installed Base User"
    What could be the reason?
    Is it restricted by default? how to find out the page definition for "Oracle Installed Base User" pages?
    Appreciate your help.
    thanks in advance,
    Suman

    Hi Anand,
    Thank you very much for your reply in short time.
    As you said, it is a jsp page built by JTT Framework.
    OA_HTML/csiPerzEditMain.jsp?jttst0=8053_22971%2C22971%2C-1%2C0%2C&jtfm0=_0_0_0_-1_f_nv_&etfm1=&jfn=ZG23746AF4DF034244327BDC34EB1997A52C3D483299CAC3D9EADAE422BE515F7B7F10019AC9D26401ADB3C0AF6CFE71C1B0&jfn=ZG23746AF4DF034244327BDC34EB1997A52C3D483299CAC3D9EADAE422BE515F7B7F10019AC9D26401ADB3C0AF6CFE71C1B0
    Could you pls help how to find this page location and to download this Page?
    Thanks,
    Suman

  • Logout link disable on OAF standard page

    Hi guys,
    Plz tell me how to disable logout link on all OAF pages in R12 ? Is it possible to through page personalization or need to some customization/extension of oaf page ?
    My requirement is like.... after the user login, he is not able to click on logout link ......in that case he need to close window through close button (X) of Internet Explore.
    plz guys put ur suggestion & solution and help me out...............................
    Thanks

    Hi,
    As per Dev guide, we can hide the global links for seeded OAF page using below code...
    At runtime, there are rare occasions when you might need to do the following (we say "rare" because, by
    definition, global buttons are universally applicable, so it is fairly uncommon to disable or hide them if a user
    has function security access):
    To hide or disable an individual global button, use the following processRequest code:
    if (< condition >)
    OAPageLayoutBean page = pageContext.getPageLayoutBean();
    // You must call prepareForRendering() if the following code is
    // included in a pageLayout controller. If you add it further down
    // in the layout hierarchy, the menus will be fully processed so you
    // don't need to do this.
    page.prepareForRendering(pageContext);
    OAGlobalButtonBarBean buttons = (OAGlobalButtonBarBean)page.getGlobalButtons();
    // Note OA Framework automatically assigns global buttons their corresponding
    // function name, so this is how you find them.
    OAGlobalButtonBean button =
    (OAGlobalButtonBarBean)buttons.findIndexedChildRecursive("<FUNCTION_NAME>");
    238
    // Note that you wouldn't do both at the same time...
    button.setRendered(false); // Hide the global button, or
    button.setDisabled(true); // Disable the global button so it renders, but is
    not selectable
    To hide all the global buttons, use the following processRequest code:
    Warning: Hiding all the global buttons is not recommended; you must get UI team approval before doing this,
    and you must verify that there isn't a declarative alternative (for example, you could create multiple "Home
    Page" menus for your application and alternate between the one with and the one without global buttons).
    if (< condition >)
    OAPageLayoutBean page = pageContext.getPageLayoutBean();
    page.prepareForRendering(pageContext);
    page.setGlobalButtons((UINode)null); // Must come after prepareForRendering()
    // And, if for some reason, you don't want to display any tabs,
    // do the following.
    page.setTabs(null);
    The standard global buttons that appear in all applications (Home, Logout, Preferences, and Help) are
    included in a seeded menu called ICX_STANDARD_GLOBAL_MENU.
    In u r case,
    ICX_LOGOUT--- Function Name attached to ICX_STANDARD_GLOBAL_MENU.
    Logout--- is the User Function Name
    Refer metalink note *1308823.1* this helps how to remove preferences link on all oa pages.. similarly u can use this for logout.
    Hope this helps...
    Thanks,
    Raghav.

  • Logout link does not appeared in exception page

    When exception is thrown , the logout link is not appeared in the exception page. By default , we select error page in themes as two level tabs.
    Where can I get the error page for the themes. Is can i see the code for error page , if possible.
    Please help me out.
    Thanks,
    Sesha

    THANKS ITS WORKING FINE NOW>
    WE ARE USING 3.0.9. Actually there was a problem with the template which resulted in the Link not working.
    Thanks

  • How to hide welcome user and logout link for only specified pages

    Hi,
    I have few pages in my application like forget password page, in which i don't want to show logout link on top corner and welcome message. For rest other pages its ok. If I edit the template body for doing it then in all pages the welcome user vanishes, where i need to hide it for some specific page only.
    Please give some idea.
    Thanks,
    Chandra Bhanu

    Go to Shared Components/Templates.
    Find the page template that you are using and click Copy.
    Go into the copy and look for &USER. and #NAVIGATION_BAR# and delete.
    Go to each page that does not need the user and navigation and assign the new template.
    This will get rid off the user details and the navigation bar.
    Gus

  • Can We personalize DFF using Personalize page Link

    Hi all
    i have been asked a question that ,can we personalized DFF using the Personalize Page link ?? ,i m bit confused about the answer although i have handled the DFF via controller extension ,but i never performed any action using Personalize Page link on DFF.can u guys pour your views on this topic
    thanx
    Pratap

    Hi Pratap,
    You cannot directly personalize the field in the DFF..
    however there is a workaround. I haven't tested it.
    1. Hide the DFF
    2. Create a new Flex region for the same DFF again
    3. Now you can choose the segments as you like (hide or display, readonly or not)
    --Prasanna                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Create Item column is not appearing in the "Personalize Page"

    Hi All,
    I am working in R12 upgrade project.
    I have to create item(Link) in a table region as per the requirement.
    But that "Create Item" button rather the column is not appearing in that "Personalize Page" when I click on the Personalize Page link of the concerned page.
    Can anyone please suggest Do I have to do any setup or any profile option needs to be enabled.
    Thanks,
    Raja Dutta

    Hi,
    Enable profile 'FND: Personalization Seeding Mode', clear the cache and check if this solves your problem.
    --Sushant                                                                                                                                                                                                                                                           

  • Where's the Logout link gone?

    All my application pages used to have a Logout link on the top right hand side. Somehow I've managed to delete this.
    Any ideas how to get it back?

    Hello,
    Go to Shared Components, Navigation Bar Entries. If 'Logout' is not there anymore, someone deleted it.
    Create a new Entry:
    Logout, Target= URL, URL Target = &LOGOUT_URL. (with the . at the end) and you're done.
    Greetings,
    Roel
    http://roelhartman.blogspot.com/
    http://www.bloggingaboutoracle.org/
    http://www.logica.com/

  • Hide link "SAP Store" on personalization page?

    Hi there,
    is it possilbe to hide the link "SAP Store" on the personalization page. I don't mean the regular AJAX portal framework page. There you can uncheck the link. But is there an option to disable the link on the personalization page too, the page where you can set your portal theme and so on.
    Thanks
    Andreas

    Hi Andreas,
    Open the content administrator and go to:
    portal users --> standard portal users --> AFP Personalize Portal (its the personalize framework page).
    open the framework page and open the AFP Masthead iView.
    In the properties of the AFP Masthead iView you will find:
    Show Link in Masthead: Enterprise Store
    uncheck it.
    HTH,
    Saar

  • Please Move the Logout link

    Hi,
    Whenever I visit the forum at my tablet I find myself hitting the wrong link at the screen.
    The link ‘Discussion forums’ and ‘Logout’ are close to each other. Hitting a wrong link is no problem you can just go back, but not if you Logout.
    And beside that who wants to Logout     I only use the Logout if it is not my own device that I am using.
    So is it possible to move the ‘Logout’ link far away from the other useful links ? E.g. at the same line at the right of the screen.
    Kees

    Agree absolutely. I have had this problem often and it can be quite embarrassing
    in a business context as you look like a real dummy..
    It does need a fix and I have also logged feedback with Apple.
    There is a workaround and this is to create an SMS message without the phone number - you do this from messaging not phone - in order to prevent the possibility of an accidental send. When you are ready you put the Ph # in and hit send.

  • Hide logout link in interactive report

    Hi,
    Can anyone tell how to hide logout link in interactive report?
    Thanks,

    Hi,
    Sorry, I do not understand question.
    How you did get logout link to interactive report ?
    I have never seen that logout link is generated to report automatically.
    But id you go
    Home>Application Builder>Application xxx>Shared Components>Navigation Bar Entries
    and edit your logout link, you can set condition witch page you like it to be displayed or not to be.
    I think you mean that one
    Br, Jari

  • Urgent-How to retain data in main page after returning from personalize pag

    Hi,
    i have a query,
    Like if I have a region 'CertificationRN' when I run the page a link stating “Personalize Table: (CertificationRN)” appears above the Region
    Now when I enter some data in this region, and then click on 'Personalize Table: (CertificationRN)’ link, personalize page appears.
    On personalize page when clicked on “Return to Application’ it returns to the previous page, but the data which I had entered in the region is lost.
    i.e. I get empty Textboxes as they where just after running the page.
    What should I do to retain the data in the region?
    Thanks & Regards
    Shilpa

    Shilpa in that case personlization links should not be shown to business users, using profile option
    1)Personalize Self-service Defn (FND_CUSTOM_OA_DEFINTION)
    2)FND: Personalization Region Link Enabled
    (FND_PERSONALIZATION_REGION_LINK_ENABLED)
    , then where does the question comes of them clicking personalize link.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • EBS  'personalize page'

    After logging in EBS, there is a link called  'personalize page' at the right top
    is there a way to disable this to all users in R12.1.3?

    There's a profile option that controls this. You can disable this at the Site level, and perhaps enable it at the user level just for a few users:
    Personalize Self-Service Defn: This system profile option controls access to the Personalization Framework. This profile option enables or disables the global Personalize URL link that appears on each self-service web application page for Admin-level customizations. If this profile option is set to Yes for the user or responsibility, the Personalization Framework can be accessed.
    Dula

Maybe you are looking for