Authorization issue in BI system.

Hi,
Having a authorization issue in BI system.
user trying to run a query in and attempt to drill down by customer, he gets customer details but some of the customers are missing...
Does the authorization granted in BI system based on customers? Is it a security issue?
pls help...
Thanks...

Hi,
Please execute the query with your id(developer id who will be having access to all data) first. Check if you are able to see all the customer data. If you are able to see all the data then the user is restricted with some authorizations. ( usually the authorizations are done on sales organization, company codes, plant..etc.. please check how it is in your project...)
If you are not able to see all the customer data, then check in the infoprovider on which the query is built and do your analysis.
Check in the roles assigned to the user.
Hope it helps.
Edited by: Maddy on Apr 21, 2011 6:42 AM

Similar Messages

  • Secured WebDAV Mounted Volume Authorization Issues

    I use a secure WebDAV mounted volume from myDisk.se and up until the latest Security Update have had zero issues being able to manipulate files and folders as I would on a normal volume. However, since the installation of the Security Update (2009-004 (PowerPC) 1.0) I find weird things happening with this mounted volume:
    1) I am able to mount the secured WebDAV share using my security credentials.
    2) I can create a default "untitled" folder but when I try to change its name, the WebDAV authorization dialog pops up and despite entering the same credentials (why, I am not sure as the volume has already been properly credentialed in order to be mounted), access is denied.
    3) Trying to create a file within a folder on the mounted WebDAV volume I previously created pre-update causes the same authorization issue.
    I have no other WebDAV shares I can try to mount from any other companies so I am not sure if this is a myDisk issue or one borne from the Security Update. I am not a .Mac/MobileMe user and that info is not filled out in System Preferences. The internal hard drive has been meticulously maintained with Disk and Permissions repair being run both before and after each and every software update installed. Likewise, the volume's structure is also checked both before and after and shows no need for repairs.
    Any ideas? Perhaps there is a corrupted file somewhere that's affecting the authorizations needed by this third-party WebDAV volume?
    The machine that has this problem is the last model iBook G4/1.33GHz 12" display, 1.5GB RAM, and a 100GB 5400rpm HD which replaced the stock OEM 40GB 4200rpm drive about one year ago.
    I'm not willing to do an Archive and Install at this point as the loss of the WebDAV access to my online volume is not critical. Inconvenient as heck but not to the point where I'm willing (or able) stop my normal work to spend the hours it will take to get WebDAV access back.
    Thanks in advance for any insights.

    same problem here with webdav, I can't mount my idisk from university network on Mac Pro 10.5.3 (although it mounts fine from home network on both ibook and PMG5 10.5.3). Everything was fine with 10.5.2 and I already re-installed 10.5.3 combo. Other bugs as well with .Mac prefs (keeps crashing, sometimes it shows the available space on idisk but still no mounting, with error -35 or -8086), but .Mac sync is OK
    Jun 11 12:34:21 webdavfs_agent[579]: mounting as authenticated user
    Jun 11 12:34:22 kernel[0]: webdav server: http://idisk.mac.com/[username]/: connection is dead
    Jun 11 12:34:22 KernelEventAgent[75]: tid 00000000 received VQ_DEAD event (32)
    Jun 11 12:34:22 kernel[0]: webdav_sendmsg: sock_connect() = 61
    Jun 11 12:34:22 KernelEventAgent[75]: tid 00000000 type 'webdav', mounted on '/Volumes/[username]', from 'http://idisk.mac.com/[username]/', dead
    Jun 11 12:34:22 kernel[0]: webdav_sendmsg: sock_connect() = 61
    Jun 11 12:34:22 KernelEventAgent[75]: tid 00000000 found 1 filesystem(s) with problem(s)
    Jun 11 12:34:22 kernel[0]: webdav_sendmsg: sock_connect() = 61
    Jun 11 12:34:52: --- last message repeated 1 time ---

  • Authorization issue in Info spoke

    Hi all,
    I am facing some authorization issue when executing info spoke in process chain.
    Info spoke is working fine in direct Scheduling (both background and Dialog).
    Am getting this error after execution of process chain
    "System error: RSDRC / FORM AUTHORITY_CHECK RSDRC / FORM AUTHORITY_CHECK R"
    "System error: RSDRC / FUNC RSDRC_BASIC_CUBE_DATA_GET RSDRC / FUNC RSDRC_B"
    "System error: RSDRC / FORM DATA_GET RSDRC / FORM DATA_GET RSDRC / FORM DA"
    "Extraction Cube : Error in DataManager API".
    I dont know why this problem comes.
    Can anyone tel me what went wrong and how to solve it.
    Thanks in advance.
    Kind regards,
    Shanbagavalli.S

    Hi All,
        The above issue is getting due to # character in text at end(e.g ljdfsaa##). After removing # characters in text issue got resolved.
    Thansk,
    Manjunatha

  • ABAP dump on authorization issue

    hello,
    I am not sure if this is the correct forum for this or not.
    I have an ABAP program that was written before I got here that performs the following statement
    <b>OPEN DATASET w_file FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.</b>
    where w_file is a file on the app server. the users that run this program have no issues.
    I have made a copy of the program to add some additional functionality and when the users run this program, the program is abending with the following error messages when trying to execute the same command stated above
    Runtime Error      OPEN_DATASET_NO_AUTHORITY
    Except.               CX_SY_FILE_AUTHORITY
    I have talking to the security person and he is going to make another role with the authorizations needed to run the program but I am curious as to why the same person can run the one program successfully and my program (which does basically the same thing when it comes to the file processing) abends with the authorization issue.
    thanks in advance for your help

    I believe you can use FM to check if user has sufficient authorization.
    NOTE: authority-check uses PROGRAM NAME, so it looks like your profile should be updated with new program name.
    Here is what help says :
                                                                                    Check file access authorization                                                                               
    Functionality                                                                               
    This function module allow you to check the user's authorization to          
        access files (with the key words OPEN DATASET, READ DATASET, TRANSFER and    
        DELETE DATASET). A check should be performed before opening a file.                                                                               
    The authorization check is performed uwing the authorization object          
        S_DATASET.                                                                               
    Description of function parameters:                                                                               
    o  PROGRAM: Name of the ABAP/4 program that contains the file access. If     
           no program name is specified, the system assumes the current program.                                                                               
    o  ACTIVITY: Access type. The possible values are:                                                                               
    -  READ:              Read file                                           
           -  WRITE:             Change file                                         
           -  READ_WITH_FILTER:  Read file with filter function                      
           -  WRITE_WITH_FILTER: Change file with filter function                    
           -  DELETE:            Delete file                                                                               
    o  FILENAME: Name of accessed file                                                                               
    Example                                                                               
    TYPE-POOLS SABC.                                                                               
    CALL FUNCTION 'AUTHORITY_CHECK_DATASET'                                      
             EXPORTING  PROGRAM          = 'ZDATASET'                                
                        ACTIVITY         = SABC_ACT_READ                             
                        FILENAME         = '/tmp/sapv01'                             
             EXCEPTIONS NO_AUTHORITY     = 1                                         
                        ACTIVITY_UNKNOWN = 2.                                                                               
    Notes                                                                               
    The values to be passed as the ACTIVITY are defined as constants in the      
        TYPE-POOL SABC.

  • S_CTS_ADMI Authorization issue

    Hi Experts,
    Every now and again a user sends me a SU53 with the error requesting access to S_CTS_ADMI field TABL. The user of this morning is trying to release a purchase order using transaction ME29N. Why would the SU53 indicate that the user want to maintain the control tables of the Change and Transport System in Production when they are trying to release a purchase order? I am running a trace ST01 but it's not helping.
    Could you please help me to resolve issue.
    Thanks
    Pavel

    Hi
    Gowri is perfectly ok. Below Objects checked.
    M_BEST_BSA
    M_BEST_EKG
    M_BEST_EKO
    M_BEST_WRK
    Along with that M_EINK_FRG also get checked.
    Check for access to all of the above Objects in user master records. Before that check with MM team to get these values of the PO that the approver is trying to release.
    1) Document Type : Relate with M_BEST_BSA
    2) Purchasing Group : Relate to M_BEST_EKG
    3) Purchasing Organization : Relate to M_BEST_EKO
    4) Plant : Relate to M_BEST_WRK
    5) Release code & release Group : Relate to Object M_EINK_FRG
    You also can get these information through ME23N
    If all of the above matches with user master record and PO then there is no further authorization issue. Rest on MM team !!!!!
    Best of luck...
    Arpan

  • Authorization issue during Jump Query in BI

    Hi,
    We are facing an issue in BI system, whr user is trying to use and query and jump query [also called, report to report interface (RRI) ]
    But user is getting authorization error while jumping from main query to the other query?
    Could you please help on how to identify what authorization is missing?
    Thanks,
    Umesh C

    Characteristic     Content(in SQL Format)
    0COMP_CODE
    0CREDITOR
    0TCAACTVT
         ( 0COMP_CODE < '0104'
    OR 0COMP_CODE > '0105'
    AND 0COMP_CODE < '0110'
    OR 0COMP_CODE > '0111'
    AND 0COMP_CODE < '0129'
    OR 0COMP_CODE > '0130'
    AND 0COMP_CODE < '0147'
    OR 0COMP_CODE > '0149'
    AND 0COMP_CODE < '0215'
    OR 0COMP_CODE > '0216'
    AND 0COMP_CODE < '0234'
    OR 0COMP_CODE > '0235'
    AND 0COMP_CODE < '0253'
    OR 0COMP_CODE > '0254'
    AND 0COMP_CODE < '0297'
    OR 0COMP_CODE > '0298'
    AND 0COMP_CODE < '0304'
    OR 0COMP_CODE > '0305'
    AND 0COMP_CODE < '0325'
    OR 0COMP_CODE > '0331'
    AND 0COMP_CODE < '0400'
    OR 0COMP_CODE > '0401'
    AND 0COMP_CODE < '0403'
    OR 0COMP_CODE > '0405'
    AND 0COMP_CODE < '0407'
    OR 0COMP_CODE > '0408'
    AND 0COMP_CODE < '0411'
    OR 0COMP_CODE > '0412'
    AND 0COMP_CODE < '0414'
    OR 0COMP_CODE > '0415'
    AND 0COMP_CODE < '0422'
    OR 0COMP_CODE > '0424'
    AND 0COMP_CODE < '0480'
    OR 0COMP_CODE > '0481'
    AND 0COMP_CODE < '0483'
    OR 0COMP_CODE > '0485'
    AND 0COMP_CODE < '0500'
    OR 0COMP_CODE > '0503'
    AND 0COMP_CODE < '0505'
    OR 0COMP_CODE > '0508'
    AND 0COMP_CODE < '0510'
    OR 0COMP_CODE > '0513'
    AND 0COMP_CODE < '0515'
    OR 0COMP_CODE > '0516'
    AND 0COMP_CODE < '0518'
    OR 0COMP_CODE > '0523'
    AND 0COMP_CODE < '0525'
    OR 0COMP_CODE > '0526'
    AND 0COMP_CODE < '0528'
    OR 0COMP_CODE > '0529'
    AND 0COMP_CODE < '0530'
    OR 0COMP_CODE > '0532'
    AND 0COMP_CODE < '0537'
    OR 0COMP_CODE > '0538'
    AND 0COMP_CODE < '0540'
    OR 0COMP_CODE > '0545'
    AND 0COMP_CODE < '0547'
    OR 0COMP_CODE > '0548'
    AND 0COMP_CODE < '0550'
    OR 0COMP_CODE > '0551'
    AND 0COMP_CODE < '0553'
    OR 0COMP_CODE > '0555'
    AND 0COMP_CODE < '0557'
    OR 0COMP_CODE > '0558'
    AND 0COMP_CODE < '0560'
    OR 0COMP_CODE > '0561'
    AND 0COMP_CODE < '0568'
    OR 0COMP_CODE > '0569'
    AND 0COMP_CODE < '0573'
    OR 0COMP_CODE > '0577'
    AND 0COMP_CODE < '0579'
    OR 0COMP_CODE > '0582'
    AND 0COMP_CODE < '0585'
    OR 0COMP_CODE > '0586'
    AND 0COMP_CODE < '0590'
    OR 0COMP_CODE > '0594'
    AND 0COMP_CODE < '0602'
    OR 0COMP_CODE > '0603'
    AND 0COMP_CODE < '0618'
    OR 0COMP_CODE > '0626'
    AND 0COMP_CODE < '0635'
    OR 0COMP_CODE > '0637'
    AND 0COMP_CODE < '0642'
    OR 0COMP_CODE > '0644'
    AND 0COMP_CODE < '0648'
    OR 0COMP_CODE > '0649'
    AND 0COMP_CODE < '0690'
    OR 0COMP_CODE > '0691'
    AND 0COMP_CODE < '0731'
    OR 0COMP_CODE > '0733'
    AND 0COMP_CODE < '0790'
    OR 0COMP_CODE > '0791'
    AND 0COMP_CODE < '0824'
    OR 0COMP_CODE > '0825'
    AND 0COMP_CODE < '0870'
    OR 0COMP_CODE > '0871'
    AND 0COMP_CODE < '0895'
    OR 0COMP_CODE > '0896'
    AND 0COMP_CODE < '0912'
    OR 0COMP_CODE > '0913'
    AND 0COMP_CODE < '0962'
    OR 0COMP_CODE > '0963'
    AND 0COMP_CODE < '1006'
    OR 0COMP_CODE > '1007'
    AND 0COMP_CODE < '1010'
    OR 0COMP_CODE > '1011'
    AND 0COMP_CODE < '1024'
    OR 0COMP_CODE > '1029'
    AND 0COMP_CODE < '1055'
    OR 0COMP_CODE > '1056'
    AND 0COMP_CODE < '1058'
    OR 0COMP_CODE > '1061'
    AND 0COMP_CODE < '1097'
    OR 0COMP_CODE > '1100'
    AND 0COMP_CODE < '1108'
    OR 0COMP_CODE > '1109'
    AND 0COMP_CODE < '1112'
    OR 0COMP_CODE > '1124'
    AND 0COMP_CODE < '1126'
    OR 0COMP_CODE > '1136'
    AND 0COMP_CODE < '1138'
    OR 0COMP_CODE > '1139'
    AND 0COMP_CODE < '1172'
    OR 0COMP_CODE > '1175'
    AND 0COMP_CODE < '1179'
    OR 0COMP_CODE > '1181'
    AND 0COMP_CODE < '1200'
    OR 0COMP_CODE > '1224'
    AND 0COMP_CODE < '1228'
    OR 0COMP_CODE > '1229'
    AND 0COMP_CODE < '1231'
    OR 0COMP_CODE > '1234'
    AND 0COMP_CODE < '1236'
    OR 0COMP_CODE > '1237'
    AND 0COMP_CODE < '1325'
    OR 0COMP_CODE > '1326'
    AND 0COMP_CODE < '1503'
    OR 0COMP_CODE > '1504'
    AND 0COMP_CODE < '1651'
    OR 0COMP_CODE > '1663'
    AND 0COMP_CODE < '1667'
    OR 0COMP_CODE > '1675'
    AND 0COMP_CODE < '1677'
    OR 0COMP_CODE > '1683'
    AND 0COMP_CODE < '1686'
    OR 0COMP_CODE > '1688'
    AND 0COMP_CODE < '1700'
    OR 0COMP_CODE > '1704'
    AND 0COMP_CODE < '1707'
    OR 0COMP_CODE > '1720'
    AND 0COMP_CODE < '1727'
    OR 0COMP_CODE > '1731'
    AND 0COMP_CODE < '1788'
    OR 0COMP_CODE > '1796'
    AND 0COMP_CODE < '1800'
    OR 0COMP_CODE > '1801'
    AND 0COMP_CODE < '1889'
    OR 0COMP_CODE > '1895'
    AND 0COMP_CODE < '1905'
    OR 0COMP_CODE > '1906'
    AND 0COMP_CODE < '1910'
    OR 0COMP_CODE > '1912'
    AND 0COMP_CODE < '1920'
    OR 0COMP_CODE > '1926'
    AND 0COMP_CODE < '1976'
    OR 0COMP_CODE > '1977'
    AND 0COMP_CODE < '2001'
    OR 0COMP_CODE > '2003'
    AND 0COMP_CODE < '2006'
    OR 0COMP_CODE > '2019'
    AND 0COMP_CODE < '2205'
    OR 0COMP_CODE > '2208'
    AND 0COMP_CODE < '2300'
    OR 0COMP_CODE > '2307'
    AND 0COMP_CODE < '2315'
    OR 0COMP_CODE > '2325'
    AND 0COMP_CODE < '2365'
    OR 0COMP_CODE > '2366'
    AND 0COMP_CODE < '2380'
    OR 0COMP_CODE > '2381'
    AND 0COMP_CODE < '2394'
    OR 0COMP_CODE > '2395'
    AND 0COMP_CODE < '2453'
    OR 0COMP_CODE > '2454'
    AND 0COMP_CODE < '2489'
    OR 0COMP_CODE > '2493'
    AND 0COMP_CODE < '2500'
    OR 0COMP_CODE > '2505'
    AND 0COMP_CODE < '2565'
    OR 0COMP_CODE > '2566'
    AND 0COMP_CODE < '5154'
    OR 0COMP_CODE > '5155'
    AND 0COMP_CODE < '5208'
    OR 0COMP_CODE > '5210'
    AND 0COMP_CODE < '5301'
    OR 0COMP_CODE > '5302'
    AND 0COMP_CODE < '5502'
    OR 0COMP_CODE > '5503'
    AND 0COMP_CODE < '5507'
    OR 0COMP_CODE > '5508'
    AND 0COMP_CODE < '5592'
    OR 0COMP_CODE > '5593'
    AND 0COMP_CODE < '5595'
    OR 0COMP_CODE > '5596'
    AND 0COMP_CODE < '5916'
    OR 0COMP_CODE > '5917'
    AND 0COMP_CODE < '5922'
    OR 0COMP_CODE > '5923'
    AND 0COMP_CODE < '5992'
    OR 0COMP_CODE > '5993'
    AND 0COMP_CODE < '6731'
    OR 0COMP_CODE > '6732'
    AND 0COMP_CODE < '7000'
    OR 0COMP_CODE > '7001'
    AND 0COMP_CODE < '7483'
    OR 0COMP_CODE > '7484'
    AND 0COMP_CODE < '8000'
    OR 0COMP_CODE > '8004'
    AND 0COMP_CODE < '8008'
    OR 0COMP_CODE > '8009'
    AND 0COMP_CODE < '8036'
    OR 0COMP_CODE > '8042'
    AND 0COMP_CODE < '8050'
    OR 0COMP_CODE > '8051'
    AND 0COMP_CODE < '8059'
    OR 0COMP_CODE > '8060'
    AND 0COMP_CODE < '8100'
    OR 0COMP_CODE > '8102'
    AND 0COMP_CODE < '8748'
    OR 0COMP_CODE > '8750'
    AND 0COMP_CODE < '9101'
    OR 0COMP_CODE > '9124'
    AND 0COMP_CODE < '9126'
    OR 0COMP_CODE > '9131'
    AND 0COMP_CODE < '9133'
    OR 0COMP_CODE > '9148'
    AND 0COMP_CODE < '9152'
    OR 0COMP_CODE > '9167'
    AND 0COMP_CODE < '9169'
    OR 0COMP_CODE > '9170'
    AND 0COMP_CODE < '9173'
    OR 0COMP_CODE > '9178'
    AND 0COMP_CODE < '9183'
    OR 0COMP_CODE > '9186'
    AND 0COMP_CODE < '9188'
    OR 0COMP_CODE > '9199'
    AND 0COMP_CODE < '9202'
    OR 0COMP_CODE > '9204'
    AND 0COMP_CODE < '9206'
    OR 0COMP_CODE > '9222'
    AND 0COMP_CODE < '9224'
    OR 0COMP_CODE > '9225'
    AND 0COMP_CODE < '9228'
    OR 0COMP_CODE > '9230'
    AND 0COMP_CODE < '9232'
    OR 0COMP_CODE > '9237'
    AND 0COMP_CODE < '9239'
    OR 0COMP_CODE > '9262'
    AND 0COMP_CODE < '9264'
    OR 0COMP_CODE > '9269'
    AND 0COMP_CODE < '9271'
    OR 0COMP_CODE > '9274'
    AND 0COMP_CODE < '9276'
    OR 0COMP_CODE > '9288'
    AND 0COMP_CODE < '9291'
    OR 0COMP_CODE > '9311'
    AND 0COMP_CODE < '9313'
    OR 0COMP_CODE > '9314'
    AND 0COMP_CODE < '9316'
    OR 0COMP_CODE > '9339'
    AND 0COMP_CODE < '9502'
    OR 0COMP_CODE > '9503'
    AND 0COMP_CODE < '9505'
    OR 0COMP_CODE > '9508'
    AND 0COMP_CODE < '9512'
    OR 0COMP_CODE > '9515'
    AND 0COMP_CODE < '9521'
    OR 0COMP_CODE > '9523'
    AND 0COMP_CODE < '9525'
    OR 0COMP_CODE > '9526'
    AND 0COMP_CODE < '9529'
    OR 0COMP_CODE > '9531'
    AND 0COMP_CODE < '9540'
    OR 0COMP_CODE > '9541'
    AND 0COMP_CODE < '9543'
    OR 0COMP_CODE > '9545'
    AND 0COMP_CODE < '9550'
    OR 0COMP_CODE > '9551'
    AND 0COMP_CODE < '9557'
    OR 0COMP_CODE > '9558'
    AND 0COMP_CODE < '9565'
    OR 0COMP_CODE > '9566'
    AND 0COMP_CODE < '9568'
    OR 0COMP_CODE > '9570'
    AND 0COMP_CODE < '9585'
    OR 0COMP_CODE > '9587'
    AND 0COMP_CODE < '9592'
    OR 0COMP_CODE > '9596'
    AND 0COMP_CODE < '9610'
    OR 0COMP_CODE > '9612'
    AND 0COMP_CODE < '9618'
    OR 0COMP_CODE > '9619'
    AND 0COMP_CODE < '9688'
    OR 0COMP_CODE > '9689'
    AND 0COMP_CODE < '9790'
    OR 0COMP_CODE > '9791'
    AND 0COMP_CODE < '9916'
    OR 0COMP_CODE > '9917'
    AND 0COMP_CODE < '9922'
    OR 0COMP_CODE > '9923'
    AND 0COMP_CODE < '9992'
    OR 0COMP_CODE > '9993' )
    AND NOT 0COMP_CODE IN ('#','0001','0100','0107','0120','0126','0138','0145','0152','0171','0175','0180','0181','0188','0195','0197','0200','0206','0213','0221','0229','0232','0240','0244','0247','0257','0261','0263','0265','0267','0280','0285','0290','031
    AND ( 0CREDIT
    OR = '#'
    OR 0CREDIT
    OR BETWEEN '#'
    AND '0000199999'
    OR 0CREDIT
    OR BETWEEN '0000300000'
    AND '9999999999' )
    AND 0TCAACTVT = '03'
    Characteristic     Content(in SQL Format)
    0COMP_CODE     I BT 0104 0105
    I BT 0110 0111
    I BT 0129 0130
    I BT 0147 0149
    I BT 0215 0216
    I BT 0234 0235
    I BT 0253 0254
    I BT 0297 0298
    I BT 0304 0305
    I BT 0325 0331
    I BT 0400 0401
    I BT 0403 0405
    I BT 0407 0408
    I BT 0411 0412
    I BT 0414 0415
    I BT 0422 0424
    I BT 0480 0481
    I BT 0483 0485
    I BT 0500 0503
    I BT 0505 0508
    I BT 0510 0513
    I BT 0515 0516
    I BT 0518 0523
    I BT 0525 0526
    I BT 0528 0529
    I BT 0530 0532
    I BT 0537 0538
    I BT 0540 0545
    I BT 0547 0548
    I BT 0550 0551
    I BT 0553 0555
    I BT 0557 0558
    I BT 0560 0561
    I BT 0568 0569
    I BT 0573 0577
    I BT 0579 0582
    I BT 0585 0586
    I BT 0590 0594
    I BT 0602 0603
    I BT 0618 0626
    I BT 0635 0637
    I BT 0642 0644
    I BT 0648 0649
    I BT 0690 0691
    I BT 0731 0733
    I BT 0790 0791
    I BT 0824 0825
    I BT 0870 0871
    I BT 0895 0896
    I BT 0912 0913
    I BT 0962 0963
    I BT 1006 1007
    I BT 1010 1011
    I BT 1024 1029
    I BT 1055 1056
    I BT 1058 1061
    I BT 1097 1100
    I BT 1108 1109
    I BT 1112 1124
    I BT 1126 1136
    I BT 1138 1139
    I BT 1172 1175
    I BT 1179 1181
    I BT 1200 1224
    I BT 1228 1229
    I BT 1231 1234
    I BT 1236 1237
    I BT 1325 1326
    I BT 1503 1504
    I BT 1651 1663
    I BT 1667 1675
    I BT 1677 1683
    I BT 1686 1688
    I BT 1700 1704
    I BT 1707 1720
    I BT 1727 1731
    I BT 1788 1796
    I BT 1800 1801
    I BT 1889 1895
    I BT 1905 1906
    I BT 1910 1912
    I BT 1920 1926
    I BT 1976 1977
    I BT 2001 2003
    I BT 2006 2019
    I BT 2205 2208
    I BT 2300 2307
    I BT 2315 2325
    I BT 2365 2366
    I BT 2380 2381
    I BT 2394 2395
    I BT 2453 2454
    I BT 2489 2493
    I BT 2500 2505
    I BT 2565 2566
    I BT 5154 5155
    I BT 5208 5210
    I BT 5301 5302
    I BT 5502 5503
    I BT 5507 5508
    I BT 5592 5593
    I BT 5595 5596
    I BT 5916 5917
    I BT 5922 5923
    I BT 5992 5993
    I BT 6731 6732
    I BT 7000 7001
    I BT 7483 7484
    I BT 8000 8004
    I BT 8008 8009
    I BT 8036 8042
    I BT 8050 8051
    I BT 8059 8060
    I BT 8100 8102
    I BT 8748 8750
    I BT 9101 9124
    I BT 9126 9131
    I BT 9133 9148
    I BT 9152 9167
    I BT 9169 9170
    I BT 9173 9178
    I BT 9183 9186
    I BT 9188 9199
    I BT 9202 9204
    I BT 9206 9222
    I BT 9224 9225
    I BT 9228 9230
    I BT 9232 9237
    I BT 9239 9262
    I BT 9264 9269
    I BT 9271 9274
    I BT 9276 9288
    I BT 9291 9311
    I BT 9313 9314
    I BT 9316 9339
    I BT 9502 9503
    I BT 9505 9508
    I BT 9512 9515
    I BT 9521 9523
    I BT 9525 9526
    I BT 9529 9531
    I BT 9540 9541
    I BT 9543 9545
    I BT 9550 9551
    I BT 9557 9558
    I BT 9565 9566
    I BT 9568 9570
    I BT 9585 9587
    I BT 9592 9596
    I BT 9610 9612
    I BT 9618 9619
    I BT 9688 9689
    I BT 9790 9791
    I BT 9916 9917
    I BT 9922 9923
    I BT 9992 9993
    I EQ #
    I EQ 0001
    I EQ 0100
    I EQ 0107
    I EQ 0120
    I EQ 0126
    I EQ 0138
    I EQ 0145
    I EQ 0152
    I EQ 0171
    I EQ 0175
    I EQ 0180
    I EQ 0181
    I EQ 0188
    I EQ 0195
    I EQ 0197
    I EQ 0200
    I EQ 0206
    I EQ 0213
    I EQ 0221
    I EQ 0229
    I EQ 0232
    I EQ 0240
    I EQ 0244
    I EQ 0247
    I EQ 0257
    I EQ 0261
    I EQ 0263
    I EQ 0265
    I EQ 0267
    I EQ 0280
    I EQ 0285
    I EQ 0290
    I EQ 0319
    I EQ 0323
    I EQ 0335
    I EQ 0362
    I EQ 0431
    I EQ 0439
    I EQ 0447
    I EQ 0467
    I EQ 0472
    I EQ 0487
    I EQ 0534
    I EQ 0564
    I EQ 0588
    I EQ 0597
    I EQ 0600
    I EQ 0605
    I EQ 0610
    I EQ 0613
    I EQ 0617
    I EQ 0630
    I EQ 0632
    I EQ 0639
    I EQ 0646
    I EQ 0647
    I EQ 0650
    I EQ 0651
    I EQ 0652
    I EQ 0653
    I EQ 0654
    I EQ 0655
    I EQ 0656
    I EQ 0658
    I EQ 0659
    I EQ 0660
    I EQ 0661
    I EQ 0665
    I EQ 0666
    I EQ 0668
    I EQ 0669
    I EQ 0670
    I EQ 0671
    I EQ 0672
    I EQ 0673
    I EQ 0677
    I EQ 0681
    I EQ 0684
    I EQ 0686
    I EQ 0694
    I EQ 0697
    I EQ 0703
    I EQ 0705
    I EQ 0710
    I EQ 0718
    I EQ 0722
    I EQ 0737
    I EQ 0747
    I EQ 0752
    I EQ 0753
    I EQ 0754
    I EQ 0755
    I EQ 0756
    I EQ 0757
    I EQ 0758
    I EQ 0759
    I EQ 0760
    I EQ 0761
    I EQ 0782
    I EQ 0797
    I EQ 0808
    I EQ 0810
    I EQ 0816
    I EQ 0819
    I EQ 0827
    I EQ 0834
    I EQ 0835
    I EQ 0836
    I EQ 0837
    I EQ 0840
    I EQ 0849
    I EQ 0860
    I EQ 0864
    I EQ 0865
    I EQ 0868
    I EQ 0907
    I EQ 0928
    I EQ 0935
    I EQ 0946
    I EQ 0959
    I EQ 0965
    I EQ 0977
    I EQ 0990
    I EQ 1000
    I EQ 1013
    I EQ 1015
    I EQ 1020
    I EQ 1044
    I EQ 1046
    I EQ 1050
    I EQ 1052
    I EQ 1067
    I EQ 1069
    I EQ 1074
    I EQ 1085
    I EQ 1087
    I EQ 1089
    I EQ 1092
    I EQ 1102
    I EQ 1103
    I EQ 1105
    I EQ 1106
    I EQ 1141
    I EQ 1166
    I EQ 1170
    I EQ 1184
    I EQ 1187
    I EQ 1239
    I EQ 1314
    I EQ 1402
    I EQ 1562
    I EQ 1597
    I EQ 1689
    I EQ 1690
    I EQ 1691
    I EQ 1692
    I EQ 1693
    I EQ 1694
    I EQ 1695
    I EQ 1696
    I EQ 1705
    I EQ 1706
    I EQ 1725
    I EQ 1733
    I EQ 1745
    I EQ 1751
    I EQ 1754
    I EQ 1803
    I EQ 1819
    I EQ 1887
    I EQ 2005
    I EQ 2185
    I EQ 2201
    I EQ 2330
    I EQ 2332
    I EQ 2339
    I EQ 2354
    I EQ 2368
    I EQ 2372
    I EQ 2397
    I EQ 2437
    I EQ 2439
    I EQ 2458
    I EQ 2512
    I EQ 2613
    I EQ 2800
    I EQ 2801
    I EQ 2802
    I EQ 2803
    I EQ 2805
    I EQ 4528
    I EQ 5106
    I EQ 5110
    I EQ 5130
    I EQ 5183
    I EQ 5185
    I EQ 5189
    I EQ 5196
    I EQ 5203
    I EQ 5212
    I EQ 5230
    I EQ 5240
    I EQ 5242
    I EQ 5244
    I EQ 5265
    I EQ 5269
    I EQ 5273
    I EQ 5276
    I EQ 5286
    I EQ 5292
    I EQ 5306
    I EQ 5413
    I EQ 5425
    I EQ 5427
    I EQ 5510
    I EQ 5513
    I EQ 5523
    I EQ 5543
    I EQ 5551
    I EQ 5565
    I EQ 5572
    I EQ 5576
    I EQ 5587
    I EQ 5926
    I EQ 5930
    I EQ 6737
    I EQ 6747
    I EQ 6982
    I EQ 7481
    I EQ 7749
    I EQ 8006
    I EQ 8007
    I EQ 8200
    I EQ 8579
    I EQ 8644
    I EQ 8655
    I EQ 8739
    I EQ 8765
    I EQ 8766
    I EQ 8767
    I EQ 8821
    I EQ 8823
    I EQ 8923
    I EQ 8925
    I EQ 9050
    I EQ 9051
    I EQ 9055
    I EQ 9180
    I EQ 9347
    I EQ 9351
    I EQ 9354
    I EQ 9360
    I EQ 9361
    I EQ 9364
    I EQ 9413
    I EQ 9425
    I EQ 9427
    I EQ 9489
    I EQ 9500
    I EQ 9510
    I EQ 9518
    I EQ 9533
    I EQ 9536
    I EQ 9548
    I EQ 9554
    I EQ 9561
    I EQ 9572
    I EQ 9574
    I EQ 9576
    I EQ 9581
    I EQ 9601
    I EQ 9604
    I EQ 9606
    I EQ 9616
    I EQ 9634
    I EQ 9675
    I EQ 9683
    I EQ 9699
    I EQ 9707
    I EQ 9722
    I EQ 9741
    I EQ 9890
    I EQ 9926
    I EQ 9930
    I EQ 9976
    I EQ 9982
    I EQ 9999
    I EQ :
    I EQ AT01
    I EQ AU01
    I EQ BE01
    I EQ CA01
    I EQ CH01
    I EQ DE01
    I EQ DK01
    I EQ ES01
    I EQ FR01
    I EQ GB01
    I EQ HU01
    I EQ IT01
    I EQ JP01
    I EQ NL01
    I EQ NO01
    I EQ SE01
    I EQ SG01
    I EQ TEMP
    I EQ TMPN
    I EQ US01
    I EQ ZA01
    0CREDITOR     I BT 0000000000 0000199999
    I BT 0000300000 9999999999
    I EQ #
    I EQ :
    0TCAACTVT     I EQ 03
         Not Authorized Selection is not authorized     
    All Authorizations Tested
      Message EYE007: You do not have sufficient authorization 
      No Sufficient Authorization for This Subselection (SUBNR)

  • Regarding BI Authorization Issue

    Dear Friends,
    can anyone help me to solve this issue..
    I have a Authorization Issue, u201CNO Authorization u201C
    Error : EYE 007 ( Insufficient Authorizations )
    I have follow this stepsu2026
    Steps 1 :-
    Define Authorization-Relevant Characteristics ( ZCUSTOMER )
    Note : I have 0Division values C100 and C200, I want to restrict the user on ZCUSTOMER = 100.
    Steps 2 :-InfoObjects as u201Cauthorization-relevantu201D
    Eg: 0TCAACTVT
    0TCAIPROV
    0TCAVALID
    0TCAKYFNM
    ZCUSTOMER
    Steps 3 :-Using T-code : (RSECADMIN) created the Analysis Object
    For example : ZAUTH In That I have taken
    ZCUSTOMERrestricted with value C100.
    0TCAACTVT with 3 ( Display )
    0TCAIPROV with * ( Astric )
    0TCAVALID with *
    0TCAKYFNM with *
    Steps 4 :-
    Assign Authorizations to Roles
    Use authorization object S_RS_AUTH for the assignment of
    authorizations to roles.
    Maintain the authorizations as values for field BIAUTH
    Ex: ZTESTA1
    S_RS_AUTH
    Here I have given my Authorization Analysis Object ( ZTESTA1) which I have created in RSECADMIN.
    S_RS_COMP
    Activity Create or generate, Change, Display, Delete, Execute <...>
    InfoArea : ZDEMO_ MIHI
    InfoCube : ZCUBET
    Name (ID) of a reporting compo : ZTEST_Q0001
    Type of a reporting component Calculated key figure, Query View, Query, Restricted key figure <...>
    S_RS_COMP
    Activity Create or generate
    InfoArea :ZDEMO_ MIHI
    InfoCube : ZCUBET
    Name (ID) of a reporting compo :ZTEST_Q0001
    Type of a reporting component :Query
    S_RS_COMP1
    Activity Display, Execute
    Name (ID) of a reporting compo : ZTEST_Q0001
    Type of a reporting component :All values
    Owner (Person Responsible) for *
    S_RS_COMP1
    Activity Change, Display, Delete, Execute, Enter, Include, Assign
    Name (ID) of a reporting compo ZTEST_Q0001
    Type of a reporting component All values
    Owner (Person Responsible) for :*
    S_RS_ICUBE
    Activity Create or generate
    Infocube Sub Objects: DATA, Update rules, Data Definition, Aggregats
    InfoArea :ZDEMO_ MIHI
    InfoCube : ZCUBET
    S_RS_IOBC
    Activity Create or generate
    InfoArea :ZDEMO_ MIHI
    Infoarea Catalog : zioc_test, Zkf_test
    S_RS_IOBJ
    Activity Create or generate
    InfoArea :ZDEMO_ MIHI
    InfoObjets: ZCUSTOMER, ZDOCNO,ZMATERIAL
    Steps 5 :-
    AND Assign this Role to User.
    Steps 6 :- ERROR
    When I execute the Report it is showing u201CNO Authorization u201C
    u201C Insufficient Authorization u201C
    EYE 007.
    Regards
    Siva

    Hi,
    In RSECADMIN try to put on the trace with your user id & execute the query . System will give you list of authorization object with red color which needs to be reconsidered in order to execute report without error.
    Hope that helps.
    Regards
    Mr Kapadia

  • Approval/Authorization Issue

    Hii
    I have an Outgoing Payment document which has an Approval process, when a user add OP(Outgoing Payment) thee document is moving to the Approver properly but the problem is when an approver trying to view that document by clicking on arrow the system is giving a message
    you are not permitted to perform this action
    i tried checking in general authorization but of no  use
    I guess there is some authorization issue with the approver
    can anybody let me know the cause
    Thanks
    Riyaz

    Hi Senthil
    Yeah you are right this is issue of authorization,
    well i have given all what you asked but here the case is the approver can approve the document without any problem but the thing is when he tries to click on the document number in the approval screen he is getting the above mentioned error
    Thanks
    Riyaz

  • Planning Stucture authorization issue in SCM

    Hello Experts,
    Need your help.
    In our SCM7.0 system, we have implemented FM: /SAPAPO/MCP_PERMISSION_CHECK2 for authorization check to Planning Structure Infocube. That is working fine.
    Now Users are facing authorization issue in Prodcution when they executed transaction /n/SAPAPO/SDP94 with below message.
    Error message: You do not have authorization for all the characteristic values selected Message no. AUTHORITY041
    Analysis authorization trace message: " Message EYE001:    You do not have sufficient authorization for InfoProvider ZDM_PLN1 with activity 03.
    We have assigned customized analysis authorization and that is maintained with InfoProvider  "0TCAIPROV" as " * ".
    Earlier this was working fine in production but now users are getting authorization issue. When we tested in other systems, it is working fine.
    I appreciate your help in this issue.
    Regards
    Ravi
    Edited by: Ravi K on Jul 5, 2011 6:04 PM

    Ravi
    Verify the selections in the Production system v/s the test system. Are they exactly the same ? I can think of two possibilities -
    1. User is attempting to access a selection where he/ she does not have access to at least one of the CVC's filtered by the CVC.
    2. The selection definition should (but does not in your case) contain the characteristic on which the authorization is setup.
    Rishi Menon

  • Authorization Issue in WebUI (also ST01 question)

    Hi All,
    we are implementing new CRM 2007 and users will be working with the WebUI mainly in the future. Now here is something strange that we found out:
    When a user logs on to the Web UI and enters some sales transaction trying to add a new material he would use the F4 help to find the right material number. In our case he recieves an authorization error hindering him to display ANY materials (seems to be an authorization issue).
    But there are two strange thigs. When the user logs in to the old SAP GUI and triggers transaction CRMD_ORDER and accesses the very same transaction, trying to add a material and issuing the F4 help to recieve the material number it works! No authorization issues!
    Second strange thing that we discovered while investigating on this issue: The system trace ST01 seems to apparently not be working with WebUI. We can fully trace all authority checks for the latter case (when user logs in to SAP GUI), ST01 does not return ANY checks when being turned on while a user is working on WebUI.
    Any one of you experts out there any suggestions? Any experiences with that kind of traces and WebUI?
    Thanks in advance
    Alexander

    Hi All,
    I seem to have found the reason for both of my questions:
    1. Authorization objects checked in CRM WebUI are not at all the same as the ones checked in the CRM backend, i.e. in the old SAP GUI.
    2. There seems to be a known bug in transaction ST01 due to which no trace protocol at all is shown sometimes if too many authority checks fail. That's why it is apparently wise to run the authorization trace only with a high privileged user e.g. SAP_ALL to make sure the resulting protocol is accurate.
    Thanks, I will close this thread
    Alex

  • Authorization issues on opening a dataset

    hello,
    I am not sure if this is the correct forum for this or not.
    I have an ABAP program that was written before I got here that performs the following statement
    OPEN DATASET w_file FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    where w_file is a file on the app server. the users that run this program have no issues.
    I have made a copy of the program to add some additional functionality and when the users run this program, the program is abending with the following error messages when trying to execute the same command stated above
    Runtime Error OPEN_DATASET_NO_AUTHORITY
    Except. CX_SY_FILE_AUTHORITY
    I have talking to the security person and he is going to make another role with the authorizations needed to run the program but I am curious as to why the same person can run the one program successfully and my program (which does basically the same thing when it comes to the file processing) abends with the authorization issue.
    thanks in advance for your help

    Hi Timothy
    Well it is the correct forum
    When ever your accessing the file system the authorization object S_DATASET is checked.
    This object has Filename, activity and <b>program name</b> as input parameter.
    Best Practice would require you to limit access as much as possible, so my guess is that access only has been given to the original program, and not your new one - that's why your getting the ShortDump.
    You can find the documentation here: http://help.sap.com/saphelp_webas620/helpdata/en/fc/eb3d5c358411d1829f0000e829fbfe/frameset.htm
    Regards
    Morten Nielsen

  • PA30 Display Facsimiles Authorization Issue

    Dear All,
    I am facing one authorization issue in PA30 Transaction. User trying to display the archived documents from PA30 > Extras > Display All Facsimiles, when user trying to execute he is facing the below authorization issue.
    You have no authorization to display the facsimile
    Message no. PG424
    I have analyzed this issue this is lack of infotype authorization, but I am not sure which infotype we have to give under P_ORGIN authorization object. SU53 not showing anything for infotype, it is showing  ' ' in infotype.
    I checked the below SAP notes also.
    1562091 - Display all facsimiles: Incorrect Message PG424/PG425
    1990223 - HRFORMS : Can not view archived documents in PA20
    373063 - Authoriztn for applicnts opticl archv does not work
    User getting access If I maintained Star (*) or (' ') . Please help me to solve this issue.
    Thanks
    Kishore ch

    Hello,
    You can check which Infotype your archived document is linked to in table V_T585O. A user will require read authorization for that infotype as well as an authorization for S_WFAR_OBJ for the document type. If I'm not mistaken you may even need S_TCODE or P_TCODE for transaction SDV.
    Secondly, I would not advise you to rely only on SU53 data for authorization checks as it only shows the last failed authorization check. You'll get a better view on what's going on by using the system trace (ST01) or the authorization trace (STAUTHTRACE).
    It seems a bit odd to me that assigning P_ORGIN with value ' ' for INFTY would solve the problem as that is the dummy value and should match with any other INFTY value your user has. Seeing as he/she has PA30 then I assume he/she will already have an authorization for P_ORGIN. Check the settings in V_T585O for the document type. Maybe someone made a mistake there and left the Infotype cell empty instead of "-".
    Good luck
    Brent

  • Authorization issues MM/PP STATUS   Changes

    Hello,
    I'm getting the following error  even with SAP_ALL SAP_NEW
    BDC Transaction Report for ZM02. Report: ZUCC0026
    Run by:      KHALIFAO                            page:     1
    On:          11/11/2009                          at : 09:06:12
    In System:   Q47
    Authorization issues  MM/PP STATUS               Changes
    M365SC1110020      ZFIN M680 MM/PP STATUS 00 Not authorized to change MM/PP status
    One of my user is having the following error when she excuted the following steps :
    Steps:
      SE38/ ZUCC0026   - Material Mass update program for Costing View
    Enter the following fields before executions
    Material : M365SC1110020
    Plant: M680
    Check off  update material
    Field to update: select MM/PP status
    New Value: 00
    Execute transaction 
    Thanks
    Osama
    Expected results: output document should states that update of MM/PP status was changed from XX to 00. 
    This message

    Hello Julius,
    SY-UNAME
    ZUCC0026                           550   WRITE: / 'BDC Transaction Report for ZM02. Report:'(b01),
                                                     / 'Run by:     '(b02) ,sy-uname COLOR 5,
                                      1167 *  IF sy-uname <> 'BATCH'.
                                      1183   READ TABLE itab_zusrgroup WITH KEY group_id = group_id
                                                                                user_name = sy-uname.
                                      1212     SELECT SINGLE update_ind scop_ind
                                                   FROM zusrgroup INTO (itab-update_field,l_scop_ind)
                                                          WHERE user_name = sy-uname
                                                          AND   group_id  = itab_fields-group_id.
                                      1219 *               WHERE user_name = sy-uname
                                      1223     READ TABLE i_zplant WITH KEY
                                                                      user_name = sy-uname
                                                                      werks = itab-werks.
                                      1422   SELECT werks FROM zusrplant
                                                          INTO zusrplant-werks
                                                          WHERE user_name = sy-uname.
                                      1453     MOVE: sy-uname TO i_zplant-user_name,
    Parameter  :
    188 *PARAMETERS: p_mode TYPE c DEFAULT 'N' NO-DISPLAY.    JHSIR35508-
    189 PARAMETERS:      p_field LIKE itab_fields-descriptio.
    190 PARAMETERS:      p_name  LIKE itab_fields NO-DISPLAY.
    191 PARAMETERS:      p_newval(14) TYPE c.
    193 PARAMETERS:      p_file(100) TYPE c LOWER CASE.
    194 PARAMETERS:      p_filval AS CHECKBOX.                      "0001+
    195 PARAMETERS:      p_unix   AS CHECKBOX.                      "0004+
      33 PARAMETERS:          P_UPD AS CHECKBOX.
    Thanks
    Osama

  • Analysis Authorization Issue 7.3

    Hello Friends,
    System BW 7.3, Currently there are 80 odd analysis authorization objects
    We want to introduce a new info object (GL Account) to be authorization relevant, ( there are few objects in the system which are already authorization relevant in the system with proper analysis authorization objects and they are working fine)
    Things done, made the GL Account object authorization relevant in RSA1, Created 2 analysis authorization objects with GL Account and TCT objects and one with hierarchy restrictions and one open access.
    Added this object to the user in addition to its already existing authorization objects. Created authorization variable in BEx.
    Some how the authorization is not picked up and it gives us all the values in the report. But if I add the GL Account info object to the existing analysis authorization objects then it works fine.
    I do not want to change all the existing analysis authorization objects to add GL Account.
    Your inputs are most welcome.
    Thanks
    Ed.

    Gajesh- I have added the new analysis authorization object to the user in RSECadmin.
    Subhendu- Problem statement: What are the steps involved in making a new info object(GL Account) authorization relevant. Authorizations are given at hierarchy level. Can we create a new analysis authorization with  GL Account only or do we have to add it to every existing analysis authorization
    I have done the following steps
    1. Made the GL Account object authorization relevant in RSA1,
    2. Created 2 new analysis authorization objects with GL Account ( with hierarchy restrictions) and TCT objects and one with GL Account open access.
    3. Added this object ( which has restrictions) to the user in RSECADMIN, in addition to its already existing authorization objects.
    4. Created authorization variable in BEx.
    5. No existing analysis authorization objects have been changed.
    When I test the report, It does not restrict based on the hierarchy that I have given, it gives open access.
    But If I add GL Account with restrictions to the existing analysis authorization object, it works good.
    Guess I am missing some thing here.
    Do you need any other screen shots.
    Thanks
    Ed.

  • Performance Issue for BI system

    Hello,
    We are facing performance issues for BI System. Its a preproductive system and its performance is degrading badly everyday. I was checking system came to know program buffer hit ratio is increaasing everyday due to high Swaps. So asked to change the parameter abap/buffersize which was 300Mb to 500Mb. But still no major improvement is found in the system.
    There is 16GB Ram available and Server is HP-UX and with Netweaver2004s with Oracle 10.2.0.4.0 installed in it.
    The Main problem is while running a report or creating a query is taking way too long time.
    Kindly help me.

    Hello SIva,
    Thanks for your reply but i have checked ST02 and ST03 and also SM50 and its normal
    we are having 9 dialog processes, 3 Background , 2 Update and 1 spool.
    No one is using the system currently but in ST02 i can see the swaps are in red.
    Buffer                 HitRatio   % Alloc. KB  Freesp. KB   % Free Sp.   Dir. Size  FreeDirEnt   % Free Dir    Swaps    DB Accs
    Nametab (NTAB)                                                                                0
       Table definition     99,60     6.798                                                   20.000                                            29.532    153.221
       Field definition     99,82      31.562        784                 2,61           20.000      6.222          31,11          17.246     41.248
       Short NTAB           99,94     3.625      2.446                81,53          5.000        2.801          56,02             0            2.254
       Initial records      73,95        6.625        998                 16,63          5.000        690             13,80             40.069     49.528
                                                                                    0
    boldprogram                97,66     300.000     1.074                 0,38           75.000     67.177        89,57           219.665    725.703bold
    CUA                    99,75         3.000        875                   36,29          1.500      1.401          93,40            55.277      2.497
    Screen                 99,80         4.297      1.365                 33,35          2.000      1.811          90,55              119         3.214
    Calendar              100,00       488            361                  75,52            200         42              21,00               0            158
    OTR                   100,00         4.096      3.313                  100,00        2.000      2.000          100,00              0
                                                                                    0
    Tables                                                                                0
       Generic Key          99,17    29.297      1.450                  5,23           5.000        350             7,00             2.219      3.085.633
       Single record        99,43    10.000      1.907                  19,41           500         344            68,80              39          467.978
                                                                                    0
    Export/import          82,75     4.096         43                      1,30            2.000        662          33,10            137.208
    Exp./ Imp. SHM         89,83     4.096        438                    13,22         2.000      1.482          74,10               0    
    SAP Memory      Curr.Use %    CurUse[KB]    MaxUse[KB]    In Mem[KB]    OnDisk[KB]    SAPCurCach      HitRatio %
    Roll area               2,22                5.832               22.856             131.072     131.072                   IDs           96,61
    Page area              1,08              2.832                24.144               65.536    196.608              Statement     79,00
    Extended memory     22,90       958.464           1.929.216          4.186.112          0                                         0,00
    Heap memory                                    0                  0                    1.473.767          0                                         0,00
    Call Stati             HitRatio %     ABAP/4 Req      ABAP Fails     DBTotCalls         AvTime[ms]      DBRowsAff.
      Select single     88,59               63.073.369        5.817.659      4.322.263             0                         57.255.710
      Select               72,68               284.080.387          0               13.718.442             0                        32.199.124
      Insert                 0,00                  151.955             5.458             166.159               0                           323.725
      Update               0,00                    378.161           97.884           395.814               0                            486.880
      Delete                 0,00                    389.398          332.619          415.562              0                             244.495
    Edited by: Srikanth Sunkara on May 12, 2011 11:50 AM

Maybe you are looking for

  • Receiver Mail Adapter with external Email-Provider

    Hi everyone, I have implemendet an Scenario with a receiver Mail Adapter. With using the SAP-Mail-Server it works fine. Now I want to use an external Email Provider like GMX or yahoo. But the Parameter e.g. smtp://mail.gmx.net does not work. Is this

  • How do I change the color of my Google calendar? I can't edit any of my calendars.

    I just recently activated my iPhone 6 and was able to successfully transfer everything from my old iPhone to the new one. I used Google to sync my mail, contacts, and calendars, but for some reason, I cannot edit any calendars.  When I open the Calen

  • How to Use the Scalable Vector Graphics API (JSR 226)

    im doin an Application with Maps and locations... i need 2 use the Scalable Vector Graphics API (JSR 226).. can anyone plz guide me to get it and use the API.. Im using netBeans 5.0 it will be great help :) Regards Muhammedh aka MNM

  • SAP Licensing for a Test Environment

    One of our clients has created a test environment physically seperate from the Production environment (That is on two seperate machines). All their purchased SAP B1 licenses are being used in the production system. If you select additional licenses,

  • IPP printer migration has strange behavior

    We have PM from the 6.5 suite. We set up a template to migrate printers, My Documents, and bookmarks. It collects the DNA correctly. when it restores it (Windows 2000 to Windows 2000, or Windows 2000 to Windows XP), everything comes back...EXCEPT we