List of BCC roles with explanation

Hi,
does anybody have a list with an explanation of some of the roles available in BCC?
I am mainly looking for:
100001-gear-manager
100001-guest
100001-leader
100001-page-manager
100001-portal-admin (where is the difference to 100001-member?)
100001-settings-manager
100001-user-manager
and what is the difference to 100002-*??
Or are they just provided for customization?
Thanks and regards,
Heiko
Edited by: Heiko Mock on May 15, 2012 9:13 PM

For those who are interested, I found the answer in the following thread:
Cannot access PCD object from WD (DynPage works fine...)

Similar Messages

  • Report to see list of roles with no user assignment

    Hi Gurus,
    I need to know the transaction/Report where i can see list of roles which doesnt have any user assignment.
    Pls help me

    HII,
    To search for  roles with no users assignment u can run a report RSUSR070 AFTER EXECUTING TCODE SA38 in the progran field enter the name of the report and click execute button u get roles by complex selection criteria    then scroll down and in the selection according to user assignments  select  without user assignment then cli ck execute button u will get the roles with no user assigments............
                          Thanks and regards

  • Roles with their list of transations

    Hello,
    Is there a report that I can run that would give me a roles (composite or single) with their list of transations?
    I have find the list for 75 roles
    Many thanks

    Ah, wait!
    The solution I gave only works for single roles, so if you've entered composites you'll be left blank.
    You can try table AGR_TCODES instead. This may not return a complete list as the content for authorizatons (AGR_1251) may differ from the menu content (AGR_TCODES). If the composite roles' menus aren't filled properly this method will not work.
    For a more reliable result sit with someone who knows how to use SAPquery and join tables AGR_AGRS and AGR_1251 on AGR_AGRS-CHILD_AGR and AGR_1251-AGR_NAME. If you execute that query, filtered on AGR_1251-OBJECT=S_TCODE you should get what you want.

  • User Role with All MM Transaction codes

    Hi SAP Gurus,
    I need to create a User role with all MM transactions.  Can anyone please let me know whether Standard User role is available which has authorisations for all MM transaction codes ?  If yes, what is the User role name.  If not, what is the easiest way to get a list of all MM transaction codes.
    Regards,
    Janagiraman.

    Hi,
    sap_mm_all role name is not available in client sap system version 5.0.  The role might have been deleted by someone.
    Regards,
    Janagi

  • Integrate IdM roles with Sun Access Manager roles

    Hi all,
    I am currently working on a solution involving Sun Identity Manager 7.1 and Sun Access Manager 7.1 as well. We use AM for overall authentication and SSO across the application, and IdM for user provisioning.
    I need to create roles in Identity Manager, and I would like that when I assign a role to a user in Identity Manager, he gets the same role in my Access Manager repository (Sun LDAP). Identity Manager does provide a way to set attribute values in resources when a role is set. Access Manager on the other hand has both dynamic roles, based on an LDAP search, and static roles.
    What are the important differences between static and dynamic roles in AM?
    Does anybody know a good way to propagate roles from Identity Manager to Access Manager?
    Thanks.

    I found answers to my question. I succeeded in setting the Access Manager role from Identity Manager using the nsRoleDN attribute. Here are some references to begin with:
    About directory server roles:
    http://docs.sun.com/app/docs/doc/820-2493/fvbrn?a=view
    Forum thread reference:
    http://forums.sun.com/thread.jspa?threadID=5208694
    Here are roughly the steps I followed to get this working.
    Access Manager roles setup:
    1. In Access Manager, create a new static role named test_role under the identities realm (in Subjects > Role).
    Identity Manager roles setup:
    1. Create a new role in Identity Manager: tab Roles, click New....
    2. Assign the LDAP resource to synchronize the role with.
    3. On the Assigned Resources line, click the Set Attributes Values button. This shows up the attributes listing allowing you to bind your IdM role to your LDAP repository.
    4. Set the attribute nsRoleDN to the LDAP DN of the role that was created in AM (nsRoleDN must be added in the resource attributes mapping before).
    * In the column Value override, select Text.
    * In the column How to set, select Authoritative merge with value, clear existing. (* See IDM Admin guide about this setting, I am still not sure how it reacts with multi-value attributes)
    * In the text box, enter the role DN text (ex: cn=test_role,dc=com).
    5. Save the role. You can now add the role to a user.

  • Default role  with password - reality check

    I support the database for an application. We upgraded from Oracle10 to Oracle11 9 months ago. Then recently we applied the OCT CPU.
    The application admin says that they have a program that has recently stopped working that worked after the Oracle11 upgrade.
    The application user has a default role which has a password. Is that possible? A default role with a password. Would this have ever worked in any version of Oracle?

    Default role with password is a feature even available with Oracle XE. Default roles are activated without requiring role password in Oracle 10.2:
    SQL> drop user admin cascade;
    User dropped.
    SQL> drop user test cascade;
    User dropped.
    SQL> drop role rwp;
    Role dropped.
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    SQL>
    SQL> create user admin identified by oraclexe;
    User created.
    SQL> grant create session, create table to admin;
    Grant succeeded.
    SQL> grant unlimited tablespace to admin;
    Grant succeeded.
    SQL> grant create user to admin;
    Grant succeeded.
    SQL> grant create role to admin;
    Grant succeeded.
    SQL>
    SQL> create user test identified by oraclexe;
    User created.
    SQL> grant create session to test;
    Grant succeeded.
    SQL>
    SQL> connect admin/oraclexe;
    Connected.
    SQL> create table t(x varchar2(10));
    Table created.
    SQL> insert into t values('admin OK');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> create role rwp identified by oraclexe;
    Role created.
    SQL> grant all on t to rwp;
    Grant succeeded.
    SQL> grant rwp to test;
    Grant succeeded.
    SQL>
    SQL> connect test/oraclexe;
    Connected.
    SQL> select * from session_roles;
    ROLE
    RWP
    SQL> select * from admin.t;
    X
    admin OK
    SQL> insert into admin.t values('test OK');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select * from admin.t;
    X
    admin OK
    test OK
    SQL>There have been changes between Oracle 10.2 and 11.2 because the same script fails in 11.2 unless the role is set with the password:
    SQL> drop user admin cascade;
    User dropped.
    SQL> drop user test cascade;
    User dropped.
    SQL> drop role rwp;
    Role dropped.
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0      Production
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    SQL>
    SQL> create user admin identified by oraclexe;
    User created.
    SQL> grant create session, create table to admin;
    Grant succeeded.
    SQL> grant unlimited tablespace to admin;
    Grant succeeded.
    SQL> grant create user to admin;
    Grant succeeded.
    SQL> grant create role to admin;
    Grant succeeded.
    SQL>
    SQL> create user test identified by oraclexe;
    User created.
    SQL> grant create session to test;
    Grant succeeded.
    SQL>
    SQL> connect admin/oraclexe;
    Connected.
    SQL> create table t(x varchar2(10));
    Table created.
    SQL> insert into t values('admin OK');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> create role rwp identified by oraclexe;
    Role created.
    SQL> grant all on t to rwp;
    Grant succeeded.
    SQL> grant rwp to test;
    Grant succeeded.
    SQL>
    SQL> connect test/oraclexe;
    Connected.
    SQL> select * from session_roles;
    no rows selected
    SQL> select * from admin.t;
    select * from admin.t
    ERROR at line 1:
    ORA-00942: table or view does not exist
    SQL> insert into admin.t values('test OK');
    insert into admin.t values('test OK')
    ERROR at line 1:
    ORA-00942: table or view does not exist
    SQL> commit;
    Commit complete.
    SQL> select * from admin.t;
    select * from admin.t
    ERROR at line 1:
    ORA-00942: table or view does not exist
    SQL>
    SQL> set role rwp identified by oraclexe;
    Role set.
    SQL> select * from session_roles;
    ROLE
    RWP
    SQL> select * from admin.t;
    X
    admin OK
    SQL> insert into admin.t values('test OK');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select * from admin.t;
    X
    admin OK
    test OK
    SQL>10.2 Security Guide says:
    If you are granted a role protected by a password, then you can enable or disable the role by supplying the proper password for the role in a SET ROLE statement. However, if the role is made a default role and enabled at connect time, then the user is not required to enter a password.
    11.1 and 11.2 Secuirty Guide says:
    If a user is granted a role protected by a password, then you can enable or disable the role by supplying the proper password for the role in the SET ROLE statement. You cannot authenticate a password-authenticated role on logon, even if you add it to the list of default roles. You must explicitly enable it with the SET ROLE  statement using the required password.
    Edited by: P. Forstmann on 20 févr. 2010 10:28

  • How to find roles with open field values

    Hello SAP gurus,
    I need to find a way to find roles with open field values. Some kind of report that returns me a list of all roles that, despite having a generated profile, it still contains empty field values in it.
    Is there anything like it available on SAP?
    Thanks
    Antonio

    Some kind of report that returns me a list of all roles that, despite having a generated profile, it still contains empty field values in it
    Hey I am not sure, but seems I might have seen some report like that. Can you try search report named PFCG* / PFUD*
    Again this is either report (SE38/SA38) or may be FM (SE37). I am away from system a bit while and can't recall.
    Regards,
    Arpan Paik

  • Userdefined Roles with transaction codes.

    Dear All,
    Can someone pls let me know how to get the details of the userdefined roles with linked transaction codes, tables in which the data is stored, so that a report can be created to list these details.
    TIA
    Abdul Moghani

    Hi,
    it looks like, this thread has to be posted in the abap forum.
    regards
    Siggi

  • With this new itunes I see you can download old song from other p.cs if they are listed in your itunes with a could next to them. How do I make it so I see the songs on my new itunes on a different computer?

    When I first downloaded itunes 11 I saw all my old song that are on another computer listed in my itunes list on my laptop with a little cloud with an arrow in it next to the songs from my old itunes. When I updated to 11.1 the cloud icon stayed in the top part of the itunes list where you can click name, artist, all that to organize you itunes list but the songs from my old account were gone. I can't remember how, but some how I tuned the songs back on, if you will and all my old songs repaired with the clouds next to them. Well my boyfriend has the cloud smiple in his organize list thing, but no songs from his old itunes list of a different computer like me and he wants those songs back. I have been trying for hours to re-watch the itunes and icloud tutorials but because of my slow wi-fi I can't get the videos to load and they keep freezing my itunes so I can't even shut it down without restarting my laptop, so I need some help on remebering how to make the old songs show up in his itunes. Can anyone please help? By the way we both have Windows 7.

    If you go to settings>music there should be a setting to show all music. Turn that off, and the cloud purchases should disappear. You may need to restart the phone to take efect

  • Report For list of material Master with PO text

    Hi all,
    I need a report whether it is available in Standard SAP or a customized, for List of Material Master with their PO text.
    If any one can help, please reply to this theard.
    Regards,
    Kapil Kulkarni

    To get the material number combined with the PO text you will need the help of an ABAP programmer.  The programmer can create a report for you using the function module READ_TEXT in the function group STXD.  The tables to use are:
    STXH - STXD SAPscript text file header
    STXL - STXD SAPscript text file lines
    The selection screen should have at least the following:
    OBJECT - STXH-TDOBJECT
    NAME - STXH-TDNAME
    LANGUAGE - STXH-TDSPRAS
    TEXTID - STXH-TDID
    You find the information for these fields by going to the PO text entry screen and displaying the header information under Goto -> Header.  For materials, the object is MATERIAL, the name is "material number", the language is "EN", and the text ID is BEST.  You can use this program to get long text in lots of places like information records, purchase order texts, etc.
    Hope this helps.

  • How can I print out a hardcopy list of my bookmarks with the URLs? in English

    I want to print out a hardcopy listing of my bookmarks with URLs, How do I do this?

    You can make the menu bar appear by presssing the Alt key. You can print from the File menu.

  • How do i get a list of all Roles defubed under a particular OrganizationalUnit? How can i use LDAPConnection.search method for this?

     

    Sorry for the typographical mistake.
    Please read the question as:"How do i get a list of all Roles defined under a particular OrganizationalUnit? How can i use LDAPConnection.search method for this?"

  • In iTunes 10, I could type "Sinatra" in the search file, and would get a list of all tracks with "Sinatra" in any field.   In iTunes 11 I get these clever little windows, with nice arrows, but no lists to view.   What am I missing?

    In iTunes 10, I could type "Sinatra" in the search file, and would get a list of all tracks with "Sinatra" in any field.   In iTunes 11 I get these clever little windows, with nice arrows, but no lists to view.   What am I missing?

    Thanks for chipping in.   I discovered something after trying what you suggested.   I have quite a few collections of hits by year from Time Life and Billboard.  I've eliminated duplicate tracks that appear in both collections (or other CDs for that matter), but cross-reference the CD where I deleted the track and placed in in the comments section of the CD track I retained.   If I "search" by song name, only the remaining track appears.   But if I want to hear for example Classic Rock 1964, only those tracks remaining would be there when I pull up that CD.   So, I type "Classic Rock 1964,"  in the search field.  First the boxes on the right of the screen open up showing album icons.  Showing four tracks by album with a button to view 10 more, then four songs with an option to vies 18 more.   I finally noticed that at the top of the boxes is a blue band that reads, :Show Classic Rock 1964 in Music.  When I double click on this blue band, all 24 tracks from the original CD appear in the song list format even though I had deleted two of them because they appeard in a Beach Boys CD.   On those tracks, I had referenced Classic Rock 1964 in the comments field.    So, bottom line, Search will also look in the comments field if you click "filter by all" in the magnifying glass to the left of the search field.   And you can move all tracks that if finds into a song list by double clicking on the blue band.

  • Compound filtering xslt list view web part with _dopostback using javascript/jquery

    Hello,
    I am filtering list view web part as same as the below post,
    http://dcsharepointchick.blogspot.in/2013/05/filter-sharepoint-list-with-partial-postback.html
    here I need to filter the web part with some another condition . I am trying to write another condition in filter attribute of _doPostback(), but it doesn't work.
    Please let me know is there any alternative to achieve compound filtering.
    Regards,
    Balakrishna M.

    Hi Balakrishna,
    According to your description, my understanding is that you want to filter the list view web part with more than one filters.
    I recommend to use the OOB Choice Filter web part to achieve this goal.
    Edit the page where the list view web part exists and then add the Choice Filter web parts to the page based on your need.
    More reference:
    http://office.microsoft.com/en-in/sharepoint-server-help/connect-a-filter-web-part-to-a-list-view-web-part-HA101785233.aspx#_Toc296943684
    Or you use the List Filter Plus Web Part to get the function.
    http://www.kwizcom.com/sharepoint-add-ons/sharepoint-list-filter-plus/overview/
    Here is the link to download the web part:
    http://www.kwizcom.com/sharepoint-add-ons/sharepoint-list-filter-plus/download/
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Podcast List view not updated with iTunes 11.3.1.2

    Podcast List view not updated with iTunes 11.3.1.2
    Windows 7 Enterprise Service Pack 1 / Intel-i7 2.40 GHz / 8GB RAM / 64-bit
    iTunes 11.3.1.2
    After refreshing my Podcast list, some Podcasts with new episodes do not display the "Unplayed" blue dot.
    If the podcast "folder" is expanded by clicking the triangle, the new episodes are shown with a "Unplayed" blue dot.
    A new episode is shown in the My Podcast view, with the correct number of new episodes.
    The new episodes are displayed in the All Unplayed view.
    I've tried deleting all episodes and downloading new episodes from the iTunes Store.
    I've tried Unsubscribing and deleting the podcast, then Subscribing again from the iTunes Store.
    Neither attempt resolved the issue.
    I've seen this issue for a while, and was disappointed to find no change with the iTunes 11.3.1.2 update.

    it finally worked; got my Rush 24/7 downloaded, and it finally found my iPhone after switching from the USB 4 port Hub to a dedicated USB 2.0 slot on my laptop.

Maybe you are looking for

  • Can I upgrade graphics card of my Laptop?

    Hi folks, I want to know whether I can upgrade graphics card of my laptop. Now a days most of the high end games are not working in my laptop and I'm pretty disappointed. Please let me know whether I can do that. My laptop model is HP Pavillion DV5 1

  • Two Fundamental questions on UPGRADE/Patch

    Question 1. If i upgrade from 10.2.0.1.0 to 10.2.0.3.0, should i call this as an Upgrade or Patching? Question 2. If i upgrade(or patch) from 10.2.0.1.0 to 10.2.0.3.0, can i reverse theses changes and go back to 10.2.0.1.0?

  • I can't copy my old iPhoto library from a external HD to my new mac?

    Hi. I just bought a new mac and want to have all my old iphoto pictures from my old mac into my new iPhoto library. I've tried to copy the old iPhoto library into a external HD(works fine), but the problem is that I can't copy it out from the externa

  • How to clean the content in JTextArea?

    I have created a JTextArea to show some calculation results, how to clean the current shown content if I don't want them? Thanks!

  • Distribution Point

    Hello, One server Distribution Point died this morning. 1. Is it possible to disable temporarily (thinking the new server will use the same name and IP ) the distribution Point for this site? Or should I delete it? 2. What are the requirements for a