Report to list the Single Roles contained in each Composite Role...

Hi, 
Can someone tell me how I can produce a report in a 4.6C system that shows the Single rolse contained in all Composite roles?
Thanks
Sharon

Hi Jurjen,
Thankyou for that.
Can you also tell me what the difference is between a "Composite role, Indirect (HR)" and a "composite Role"?  (I see these two Activity Group Types when running a report in SUIM to list users and their activity groups).
Thanks
S

Similar Messages

  • UMX Roles - Is there a report which lists the roles created through UMX

    Hi
    Are there any reports available which will detail the roles created in User Management. We need a listing of the roles created by categories.
    tia
    Kumar

    Hi,
    If you are on 11i, there is no seeded report to list the roles -- Query the tables listed in "Oracle Application Object Library Release Notes, Release 12.1.1 [ID 566521.1]", under "3.8 Oracle User Management - SOX Compliance RBAC Reports" to get those details.
    The (List of Users"/" List of Roles/Responsibilities"/"List of Functions/Permissions"/"List of Data Security Objects) is only available in 12.1.1 and above.
    Thanks,
    Hussein

  • I Need interactive report to list the purchase orders details for a vendor

    I Need interactive report to list the purchase orders details for a vendor that has    interactive drill down options to give the detail of vendor from vendor master.

    Hi
    see this sample report
    this is Customer wise sales orders
    just make similar report just using LFA1, EKKO and EKPO tables instead of KNA1,VBAK,VBAP
    REPORT ZTEJ_INTAB1 LINE-SIZE 103 LINE-COUNT 35(5) NO STANDARD PAGE
    HEADING.
    *TABLES DECLARATION
    TABLES : KNA1, VBAK, VBAP.
    *SELECT OPTIONS
    SELECT-OPTIONS: CUST_NO FOR KNA1-KUNNR.
    *INITIALIZATION
    INITIALIZATION.
    CUST_NO-LOW = '01'.
    CUST_NO-HIGH = '5000'.
    CUST_NO-SIGN = 'I'.
    CUST_NO-OPTION = 'BT'.
    APPEND CUST_NO.
    *SELECTION SCREEN VALIDATION
    AT SELECTION-SCREEN ON CUST_NO.
    LOOP AT SCREEN.
    IF CUST_NO-LOW < 1 OR CUST_NO-HIGH > 5000.
    MESSAGE E001(ZTJ1).
    ENDIF.
    ENDLOOP.
    *BASIC LIST SELECTION
    START-OF-SELECTION.
    SELECT KUNNR NAME1 ORT01 LAND1 INTO
    (KNA1-KUNNR, KNA1-NAME1,KNA1-ORT01,KNA1-LAND1)
    FROM KNA1
    WHERE KUNNR IN CUST_NO.
    WRITE:/1 SY-VLINE,
    KNA1-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    KNA1-NAME1 UNDER 'NAME',
    61 SY-VLINE,
    KNA1-ORT01 UNDER 'CITY',
    86 SY-VLINE,
    KNA1-LAND1 UNDER 'COUNTRY',
    103 SY-VLINE.
    HIDE: KNA1-KUNNR.
    ENDSELECT.
    ULINE.
    *SECONDARY LIST ACCESS
    AT user-command.
    IF SY-UCOMM = 'IONE'.
    PERFORM SALES_ORD.
    ENDIF.
    IF SY-UCOMM = 'ITWO'.
    PERFORM ITEM_DET.
    ENDIF.
    *TOP OF PAGE
    TOP-OF-PAGE.
    FORMAT COLOR 1.
    WRITE : 'CUSTOMER DETAILS'.
    FORMAT COLOR 1 OFF.
    ULINE.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'NAME',
    61 SY-VLINE,
    63 'CITY',
    86 SY-VLINE,
    88 'COUNTRY',
    103 SY-VLINE.
    ULINE.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR SECONDARY LISTS
    TOP-OF-PAGE DURING LINE-SELECTION.
    *TOP OF PAGE FOR 1ST SECONDARY LIST
    IF SY-UCOMM = 'IONE'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'SALES ORDER DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'DATE',
    60 SY-VLINE,
    62 'CREATOR',
    85 SY-VLINE,
    87 'DOC DATE',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR 2ND SECONDARY LIST
    IF SY-UCOMM = 'ITWO'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'ITEM DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'SALES ITEM NO.',
    60 SY-VLINE,
    62 'ORDER QUANTITY',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *END OF PAGE
    END-OF-PAGE.
    ULINE.
    WRITE :'USER :',SY-UNAME,/,'DATE :', SY-DATUM, 85 'END OF PAGE:',
    SY-PAGNO.
    SKIP.
    *& Form SALES_ORD
    *& FIRST SECONDARY LIST FORM
    FORM SALES_ORD .
    SELECT KUNNR VBELN ERDAT ERNAM AUDAT INTO
    (VBAK-KUNNR, VBAK-VBELN, VBAK-ERDAT, VBAK-ERNAM, VBAK-AUDAT)
    FROM VBAK
    WHERE KUNNR = KNA1-KUNNR.
    WRITE:/1 SY-VLINE,
    VBAK-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    VBAK-VBELN UNDER 'SALES ORDER NO.' HOTSPOT ON,
    40 SY-VLINE,
    VBAK-ERDAT UNDER 'DATE',
    60 SY-VLINE,
    VBAK-ERNAM UNDER 'CREATOR',
    85 SY-VLINE,
    VBAK-AUDAT UNDER 'DOC DATE',
    103 SY-VLINE.
    HIDE : VBAK-VBELN.
    ENDSELECT.
    ULINE.
    ENDFORM. " SALES_ORD
    *& Form ITEM_DET
    *& SECOND SECONDARY LIST FORM
    FORM ITEM_DET .
    SELECT VBELN POSNR KWMENG INTO
    (VBAP-VBELN, VBAP-POSNR, VBAP-KWMENG)
    FROM VBAP
    WHERE VBELN = VBAK-VBELN.
    WRITE : /1 SY-VLINE,
    VBAP-VBELN UNDER 'SALES ORDER NO.',
    40 SY-VLINE,
    VBAP-POSNR UNDER 'SALES ITEM NO.',
    60 SY-VLINE,
    VBAP-KWMENG UNDER 'ORDER QUANTITY',
    103 SY-VLINE.
    ENDSELECT.
    ULINE.
    ENDFORM. " ITEM_DET
    REPORT demo_list_at_pf.
    START-OF-SELECTION.
    WRITE 'Basic List, Press PF5, PF6, PF7, or PF8'.
    AT pf5.
    PERFORM out.
    AT pf6.
    PERFORM out.
    AT pf7.
    PERFORM out.
    AT pf8.
    PERFORM out.
    FORM out.
    WRITE: 'Secondary List by PF-Key Selection',
    / 'SY-LSIND =', sy-lsind,
    / 'SY-UCOMM =', sy-ucomm.
    ENDFORM.
    After executing the program, the system displays the basic list. The user can press the function keys F5 , F6 , F7 , and F8 to create secondary lists. If, for example, the 14th key the user presses is F6 , the output on the displayed secondary list looks as follows:
    Secondary List by PF-Key Selection
    SY-LSIND = 14
    SY-UCOMM = PF06
    Example for AT USER-COMMAND.
    REPORT demo_list_at_user_command NO STANDARD PAGE HEADING.
    START-OF-SELECTION.
    WRITE: 'Basic List',
    / 'SY-LSIND:', sy-lsind.
    TOP-OF-PAGE.
    WRITE 'Top-of-Page'.
    ULINE.
    TOP-OF-PAGE DURING LINE-SELECTION.
    CASE sy-pfkey.
    WHEN 'TEST'.
    WRITE 'Self-defined GUI for Function Codes'.
    ULINE.
    ENDCASE.
    AT LINE-SELECTION.
    SET PF-STATUS 'TEST' EXCLUDING 'PICK'.
    PERFORM out.
    sy-lsind = sy-lsind - 1.
    AT USER-COMMAND.
    CASE sy-ucomm.
    WHEN 'FC1'.
    PERFORM out.
    WRITE / 'Button FUN 1 was pressed'.
    WHEN 'FC2'.
    PERFORM out.
    WRITE / 'Button FUN 2 was pressed'.
    WHEN 'FC3'.
    PERFORM out.
    WRITE / 'Button FUN 3 was pressed'.
    WHEN 'FC4'.
    PERFORM out.
    WRITE / 'Button FUN 4 was pressed'.
    WHEN 'FC5'.
    PERFORM out.
    WRITE / 'Button FUN 5 was pressed'.
    ENDCASE.
    sy-lsind = sy-lsind - 1.
    FORM out.
    WRITE: 'Secondary List',
    / 'SY-LSIND:', sy-lsind,
    / 'SY-PFKEY:', sy-pfkey.
    ENDFORM.
    When you run the program, the system displays the following basic list with a the page header defined in the program:
    You can trigger the AT LINE-SELECTION event by double-clicking a line. The system sets the status TEST and deactivates the function code PICK. The status TEST contains function codes FC1 to FC5. These are assigned to pushbuttons in the application toolbar. The page header of the detail list depends on the status.
    Here, double-clicking a line no longer triggers an event. However, there is now an application toolbar containing five user-defined pushbuttons. You can use these to trigger the AT USER-COMMAND event. The CASE statement contains a different reaction for each pushbutton.
    For each interactive event, the system decreases the SY-LSIND system field by one, thus canceling out the automatic increase. All detail lists now have the same level as the basic list and thus overwrite it. While the detail list is being created, SY-LSIND still has the value 1.
    Regards
    Anji

  • Report, tcode, list or anything that contained a price unit

    HI,
    Is there any report, tcode, list or anything that contained a price unit (price unit in sales order) beside VA01, VA02 & VA03 (standard SAP) ?
    Thanks & Best Regards,
    Saiful arif

    Dear Saiful arif
    Go to V/LD, input 28 in Pricing Report and execute.  There remove the From Date range and execute.  You will get all condition types for a given customer.
    On the other hand, if you want to see all pricing conditions from sale orders, go to SE16, input table KONV and execute.
    thanks
    G. Lakshmipathi

  • Daily check report to list the vendor name, material, quantity

    hi friends,
    can you help me to write daily check report to list the vendor name, materials and quanitity?
    thanks in advance

    HI ,
    What do you mean my daily check report..
      Do you want to see the status of the PO sent to a Vendor on a daily basis..
    Thanks
    Mahesh

  • Hi,  We are developing quite a few excel worksheet reports. The reports dont show the cells if contain formulas ( when opened in iPad or ipod  ),  is there any good solutions .

    Hi, 
    We are developing quite a few excel worksheet reports.
    The reports dont show the cells if contain formulas ( when opened in iPad or ipod  ),
    Is there any good solutions .
    Thanks.

    There is no version of Excel for iPads.  iPads come with something that lets you view the contents of Excel files but it implements only the common easy features and there are (literally) hundreds of things you can do in Excel that it doesn't know how to show on the screen, including some functions.
    If you intend to work with spreadsheets on an iPad I suggest you buy Numbers for iPad
    http://www.apple.com/apps/iwork/numbers/
    which understands more (but still not 100%) of the things that Excel does.  It is so cheap that you can probably afford to buy a copy just to see whether it does what you want.
    If you are doing things with spreadsheets and intend to be primarily working on iPads then I suggest you actually use Numbers on a Mac as well, rather than using Excel at all.

  • Need report to list the system name, client status, client version, OU name info for a particular collection of systems

    Hi Friends,
    Need report to list the system name, client status, client version, OU name info for a particular collection of systems.
    Please help as it would be appreciated much as i am not familiar with creating custom reports in SCCM. Thanks.
    Regards,
    Thangaraj

    Select v_R_System.Name0, v_R_System.Client_Version0, v_RA_System_SystemOUName.System_OU_Name0,
    case when v_R_System.Client0 = '1' then 'Client is Installed'
    else 'Client Not Installed'
    end as 'Client Status'
    FROM v_R_System JOIN v_RA_System_SystemOUName ON v_R_System.ResourceID = v_RA_System_SystemOUName.ResourceID WHERE System_OU_Name0 LIKE '%HR'
    John Marcum | Microsoft MVP - Enterprise Client Management
    My blog: System Center Admin | Twitter:
    @SCCM_Marcum | Linkedin:
    John Marcum

  • Generating annual report and list the data into JTable

    Hi, I am stuck with my project. I know that my logic is wrong, but I couldn't figure out the solution. Please help me.
    I hava a database, one of the table is the booking information.
    I need to generate a report which shows the number of booking for each companies for each month.
    I have three data in my database, two different companies(XX and YY), with three different months(Jan, Feb, Jul).
    The problem that I encountered is that the data shown is inaccurate. It showed 6 rows of data, and the number of booking is incorrect.
    It showed :
    Company Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
    XX 1 0 0 0 0 0 0 0 0 0 0 0
    XX 1 1 0 0 0 0 0 0 0 0 0 0
    YY 1 1 0 0 0 0 1 0 0 0 0 0
    How can I loop for different companies and add the number of booking each time and get the right output as follows?
    Company Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
    XX 1 1 0 0 0 0 0 0 0 0 0 0
    YY 0 0 0 0 0 0 1 0 0 0 0 0
    This is my partial code:
    ArrayList stringList = dao.retrieveAllBooking();
    for (int i = 0; i < stringList.size(); i++) {
    ab = (AllBooking) stringList.get(i);
    d = ab.getDATE_OF_USE_TO();
    StringTokenizer ss = new StringTokenizer((String) d, "/");
    String day = ss.nextToken();
    String month = ss.nextToken();
    String year = ss.nextToken();
    Org = o.getORG_ID();
    if(month.equals("JAN")){
    JanDR++;
    if(month.equals("FEB")){
    FebDR++;
    if(month.equals("MAR")){
    MarDR++;
    if(month.equals("APR")){
    // Apr = ab.getNO_OF_REQ();
    AprDR++;
    if(month.equals("MAY")){
    //MayDR = ab.getNO_OF_REQ();
    MayDR++;
    if(month.equals("JUN")){
    // Jun = ab.getNO_OF_REQ();
    JunDR++;
    if(month.equals("JUL")){                               
    JulDR++;
    if(month.equals("AUG")){
    AugDR++;
    if(month.equals("SEP")){
    SepDR++;
    if(month.equals("OCT")){
    OctDR++;
    if(month.equals("NOV")){
    NovDR++;
    if(month.equals("DEC")){
    DecDR++;
    Object[] data={Org,JanDR, FebDR, MarDR, AprDR, MayDR, JunDR, JulDR, AugDR, SepDR, OctDR, NovDR, DecDR, JanSR, FebSR, MarSR, AprSR, MaySR, JunSR, JulSR, AugSR, SepSR, OctSR, NovSR, DecSR};
    tableModel.addRow(data); //add the data to the table.
    I'll appreciate for your help. Thanks.

    Off hand, it appears perhaps under certain circumstances you need to insert a new record, whereas under other circumstances you need to update (that is to say modify) the record by retrieving it, changing it, then updating it. If you pepper your code with System.out.println() statements, you can see where your problems occur in the code.
    I say you may have inserted a record instead of updated due to your statement here. Looks like XX should have been one record rather than two.
    Got:
    XX 1 0 0 0 0 0 0 0 0 0 0 0
    XX 1 1 0 0 0 0 0 0 0 0 0 0
    YY 1 1 0 0 0 0 1 0 0 0 0 0
    Expected:
    XX 1 1 0 0 0 0 0 0 0 0 0 0
    YY 0 0 0 0 0 0 1 0 0 0 0 0

  • SIngle riole that belong to composite role with user

    HI,
    There is option when user are belong to single role and also belong to composite roles (that include the single role ) ?
    BR
    Nina

    There is option when user are belong to single role and also belong to composite roles (that include the single role ) ?
    SIngle role is created by pfcg where you assign the role name n safe it as single role n then after t codes been provided the user has been assigned accordingly
    Composite role is same just it contains many roleson to one and similarly the user has been assigned
    Thx
    Mysterious

  • Report for counting the number of interfaces in each device

    Hi, we have LMS 4.0.1 and we would like to know how many gigabitEthernet interfaces and how many fastEthernet interfaces does each device have. If we create a custom report template with the conditions "Interface:Type:Contains:Gi" OR "Interface:Type:Contains:Fa" we get the interfaces that match the criteria but we also need the count, and this is what we don't know how to do it.
    Does anyone know how can we do it?

    Hi
    Suppress results rows for number of items..that is 10,20...
    Calculate result rows only for sales order ...1000000...
    You should get intended result with this settings
    Regards
    N Ganesh

  • What is the need of workflow tab in composite role.

    I have created one composite role. For that i have assigned two user defined roles. By clicking those roles it is showing one extra tab called workflow. Then what is the need of this workflow tab in a role and what it contains.

    Hello Kumar,
    Check these links for this
    http://help.sap.com/saphelp_nw04s/helpdata/en/07/5430fbdb39fb4d9abb56754e039d0d/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/ab/e70538389511d5974400a0c930dcc1/content.htm
    Award points if helpful,
    Regards,
    Raju.

  • Report that lists the last Public Response on a ticket

    Does anyone have a report that they would share that shows all open tickets with the last Public Response made on the ticket?  A ticket might have several internal notes added to it, but I only need the last Public Response comment to show.  Thanks.
    William
    This topic first appeared in the Spiceworks Community

    Hi,
    The following thread may get you start.
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/559e8ae9-15bb-482f-8981-535e0f77b01f/sccm-queries-of-ad-groups
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Consumer Report Also List the iPhone 4 as BEST current smartphone

    Could we remember that a little. Please?
    http://bit.ly/btmUPX

    Except no one has to pay for that crap:
    http://digitaldaily.allthingsd.com/20100712/consumer-reports-by-the-way-the-ipho ne-4-is-also-the-best-smartphone-on-the-market/

  • SAP Security Report for single and composite roles

    Hi
      I have a requirement to create a cutomize report in SAP Security.
    I have to display Composite roles,corresponding single roles,the tcodes assigned to those single roles and the description of t- codes. The selection screen has composite roles,single role and T-code which are optional.User can enter selection in any of the selection critreria.How should I go on this?If user gives only composite roles on the selection for e.g 'TEST'. for this role I get suppose 3 child roles 'TEST1' 'TEST2' 'TEST3' from table AGR_AGRS.Now to get the tcodes i go to table 'AR_1251' and I get the tcodes.
    But if user give only single role on the selection for eg 'TEST2' ,for this single role 'TEST2' there would be multiple composite roles.for e.g, 'TEST' 'SAP1' 'SAP2' etc..Now if go to get the tcodes for this single role in AGR_1251,I will ceatainly get the tcodes for eg MM01,FB01,etc.But then how would I know whether MM01 belongs to composite role 'TEST' SAP1' or SAP2' for the single role 'TEST2'.
    Please advise.
    Thanks
    Edited by: Julius Bussche on Aug 13, 2009 4:52 PM
    Subject title improved

    I though of seperate selection options for singles and composites, but you also said:
    > But if user give only single role on the selection for eg 'TEST2' ,for this single role 'TEST2' there would be multiple composite roles.
    My suggestion would be to build better single roles, but that is just me...
    Cheers,
    Julius

  • Report in idm which lists the system ip' frm where Application is accessed

    Hi All,
    Can any one get me the name of the report which list the ip's of the system from where the idm Application is accessed.
    Thanks in Advance

    There's a built-in "today's activity" report that comes out of the box. You should be able to see the client's IP address in any of the "login" actions of type "user". It's an auditlog report.

Maybe you are looking for

  • What's the latest os for macbook pro 2.1

    I have a MacBook Pro 2.1 which I believe is the first 17" aluminum model from 2006. I need to know if it would run on Mountain Lion. Apple system requirements state that the earliest MBP to qualify is from mid to late 2007. It currently has OS10.6.8

  • DVD burner not recognized

    I have been thru 2 external DVD burners Maxwell & LG with USB connections. Both worked OK until I used Lightscribe then they are not reconized. They show up in system profiler but dvd icon will not come up on desktop. I threw out light scribe, discon

  • Oracle Maps doesn't work inside a table cell?

    Hello everyone, I have been using Oracle Maps without a table, but now I need to put the display (<div>) inside a table cell for organization purposes. I noticed that it simply doesn't display the map if I put it there. This works and displays the ma

  • WCCP Creates additional tunnel interfaces

    Hi, I'm having 2911 routers with Cisco WAAS module installed. While configuring the WCCP on the 2911 router, I see additional interface tunnels gets automatically created once I issue ip wccp 61 and ip wccp 62. It gives these tunnel ip address from 1

  • Problem still there, Please Help me, it is urgent, thanks a lot.

    I still can't solve my problem, now I will try to figure out the problem with less codes. I just try to extends AbstractTableModel, and all my data is saved in a Vector, when I try to insert a blank row into the table, it deadlocked. I found the data