Personalize link is not working

my Personalize link on masthead is not working. Can anyone advise any alternate method to activate the personalize menu.

Your solution:
you need to ensure that your user is assigned the end (or every)user role (eu_role).
More is here:
EP6 SP9 - 'Personalize Portal' link does not work
Plz don forget points, if it worked.
Regards,
P.
Message was edited by: Mhadi Peter

Similar Messages

  • Personalize link does not work without proper authorization

    Hello!
    I have an issue in the CRM 7 web ui and the Personalize link in the header.
    We have removed all "unecesary" authorizations and now the users can not get the personalize page. When they click the link they don't get any new page, they get the same page they had before clicking on the link.
    We are also missing the Manage Reports menu entry for the user, the link is enabled in Nav bar profile and visable in SPRO.
    If I give the user SAP_ALL and SAP_NEW, the link works........
    The trace in ST01 doesn't provide any useful info....
    All auth. objects are green and ok
    There is nothing in the logs or any of the trace files.....
    Has anyone encountered this before in CRM 7 or CRM 2007?
    Thanks!
    rollo

    hello!
    sorry, but I can not remember what authorization objects I added to solve the issue
    Do a trace in ST01 and check for objects that seems to be related to the ui
    rollo

  • End user personalization link is not working

    Dear all
    If i click on Personalization link for end user..its not working? nothing is displaying
    Kindly suggest me what is the problem.
    For my user who is having super admin role..it is working.
    regards
    pradeep

    Hi Raja
    if i attach eu_role to the enduser...entire home tab is displaying..
    Pl let me know how do i prevent this..
    Do i need to modify the Home tab..i mean do i hide the home tab. b'z i dont want to give that all options ompany, work, teams and portal info...etc..
    pl sugget me
    regards
    pradeep

  • Link is not working if Personalize Self-Service Defn set to No?

    Hi All,
    I add one link item on Customer page which is calling Product Summary page. It is working fine.
    Issue - If Personalize Self-Service Defn property is YES then link is working, if NO then link is not working.
    Note - I made one region for link and add it through personalization.
    Thanks,
    Ajay

    Oajay ,
    Look:
    1)Check if this link is disabled in ur personilization.
    2)Also run
    exec jdr_utils.listCustomizations(' /oracle/apps/fnd/framework/toolbox/labsolutions/webui/HelloWorldPG');
    to see that ur personilizations are there in DB.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Reply link does not work on ipad

    After logging in to this group, the reply link does not work on either my ipad 2  running IOS 8.1.3 nor my iphone 4 running 7.1.2. Not helpful really. I have had to switch on my old laptop.Also I never know which group to post a new question in, The names like Snow Leopard dont really give me a clue, so if the key word does not find an existing topic, i just end up guessing.

    You seem to have double posted, Lynne.   I have replied on the other one.
    Snow Leopard is one of the Apple operating Systems (OS X) as opposed to iOS 

  • Dashboard link is not working from BI Publisher

    Dashboard link is not working from BI Publisher. Please let me know How to fix this problem.

    Please somebody guide me.
    Dashboard link is working fine from the Apps Server Machine. But the link is not working from other machines. Do I need to setup machine.domain:<port_number> any where.
    Thanks,
    Vara

  • I'M AN AMERICAN ON TEMPORARY ASSIGNMENT IN ITALY AND CANNOT GET TO ANY HELP SOURCE ONLINE OR BY THE PHONE NUMBERS LISTED ONLINE.  I'M TRYING TO RENEW MY ONE TO ONE SUPPORT PROGRAM AND THE "RENEW NOW" LINK DOES NOT WORK!  HELP!

    APPLE SENT ME AN E-MAIL WITH A LINK TO RENEW MY ONE TO ONE SUPPORT.  THE LINK DOES NOT WORK.  AFTER I LOG INTO MY APPLE ACCOUNT AND CLICK "RENEW NOW" FOR ONE TO ONE, AN ERROR MESSAGE APPEARS SAYING "PAGE NOT FOUND".  AMAZING.  WHEN I TRY TO CALL THE TOLL FREE APPLE SUPPORT NUMBER FROM MILAN, ITALY WHERE I AM NOW LIVING, IT DOESN'T WORK. THE ITALIAN SUPPORT DESK APPEARS TO BE AVAILABLE ONLY ON WEEKDAYS DURING NORMAL BUSINESS HOURS.  HOW CAN I REACH A LIVE APPLE SUPPORT PERSON?

    Start by going here - https://expresslane.apple.com/GetproductgroupList.action?locale=it_IT
    Best of luck.

  • A/R Invoice linked object not working all the time

    I have a LinkedButton that is set to SAPbouiCOM.BoLinkedObject.lf_Invoice. When the selected A/R Invoice has a Document Type of Service the link works. When the selected A/R Invoice has a Document Type of Items the link does not work and I get the following error:
    "No matching records found 'A/R Invoice' (ODBC -2028)"
    I there another property that I should be setting? I could not find anything.

    Hi,
    I've added a code sample that works fine for me.
    add this code to a simple vb project with the correct references....
    1. Enter a number of the Invoice you want
    2. click on the second EditText to set the linkedButton
    3. click the LinkedButton
    <i>Public WithEvents m_App    As SAPbouiCOM.Application
    Private Sub Class_Initialize()
    Dim oForm As SAPbouiCOM.Form
    Dim oDBDS As SAPbouiCOM.DBDataSource
    Dim oItem As SAPbouiCOM.Item
    Dim oLB As SAPbouiCOM.LinkedButton
    Dim oST As SAPbouiCOM.StaticText
    Dim oET As SAPbouiCOM.EditText
        Set m_App = getCurrentApplication()
       ' m_App.MessageBox "You have COM UI connection"
        'form
        Set oForm = m_App.Forms.Add("UUID")
        oForm.Height = 150
        oForm.Width = 400
        oForm.Top = 100
        oForm.Left = 400
        Set oDBDS = oForm.DataSources.DBDataSources.Add("OINV")
        'Edittext
        Set oItem = oForm.Items.Add("EditT", it_EDIT)
        oItem.Left = 200
        oItem.Width = 40
        oItem.Top = 50
        oItem.Height = 15
        Set oET = oItem.Specific
        Call oET.DataBind.SetBound(True, "OINV", "DocNum")
        'static
        Set oItem = oForm.Items.Add("StaticT", it_STATIC)
        oItem.Left = 50
        oItem.Width = 100
        oItem.Top = 50
        oItem.Height = 15
        oItem.LinkTo = "EditT"
        Set oST = oItem.Specific
        oST.Caption = "Business Partner Code"
        Set oItem = oForm.Items.Add("EditT2", it_EDIT)
        oItem.Left = 200
        oItem.Width = 40
        oItem.Top = 80
        oItem.Height = 15
        Set oET = oItem.Specific
        Call oET.DataBind.SetBound(True, "OINV", "DocNum")
        Set oItem = oForm.Items.Add("StaticT2", it_STATIC)
        oItem.Left = 50
        oItem.Width = 100
        oItem.Top = 80
        oItem.Height = 15
        oItem.LinkTo = "EditT2"
        Set oST = oItem.Specific
        oST.Caption = "Business Partner Decs"
        'linked button
        Set oItem = oForm.Items.Add("Linked", it_LINKED_BUTTON)
        oItem.Left = 180
        oItem.Top = 50
        oItem.LinkTo = "EditT"
        Set oLB = oItem.Specific
        oLB.LinkedObject = lf_Invoice
        oForm.Visible = True
    End Sub</i>
    Regards,
    Yaniv G.
    SDK Consultant,
    SAP Manage Israel.

  • After updating to V 15.0 I have the issue that suddenly many but not all of the functions do not work anymore. Menues and download links do not work.

    I have updated my firefox to version 15.0. After this I have the effect that at some unspecified time during use many of the functions stop working. Menu's do not open, download links do not work anymore and so on. Opening new tab's or windows still works. Links on pages partly work partly not. Copy and paste does not work anymore on webpages. It takes ending the firefox process and restarting to correct the issue until it happens again. I have those effects on totally different webpages. At this time it happens every time after I start Firefox but not right away. Firefox first works for some time and then it suddenly doesn't anymore without me having done anything special

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • Link is not working for one role. how to check please guide.

    Hi Expert,
    I have a simple question but as don;t aware of some of the techincal area not able to understand where to check.
    I have a link under document flow in offer( opportunity) where for one role sales support user the link is not happening. I have checked for other role its working fine.I understand that for this role the link  will not work as per the role maintianed.
    But where this link got maintained and how i will be able to check which link is tagged to which profile.
    rolewise mappeing with link.
    Please guide.
    Prem.

    Hello Prem,
    Please check the navigation bar profile from your business role.
    Then go to the navigation bar profile settings, you can find the details settings there.
    If it is a link under some work center, you need to start from the work center.
    If it is a direct link, then start from the derect link group.
    Hope this could be helpful.
    Best regards,
    'Maggie

  • Importing bookmarks I go to file and the IMPORT link is not working ... not Illuminated ... what can I do?

    I want to import bookmarks from Explorer and I go to File Tab and the IMPORT link is not working or not illuminated?

    Make sure that you not run Firefox in permanent [[Private Browsing]] mode.
    * You enter Private Browsing mode if you select: Tools > Options > Privacy > History: Firefox will: "Never Remember History"
    * To see all History and Cookie settings, choose: Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    * Uncheck: [ ] "Permanent Private Browsing mode"

  • I have a Excel file which has lots of PDFs embed as a link.  When i converting to PDF the embed links are not working. Please help to slove this issue.

    I have a Excel file which has lots of PDFs embed as a link.  When i converting to PDF the embed links are not working. Please help to slove this issue.e

    I am also looking alternative way using inDesign to create the embed link as like as excel. is there any possible? Thanks for you reply

  • This link is not working. Please if you can access this l...

    this link is not working. Please if you can access this link send me the text from it (as an attachement by email)

    Is the SQL being passed to Access valid for Access:
    SELECT Orders.*, Tickets_detail.OrderID2 AS T2, Tickets_detail.Price, Tickets_detail.ticketname FROM Orders JOIN Tickets_detail ON Orders.OrderID = Tickets_detail.OrderID2 WHERE EventID =24 AND AuthNetCode =1 AND OrderType IS NULL ORDER BY orderID2 DESC
    (that's from your error msg)
    Can you run that on Access?
    I suspect the JOIN syntax might be different.
    Any reason why you're running SQL Server on live, and Access on dev? You're making a bit of a rod for yourself there.
    Adam

  • In P6 P6 Help link is not working

    Hi,
    My P6 help link is not working in help menu.
    P6 Library and Support link are working.
    As suggested in another discussion i tried to update link in Admin>Application setting and restarted weblogic, But system is still taking some other link than i defined in application setting.
    Can anybody help?

    Hi,
    We worked on this issue ,
    Solution:
    In the P6 EPPM Admin application in the corresponding configuration, In P6 Help url we have modified the url from  http://hostname:8203/p6help/help to http://hostname:8203/p6help/ and we restarted the P6 server in weblogic console.
    Then everything fine now,
    Regards
    Kumar

  • The figure links are not working

    The figure links are not working in the latest ADE 4.0.3. The same ePUB figure links are worked perfectly in ADE 3.0.

    Your navigation is covering some of your links. You should send the image to the back & or crop it to just the red box.
    How I create navigation menus:
    http://jeffnitschke.com/Video.html

Maybe you are looking for

  • Can I use my old FCP 3.0 in current up-to-date OS 10.5.6 environment?

    Back a few years ago I used FCP a lot but then switched professions and haven't needed it -- or upgraded it -- since. My version is FCP 3.02 full retail store version. Today I tried to open it to do a little tiny real estate project and it said "Need

  • Error while invoking database stored procedure while mapping to varchar,int

    Hi I am using Oracle SOA 11g 11.1.1.4 In that i am calling db procedure.The procedure is taking input parameters int and varchar and nillable is true for both cases.Its a sybase data base. I am calling this db proc through db adater.Here I am mapping

  • 'Days of Our Lives' Multi pass not working

    I have a multi pass to Days of Our Lives, and it has not downloaded a new episode since March 17th, despite 12 episodes being available for individual purchase since then. I have contacted support and received no reply and based on the recent comment

  • SEM ERROR WHILEACCESSING THE CAMPAIGN URGENT PLEASE

    Hi, crm gurus we are working on crm 4.0 when the end user is accesing the campaign she is getting an error "the sem error error in planning services access to file denied" she is not able to view the fore cast details for all campaigns.I checked for

  • Syncing with outlook

    This is an often asked question, but something for which I have yet to see a satisfactory answer.  I am running Windows XP Professional.  I also have Outlook 2003 on my desktop.  I do not use Microsoft Exchange Server.  I have an iPod Nano, an iPad 2