How to know BW report there in how many roles

dear master's,
In the BW system version 3.5 ,how to know roles by BW report, i have checked in SUIM for cheking the same,i could able to search by T code and object not by report in the role menu
Edited by: rameshbabu muddana on Feb 12, 2009 1:56 PM
Edited by: rameshbabu muddana on Feb 12, 2009 1:57 PM

Hi,
You can find the roles which all having particular BW report by the table AGR_1251.
For this you need to know the technical name of the report, you can find the technical name of the report either in Bex analyzer or in RSRT.
For granting access to any BW report in a role the technical name of the role should be included in the object S_RS_COMP,
1) go to transaction SE16.
2) open the table AGR_1251
3) enter in the field "object with "S_RS_COMP"
4) and the field "FIELD" with "RSZCOMPID"
5) Give the BW report (technical name) which you want to search in the field "LOW"
6) click on execute.
Caution: in case you are giving complete techincal name of the report, it will show only if the roles are updated under the object S_RS_COMP with complete technical names, however if in the roles you are giving ranges something (as example : BW_FIN_*) you need to give the range in SE16 as well.
Hope this helps you!
Regards,
Ananth

Similar Messages

  • How to know what reports are running by looking at SSReproting Services to see what reports are running and also any clue of which application is using the reporting services?

    How to know what reports are running by looking at SSReproting Services to see what reports are running and also any clue of which application is using the reporting services?

    To see what reports are running, take a look at the execution log views that are available in the database.  Which views that are available are dependent on your version of SSRS.
    http://technet.microsoft.com/en-us/library/ms159110.aspx
    To see which application is using SSRS is a little more difficult.  You can turn HTTP logging on, which will give you an idea of where connections are coming from, so you can see IP addresses.  You can also look at the execution log view to see
    user accounts.  So, depending on your environment and use of service accounts, this could be easy, or difficult.
    http://technet.microsoft.com/en-us/library/bb630443.aspx
    If all else fails you can look for clues in the SSRS logs.  Good luck...

  • How to know the orignal iphone?, how to know the orignal iphone?

    how to know that my iphne is orignal?

    To give you a good answer without trying the shotgun approach, what do you mean by "original"? The first generation iPhone? An iPhone from Apple and not a "counterfit" or "fake" iPhone? Or something else?

  • How forms know when Report Server is down

    Environment: Oracle Developer Suite 10g 10.1.2.0.2 R2
    os :windows xp
    I have button to call a report object :when-button-pressed
    declare
    v_report_name VARCHAR2(30):='REQ010';----report name without .rdf
              v_repid REPORT_OBJECT;
              vc_rep VARCHAR2(20);
              vc_rep_status VARCHAR2(20);
              vc_URL VARCHAR2(100);
              vc_rep_job VARCHAR2(10);
              Plist ParamList;
              dummy NUMBER;
              Report_Plist_name VARCHAR2(30) := 'REPORT_PARAM_LIST';
              REPORT_NOT_GENERATED EXCEPTION;
              PARAMETER_LIST_SECTION_PROBLEM EXCEPTION;
    BEGIN
    --=========================================================================          
    BEGIN     
                        --prepare the list of parameters to be sent to the report
                        Plist := Get_Parameter_List(Report_Plist_name);
                        IF NOT Id_Null(Plist) THEN
                             Destroy_Parameter_List(Report_Plist_name);
                        END IF;     
                        Plist := Create_Parameter_List(Report_Plist_name);      
                        IF Id_Null(Plist) THEN
                             dummy := Show_Alert('PARAM_LIST_CREATION_PROBLEM');
                             RAISE Form_Trigger_Failure;
                        END IF;
                        --Add parameter(s) to list just created
                        Add_Parameter(Plist, 'P_REQUEST_ID', TEXT_PARAMETER, :CUSTOMER_REQUESTS.CR_REQUEST_ID);
         EXCEPTION
    WHEN OTHERS THEN
    raise PARAMETER_LIST_SECTION_PROBLEM;
    END;
    --=============================================================================
              --START THE REPORT     
              v_repid := FIND_REPORT_OBJECT(v_report_name);
              vc_rep := RUN_REPORT_OBJECT(v_repid,Plist);
              vc_rep_status := REPORT_OBJECT_STATUS(vc_rep);
    --=============================================================================
    BEGIN          
                        IF vc_rep is NOT NULL THEN
                                  -- Wait until report finishes or produces an error
                                  WHILE vc_rep_status in
                                  ('RUNNING', 'OPENING_REPORT', 'ENQUEUED')
                                  LOOP
                                       vc_rep_status := REPORT_OBJECT_STATUS(vc_rep);
                                  END LOOP;
                                  -- Display the report if it is finished
                                  if vc_rep_status = 'FINISHED' then
                                                      vc_rep_job := substr(vc_rep,instr(vc_rep,'_')+1);
                                                      message('Report Completed');
                                                      vc_URL := '/reports/rwservlet/getjobid' ||vc_rep_job||
                                                      '?server='||get_report_object_property
                                                      (v_repid,report_server);
                                                      Web.show_document(vc_URL,'_blank');
                                                      -- Display an error if the report errored
                             END IF;
                        END IF;                              
    EXCEPTION
    WHEN OTHERS THEN
    raise REPORT_NOT_GENERATED;
    END;
    --=============================================================================
    Destroy_Parameter_List('REPORT_PARAM_LIST');
    EXCEPTION
    WHEN REPORT_NOT_GENERATED THEN
    msgbox('Error Calling Report');
    --Causes: 1-Report file name is incorrect,check report name and existance.
    -- 2-Or, Report Server is Down.
    WHEN PARAMETER_LIST_SECTION_PROBLEM THEN
    msgbox('CHECK PARAMETER SECTION ');
    WHEN OTHERS THEN
    msgbox(SQLERRM);
    END;
    Problem:
    ======
    How can I distingwish among these conditions:
    IF Report cannot run :
    when the problem is from the report file object itself.
    and IF the problem is the Report Server is Down.
    and the report file is not exist.
    Tries:
    I try to but many exception to differenciate between these conditions but I fail
    how can I display a message to the user,Inform him the problem ,
    So the support personnel know if the problem from the Report object or the application Server
    .

    Hi Krishan,
    If you want to check if local cache service is running, you can do something like this:
    NamedCache cache = CacheFactory.getCache(sCacheName);
    boolean isRunning = cache.getCacheService().isRunning();If you want to check if any storage enabled nodes (cache servers) are available in the cluster:
    NamedCache cache = CacheFactory.getCache(sCacheName);
    DistributedCacheService service = (DistributedCacheService) cache.getCacheService();
    Set storageEnabledMembers = service.getStorageEnabledMembers();
    if(storageEnabledMembers.isEmpty())
        // no cache servers available ...
        }Regards,
    Dimitri

  • How to know the report has already been sent to printer?

    Dear All,
    I have one problem to check that the report has been printed on paper through a printer after user already previewed and pressed Printer button. Is there any parameter will be sent back from system to inform the program? Please suggest me if you have developed or solved this problem.
    Thank you in advance.
    Pawinee H.
    e-mail: [email protected]
    null

    Yes. I ran the code example and it ran successfully.
    So if we wanna generate report by java code, we should use the code as a http client to access report server to do it.
    I think we could use url http://server:port/reports/rwservlet/showjobid to know the status of generating report (i.e. successful or failed).
    And one more question is that could I get the jobid by any url as soon as I generate my report?
    Thanks a lot.
    Best Regards.

  • How to know which report is using which view

    Hi all,
    is there any way to get the details of which discoverer report is using which view by using any sql query.
    Thanks in advance

    There is a trigger that update a table whenever a workbook is saved.
    You can start your query from
    select s.workbook_name,
    s.worksheet_name,
    s.sequence_order,
    s.sql_string
    from
    ams.ams_discoverer_sql s
    order by 1,2,3

  • How to know pending infotypes?

    Dear Experts,
    Can any one guide me in how to know what are the pending infotypes are to be upload for all employees. because for few employees, we maintained few infotypes. now we would like to know what are the infotypes need to upload. how to know? is there any std report? Plz. awaiting for your reply.
    Thanks&Regards
    Satya

    Hi,
    Check table V_T511 and wagetype characteristics.
    Or you can write rule in PE51 for rounding off.
    check this threads.
    Amount Rounded off in Payslip
    Round Off amounts in Payslip
    Rounding-Off Of Individual Wage Type
    Regards,
    Manoj.

  • I have a macbook air - I am going to buy an iPad, will all my itunes and iPhoto etc be available on my iPad (how do I get it there)?

    I have a macbook air - I am going to buy an iPad, will all my itunes and iPhoto etc be available on my iPad (how do I get it there)?
    How do i check what of my info is on icloud (can iphoto be on icloud??) i have taken ten annual icloud subscription and i know my music is on it....

    You can download a complete iPad User Guide here: http://manuals.info.apple.com/en/ipad_user_guide.pdf
    Also, Good Instructions http://www.tcgeeks.com/how-to-use-ipad-2/
    Apple - iPad - Guided Tours
    http://www.apple.com/ipad/videos/
    Watch the videos see all the amazing iPad apps in action. Learn how to use FaceTime, Mail, Safari, Videos, Maps, iBooks, App Store, and more.
    How to - Articles & User Guides & Tutorials
    http://www.iphone-mac.com/index.php/Index/howto/id/4/type/select
    iPad How-Tos  http://ipod.about.com/lr/ipad_how-tos/903396/1/
    You can download this guide to your iPad.
    iPad User Guide for iOS 5
    http://itunes.apple.com/us/book/ipad-user-guide-for-ios-5/id470308101?mt=11
     Cheers, Tom

  • How to know the stock of material ?

    Hi gurus,
    For a material number (+Sale org, Dist. channel.. ) , how can we know till present , There are how many material left in stock ? Is there any BAPI functions for this ?
    Thanks

    Hi,
    Two T. Codes:-
    1) MMBE
    2) MB52
    But go for MMBE, which will give detail display. (Means plant wise, batchwise, storage locationwise restricred stock unrestricted , blocked and reserved stock.
    Reward points if helpfull and close the thread as soon as possible.
    Dhananjay

  • WHERE IS RESIDE REPORT SERVER AND HOW  IT RUN(ESSENTIAL)

    Hi ,
    I am usering developer 9i but dont know where report server reside, how configure.
    And how report server start. cause i could not run report.
    if possible help me.
    thanks
    Mostafiz

    hi
    thanks for your information.
    but i could not registration on metalink. please tell how i do that
    to registration need SUPPORT IDENTIFIER AND COUNTRY.
    i am in bangladesh.
    how i get SUPPORT IDENTIFIER.
    please help
    thanks
    mostafiz

  • How to know oracledatabase info

    who can tell me how to know oracledatabase info that includes how many tablespace and segment and so on ?
    thanks!

    you can query the dba_data_files, dba_free_space views etc...
    ex : select tablespace_name "TBLSNAME", SUM(BYTES) "FREE"
    from dba_free_space
    ex: select sum(bytes)/1024 from dba_free_space where
    tablespace_name =' TBLSNAME'
    Thanks.

  • I just my as usual using my phone then i just update my iphone and i install  7.1 then how lock my phone .. there is lock my phone

    i just my as usual using my phone then i just update my iphone and i install  7.1 then how lock my phone .. there is how to lock my iphone
    and i using us tmobile and i will be a using by a turbo chip

    The Sync Process is Via iTunes...
    See here  >  http://support.apple.com/kb/HT1386
    From Here  >  http://www.apple.com/support/iphone/syncing/

  • How to know the total page number of the standard report

    How to know the total page number of the standard report?
    If I insert a graph, a table, or text into the end of the standard report, how to know how much space is left for the current page?

    Hello Net,
    Unfortunately, we do not have any VIs in LabVIEW that can figure out the number of pages of a standard report. However, with the use of ActiveX calls you can achieve this task. Here are a couple of discussion forums which discuss this:
    Excel Page Numbering with ActiveX:
    http://forums.ni.com/ni/board/message?board.id=170​&message.id=194479&requireLogin=False
    Number Pages in Word Report:
    http://forums.ni.com/ni/board/message?board.id=170​&message.id=162972&requireLogin=False
    There is also great documentation on using ActiveX on msdn. You can search this document for page number objects. Here is a link to this:
     http://msdn2.microsoft.com/en-us/library/aa223048(​office.11).aspx
    Please refer to these links. If you still have questions please feel free to let us know so we can assist you.
    Thank you
    Best Regards,
    Dominic L.

  • How to know the User name and date, who executed the report last time.

    Hi All,
    We are collecting a list of reports which are not executed for past 3 months. Can anybody tell me how to know the username and date they executed the report last time.
    Is there any table to look ? or is there any process ?
    Thanks,
    Ravi.

    Ravi,
    Use SE16 - then look at rszcompdir.
    We look up Version = 13 for queries.
    Regards
    Gill

  • From report server database how to know reporting services server

    from report server database how to know reporting services server
    Thanks

    Hi Ajay,
    If I understand correctly, you want to know
    Reporting Services server name based on report server database. Based on my research, I find that the Reporting Services server name is the computer name which install the report server. So we can try to click Start button, right-clicking Computer,
    and then clicking Properties. Under Computer name, domain, and workgroup settings, you can find your computer name.
    Besides, the report server database is a SQL Server database that stores the following content:
    Items, Subscription and schedule definitions, Report snapshots and report history, System properties and system-level security settings, Report execution log data, Symmetric keys and encrypted connection and credentials for report data sources.
    For more information about report
    server database, please refer to the following link:
    http://technet.microsoft.com/en-us/library/ms156016.aspx
    If there are any misunderstanding, please elaborate the issue for further investigation.
    Thanks,
    Katherine xiong
    Katherine Xiong
    TechNet Community Support

Maybe you are looking for

  • Customer Master Idoc gets some fields as garbage with English Lang

    Hi     We are using SAP 4.6C MDMP system. This is not unicode. We are sending customer idoc. The customers are created in Japanese and English language. When we login in Japanese language and send IDOC then the content looks fine. When we login with

  • K3b, filesystems and a dvd player

    Hi! Im using k3b to burn a dvd with 6 movies... just one have less than 31 characters, and the subtitles .srt for it works ok but the other 5 have more than 31 characters, and my dvd player do not "join" the video file with the .srt file... so, I hav

  • Working on a downloaded document and hit "save." Where is it now?

    I was working on a document that I had downloaded. When I made the changes I hit "save." Now I don't know where the document is. How can I find it?

  • Removing invoice block at line-item level

    Hello SAP gurus I've been asked by a client to create a way to delete invoice blocks at a line item level via workflow.  The workflow sends a workitem for each blocked line-item that the invoice has.  What I need to do now is create custom code that

  • Lost iTunes files, iPhoto files after upgrade to mountain lion.

    I'm an idiot I didnt back anything up... I upgraded from lion to mountain lion. At first the set up screen would not accept my apple id password so I created a blank(new) account just to get the computer to work. It works ok but all my desktop files