Transported Roles not Visible for the User Log-in

I have three roles in the development system.  These roles show up in the top level navigation for the users in the dev system.  All these roles and the underlying BSPs are transported to QA successfully.  I could assign them to users without any problems, but when the users log-in they can not see any of these roles at the top level navigation (In fact, they just get a blank screen).  "Entry Point" setting and "Sort Priority" is maintained for all the three roles.
As a test, I created a new role with the same BSP links in QA itself and assigned it to the users.  This shows up in the top level navigation for the users.  I am wondering what's wrong with the transported roles!  If someone could help me here that would be great and I will assign points to helpful replies.  I have a very basic knowledge in portal.

After applying SP12 in the portal landscape (EP 6.0), the role transports only work in our test environment, but not in production.  Even the manual corrections suggested in OSS note 1002832 didn't help.  I can preview all the iviews in the roles with my user id (admin id), but as soon as I log-in with the end user id nothing shows up [Not even the top level navigation tabs show up].  The following is the portal authorization methodology I chose.
1. I assign users to the user groups
2. I assign user groups to the roles
I want to emphasize that all is well in our test environment, it is the production environment that shows inconsistency.  Let me know if anyone has any pointers.

Similar Messages

  • SAP RM: How can I create a Node when the node is not visible for the user

    Hi,
    Product: SAP records Management for Public Sector
    Version: 7.00
    is it possible to create a instance node when the model not is not visible for the active user?
    I looked in the CL_SRM_XML_REC_MODEL but every methode I used gave me no results with the special user.
    Regards and thanks for every beginning
    Fanninger Thomas

    Hi,
    here an example.
    When I use the method CL_SRM_XML_REC_INSTANCE->IF_SRM_XML_POID~GET_ALL( POID_TAB COUNT_USER_REST COUNT_POID_AUTH ).
    When I used the user with no right for viewing the invisible nodes I get no elements in the tabelle POID_TAB and 38 in the value COUNT_USER_REST.
    So did any one know a solution you can I create a nodes and change the restriction for the new node with the normal user?
    Regards
    Fanninger Thomas
    Edited by: Thomas Fanninger on Feb 5, 2008 8:15 AM

  • Dashboard data not visible for the users - buffer issue?

    It occurred several times last weeks that some out of 7 dashboards are not visible to the Dashboard users.
    The scenario is the same all the time: users fills in the data, reviews it and posts some comments. Next morning the user canu2019t see the data in the system.
    What can be the problem?

    Hi,
    IF your Company has NEtweaver License and the SAPNET User has access right to download section, you must be able to add SP Stacks to Download Basket.
    If you have license and use have access, then please contact with local SAP Subsdiary for this problem.
    But to be able to download some patches, you must have Solution Manager & Maintanance Optimizer to approve the items in basket.

  • HOW MANY ROLES ARE ELGIBLE FOR THE USER

    hello gurus,
    how many roles can we assign to the user... what is the maximum limit of the roles  and profiles for the user.
    thanks in advance!
    sri

    Dear Srinivas,
    About roles it's indeed not to easy to tell..just imagine the scenario:
    1. Maximum number of profile is 312 ... (however due to some known bug system reads about 300). So, let's say 300 profile maximum can be assigned to an user
    2. Now you can have single ABAP role which generally one-to-one to profile. So, this theory says if you are only assigning single ABAP roles, you can assign maximum 312 (or 300) roles.
    3. But, you might also have Composite ABAP role. A composite ABAP role can have one or more Single/Composite ABAP role. So, one Composite ABAP role can correspond to any number of Profile which is determined by number of individual Single roles under than composite role. So, when you are assiging Composite ABAP role, you have to take care underlying number of profiles and make sure total does not exceed 312 (or 300 without note correction)
    4. Now, last part of complication (and my favourite one). Sometimes, there is an empty Role which does not have any ABAP authorization assigned to it. But, this type of roles are used to map a authorization role in JAVA system. These roles does not have any Profile (as it does not have any ABAP authorization). Now, that brings my confusion ..What happens you assign 300 ABAP profiles via ABAP Roles and another 20 empty role for JAVA system without profile. You see my point
    Hope this clarifies a bit
    Cheers !!
    Satya.

  • Services for object box not visible for some users

    Dear All,
    PM module experts please help. In equipment master transaction IE02  in left hand top corner we get  box for SERVICES FOR OBJECT which is useful for attaching external documents like word and excel. but problem  is it is  not visible for some users.  Our security/authorisation team has also done some check but didn't get any solution.
    anybody knows the reason why there is no box availabe?
    Thanks
    SR

    Dear Siddhartho Raha
    I think this problem related ABAP work,this problem very general problem,first refer any note availble or search throgh any class in SE24
    note are like this way 492331,this is not related to your query but same like it is and also may be
    Due to an error in the coding, it was possible to link a Word document to a Document in IE01. Because the data cannot be saved in transaction IE01, the linked document is lost after leaving the transaction.
    Hope this may helps you
    Prem.

  • JComboBox - Bottom border is not visible for the first time

    JComboBox - Bottom border is not visible for the first time i click on the arrow to drop the list down.
    This happens because the list when dropped down goes out of the frame.
    If have the increased the size of the Frame then i am able to see it,but i dont want to do this.
    I am using jdk1.3.1_02.
    Any Help would be great.
    Please find the code below.
    Thanks,
    Sridhar.
    //file: Lister.java
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Lister {
        public static void main(String[] args) {
            JFrame frame = new JFrame("Lister v1.0");
            // create a combo box
            String [] items = { "uno", "due", "tre", "quattro", "cinque",
            "sei", "sette", "otto", "nove", "deici",
            "undici", "dodici" };
            JComboBox comboBox = new JComboBox(items);
            comboBox.setEditable(true);
            // put the controls the content pane
            Container c = frame.getContentPane( );
            JPanel comboPanel = new JPanel( );
            comboPanel.add(comboBox);
            c.add(comboPanel, BorderLayout.NORTH);
            c.setBackground(Color.white);
            comboBox.setBackground(Color.white);
            comboPanel.setBackground(Color.white);
            frame.setBackground(Color.white);
            frame.setResizable(false);
            frame.setSize(200, 200);
            frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
            frame.setVisible(true);
    }

    Hello,
    try this:JPanel comboPanel = new JPanel(new BorderLayout());Regards,
    Tim

  • Drop down list(JComboBox) - Bottom border is not visible for the first time

    Drop down list(Combo-box) JComboBox - Bottom border is not visible for the first time i click on the arrow to drop the list down.
    I am using jdk1.3.1_02.
    Did any one face this issue.
    Please let me know.
    Thanks,
    Sridhar.

    I must be a little confused regarding your question.
    You can simply change your code frame.setSize(200, 200); to frame.setSize(400, 400);When you say you are unable to see the border are you specifically talking about the border of the frame or the border of the combo box?
    Lance

  • "Role not defined for individual users" on user import

    Hello,
    I am trying to import a certain user from one portal to another and I get this warning message:
    "Role <pcd_role_path> not defined for individual users."
    This role is assigned to this user at the 1st portal and exists at the 2nd portal at the same location.
    What does it mean and what do I need to do in this case?

    hi Roy,
    just check one thing ....
    please check wether the user have permissions to those roles.
    please go to the PCD location, where the roles have defined.
    right click on the role and check permissions.
    see if the user you are using is mentioned there. if no, add your user with read/write end user permission.
    i hope this will help you .
    Regards,
    Sujay

  • SubArea not visible for other users in ESS

    Hi All,
    I have created a new subarea (having few services) and assigned it to a Benefits and payments Area.
    Now the issue is its only displaying to Administrator Role not for other users.
    if iam giving SAP_ALL  to other user then we are able to see this.
    Please let me know if iam missing anything .
    Thanks,
    Santosh

    to the role assigned to the user, you need to select end user visible in the role.
    note Number              939412
    ssign the following permissions to an End user.
       o  Goto Content Administrator ->Portal content ->Content Provided by
          SAP ->End User Content -> Employee Self Service
       o  Right click on  Employee Self Service. select open-> Permissions
       o  Assign read authorization to default user group "everyone".
       o  Check the 'EndUser' checkbox
       o  Save the Assigned permissions
       o  Goto System administration -> Permissions.
                                                                    Page 2
       o  Goto  Portal content ->Content Provided by SAP ->srvconfig
       o  Assign read authorization to default user group "everyone".
       o  Check the 'EndUser' checkbox
       o  Save the Assigned permissions.

  • Upload multiple documents option is not visible for one user in SharePoint 2007.

    Hi,
    For one user Upload multiple documents option is not visible.
    We are using SharePoint 2007 environment.
    User is using IE 9 32 bit,Office 2010.
    I did repair office 2010.
    Active x controls are enabled.
    Please anyone help me on this.
    Thanks,
    Ashok

    Hi,
    According to your post, my understanding is that after client upgraded to Office 2013 the option for Upload multiple document was grayed out.
    I try to reproduce the issue in my environment, however everything works well.
    My configuration of system is:
    Windows 8.1;
    IE11;
    Office 2013 32bit.
    Please repair the Office 2013 to check whether it works.
    In addition, there are many thing you need to check. Please refer to:
    http://sharepointknowledgebase.blogspot.com/2013/09/upload-multiple-documents-is-disabled.html
    Here is a similar thread for your reference:
    http://social.msdn.microsoft.com/Forums/en-US/1a5af332-ed21-41ee-bf64-9122a7439623/sharepoint-not-activating-stsuplddll-upload-mutliple-documents-greyed-out?forum=sharepointgeneralprevious
    More information:
    "Upload Multiple Documents" is disabled in Document Library
    SharePoint 2010 : How to Enable Uploading Multiple Documents Functionality
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Export to pdf not visible for some users

    Hi,
    I exported a dashboard to pdf (Xcelsius 2008, SP2), and sent it to other users.
    On my labtop the pdf works fine, but some of the users get only a blank page. They are asked if they want to run the contents of the file (so flash is working in general), but after confirming the message, the screen remains blank. The funny thing is, that these users are able to run a PPT or HTML dashboard. The problem occurs only for PDF (all of us are using Adobe Acrobat Professional 7.0).
    We already deinstalled flash player plug-ins, and re-installed the plug-ins for Adobe Flash 10, both for IE and Mozilla. (But I am still not sure which plug-in is used when running the PDF??) Any of you an idea if there is an issue with PDFs Exports? 
    Thanks a lot,
    Sonja

    THIS happens to me too, I have Xcelsius 2008, running XP. 
    My business partner and I both can view the files in PDF WORD or PPT format if we send them back and forth to edit, but as soon as we send files outside of network, the new person, running XP or Vista, can not see the content. 
    PDF, word or PPT opens, but there is no content on screen.
    What Gives?
    Scott Olson
    Texas

  • HCM P&F - Attachment section is NOT visible for the approver

    Hi
    Attachment possible in the process but after submission (with attachment), when approver opens the process, attachment section is not visible to them. We are using FPM forms.
    Appreciate your inputs.
    Thanks

    Thanks Chris,
    let me clarify.....
    I want that when a user click on "Back to Author" button, do_operations should trigger
    Your below part is really what what I want....
    "Now if you expect that when the user clicks "back to author" that you can "catch" that in your "do operations", then that is very wrong. "Do Operations" only gets triggered by the started "check", "user_event_check" and your "user events" set up as such. Things like "back to author" or "withdraw" are handled within the application itself.You would have to modify/enhance that in order to "catch" the "back to author" button press event."
    Any help on how to achieve this functionality would be greatly appreciated.
    Chohan

  • Workbook settings macro is not visible for another user?

    Hi all,
    There is a work book with formulas inside the workbook, when execute the workbook i can see the formulas and the values derived from the excel formulas.
    But when another user is running it, he is not able to see those values,
    I think there should be some setting to be done for that user to access that workbook?
    what is that setting and how it should be done so that that user can see it?
    Thanks

    Hi all,
    When i open the work book in the design mode, i can see there are 3 text elements and one item grid,
    which is actually which was designed in the workbook, but the user is unable to see those text elements and item grid!!
    Can anyone pls help on this,
    So that the user can see this options!!
    Thanks

  • Roles not visible in the Catalog while requesting roles in OIM 11gr2

    Hi Experts,
    We have recently installed the OIM 11g r2 for a POC purpose and created few roles. The issue is we are unable to see the roles created while requesting the roles in catalog.
    Already run the Catalog Synchronization Job and its scheduled to run in every 15 mins.
    Thanks in advance for your help.

    Also, which type of Role Category did you chose for the ones you created ? If you chose "OIM Roles" they won't appear in the catalog, any other Category (e.g. "Default") will be shown.
    Try creating a new role with the "Default" category to test it; changing an OIM Role to another category won't work, it will still be hidden.

  • TFS Kanban board not visible for some users

    We have TFS 2012 and some users can see the Kanban board while other users cannot see Kanban board or (Work>>
    Backlogs). We compared the permission under administrator settings and seems to be same for all users (developers group). Is there any special permission or server side permission you have to assign to see Kanban or backlogs tab?
    Any guidance or instructions would be helpful.
    Thanks,

    see my answer in
    your other posting
    Please use Mark as Answer if my post solved your problem and use Vote As Helpful if a post was useful.

Maybe you are looking for

  • With holding tax report

    Hi all, I'm working on "WithHolding Tax Report", I've a structure for this report named by  "ACWT_ITEM". Is anybody knows, that, the similar Transparent Tabel name for the same, because I cannot fetch data from structure, so that I cannot use the str

  • Copy & Paste Data to htmlb:textEdit

    Hi, when I Copy & Paste Data from MS Office to <htmlb:textEdit> the following occurs: 1) In the <htmlb:textEdit> note, the content is displayed without formatting. (OK) 2) Saved content is displayed without formatting in the backend. (OK) 3) Printing

  • Help with TP-Link W8960N

    Keith_Beddoe's guide to replacing HH3 with W8960N seemed very thorough, but I still can't make it work. Please tell me where I'm going wrong. 1. I assume the BT red cable can be used to connect the modem to the TP-link router? 2. Is the userid/passwo

  • Best preset for a Sony Ericssen mobile phone

    Tried a few presets but nothing will play when transferred to phone. Source material: HDV 1080/50 from Final Cut (previous SD video from iMovie played ok on phone) Thanks

  • How many library folders are you suppose to have?

    When I click on the HD it shows a library folder.  When I click on my home folder, I also see a library folder.  I am not talking about the individual application library folders i.e. iphoto, itunes and the like.