Dynamic selection while Broadcasting reports

Hello Experts,
                      I have a scenario where I need to Broadcast reports as excel file based on Country, however for each Country there is a person responsible and that person responsible should see data pertaining to their own Country only. Data related to other Countries should not appear in their report when the broadcast is done.
For example - Currently my report has data for 2 countries Germany and South Africa and each country has their own person resposible. So when I broadcast the report, I need a certain kind of filtering to be done, so that the German person resposible
should not see the data for country South Africa and vice versa.
I know that Query can be restricted to Authorization levels, but can the same be done during Information Broadcasting?
Thanks in advance!

HI,
yes this can be achieved by using the Option of Broadcast to Email By Bursting.
Here the only thing that you need is that you need to enhance the country master data with a column called as email where you maintain the email address of the person to whom the mail has to be sent for a given country and the query to be broadcaster as Workbook must contain a variable for country.
This way the broadcaster picks every row maintained in the country master data and then sends mail to the corresponding mail ID maintained.
Hope this helps.
Regards.
Shafi.

Similar Messages

  • Dynamic Select List in Reports

    Hi,
    I have come across solutions to implement dynamic Select Lists. But can the same be implemented in a report.
    I have a report of 2 columns which are select lists. The Value of one depends of the other.
    Can this be done?
    Thanks in Advance

    Hi Abdullah,
    Thanks for the Tip. However, couple of queries.
    1) The first modification involves changing the query to : select lov_pkg.savekey() , colA, colB, ... But the function savekey takes a value.
    Ideally, I need this function to be called while loading and when the first select list is changed. How can this be done.
    2) Also, To make this change in query, I had to use (Use Generic Column Names (parse query at runtime only)) option. Now my Add Row button doesnt work? Can you tell me how that can be customized.
    Thanks,
    Sunil

  • Dynamic selection button on report RCATS_APPROVE_ACTIVITIES

    Hi,
    I made a copy of the program RCATS_APPROVE_ACTIVITIES with all its components, and the dynamic selection button on the selection screen doesn't work like the standard.
    In my researches, I found that the dynamic selection that the standard program uses is associated to the logical database 'PNP', but the logical database that the programs uses is 'PNPCE', and that's the dynamic selection that my program copy is showing.
    Does any one have an idea how this happens and how to solve?
    Thanks.
    Sónia

    Hi Sonia,
    You program is using dynamic selection screen which actually is the selection screen of your logical database. You can see that thru tcode SE36-> PNP->click on selection check box. You will see the code of selection screen. This selection screen is called in standard program and since you have copied the standard program, your program is also showing the same selection screen. LDB can be called in standard program thru Function module LDB_PROCESS.
    In case you want to remove some of the selection screen fields of LDB from your report, you can do so in the
    'at selection-screen output' event by looping at the selection screen variables and stopping unwanted fields from display.
    You need to check the group name and the field name of the fields you want to disable and use it in the below code accordingly.
    e.g.
    at selection-screen output.
    loop at screen.
    if screen-group2 = 'DBS'.
          screen-active    = 0.
          screen-invisible = 1.
    endif.
    modify screen.
    endloop.
    Cheers,
    Vikram
    Please reward for the helpful replies!!

  • Dynamic selection in ALV report

    Hi Guru's
    I have cpoied a standatrd program(RFBILA00) into Z-program.
    I need to display the profit centre from dynamic selection in ALV header  output when profit centre is selected.If not no need to display it.
    Please do the needful.
    Thanks,
    Sunil.

    hi,
    Refer to the link,
    http://www.abapcode.info/2007/06/dynamic-selection-on-alv-at-run-time.html
    This may help you.
    Regards
    Sumit Aagrwal

  • Dynamic column selection while running report

    Can any one explain how to get the following functionality in report:
    I have a cube with following fields:(with depriciaated amounts)
    Plant  Mat#  Fiscper       Jan   Feb  March April  May   June   July   Aug   Sep   Oct   Nov   Dec
    ==== ====    =====      ==== ==== ===== ==== ==== ===== ==== ==== ===== ==== ==== ====
    P1      M1     03/2009    $100    $90   $80   
    P1      M1     04/2009    $100    $90   $80     $70  
    P2      M2     04/2009     $10     $9      $8     
    P2      M2     04/2009     $10     $9      $8      $7
    When I run the report with Fiscper as selection, ie 04/2009, I shoud get the report displayed only April column
    Report out put: (Only April column should be displayed)
    Plant  Mat#  Fiscper       April
    ==== ====    =====       ====
    P1      M1     04/2009    $70      
    P2      M2     04/2009     $7
    When I run the report with Fiscper as selection, ie 03/2009, I shoud get the report displayed only March column
    Report out put: (Only March column should be displayed)
    Plant  Mat#  Fiscper       March
    ==== ====    =====       ====
    P1      M1     04/2009    $80      
    P2      M2     04/2009     $8
    Can any explain how to desing this in query designer?
    Thanks,
    PV

    create new selection
    drag and drop the kf
    drag and drop calmonth
    create formula variable for calmonth using type as "customer exit"
    now based on the fiscperiod you can fill calmonth in customer exit which will give you desired output
    you can use text variable if you want the heading for the KF to be dynamic.

  • Error while broadcasting report to few users only!!

    Hello everybody,
                                We have a report which is scheduled for broadcasting to all users daily.Report data is hierarchy based.
    But, for few users report does not go, in  RSRD_BROADCAST_LOG we found following warning i.e. message with YELLOW signal light
    '<userid> not usable for Jobstep'.
    What is mean by this warning and how to correct it?
    I have checked the user profile, his email id is correct and the Comm.Meth is 'INT E-Mail'.
    Regards,
    Priyanka Joshi

    Hi Priyanka,
    Just a guess, check a user type for the user for which system shows warning .. I think it will be other than "Dialog". It could be background,communication and some other type. This types of users are  not meant for receiving broadcasting .
    Try to change the user type to "Dialog" and it should go through.
    Hope that helps.
    Regards
    Mr Kapadia

  • Dynamic select list in report based on other report column

    I have a report with three columns. The first column is the Id, the second is the name that matches the Id. In the third column I would
    like to have a list of values that are dependant on the Id in the first column.
    This is the query I have.
    SELECT c.category_id,
    c.category_name,
    APEX_ITEM.SELECT_LIST_FROM_QUERY(3, NULL,
    'SELECT option_name, option_id
    FROM invmodel_category_option
    WHERE category_id = APEX_APPLICATION.G_F01('||rownum||')') AS options
    FROM invmodel_model m,
    invmodel_category c
    WHERE m.model_id = :P2_MODEL_ID
    This doesn't give any error, but I do not get any select list.
    I have tried various other ways to reference the category_id within the APEX_ITEM function, including:
    WHERE category_id = c.category_id (c.category_id is an invalid identifier)
    WHERE category_id = ''#CATEGORY_ID#''' (number error)
    As an example what I would like to see is
    Id Name Options
    1 Fruit Banana, Apple, Orange
    2 Vegetable Carrot, Potato, Onion
    Can anyone please tell me if this can be done, and how.
    Thanks

    This can be done if you follow this example:
    http://apex.oracle.com/pls/otn/f?p=31517:176
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Dynamic Selections for the F.42 report

    Hii Experts,
    I want to add a field called Business Place(BUPLA) in dynamic Selection in tcode F.42.
    So, in F.42 KDF Logical Database is used, so i make a Custom Selection view for KDF database.
    Business place is successfully added in Dynamic Selection, but it doesn`t reflect when i execute F.42.
    When i test from SE36, it reflects.
    Nitin Garg

    Note 50370 explains in full detail how the system works for selecting the documents with dynamic selection.
    Balance report reads the transaction figures which are stored with the help of several different fields, so the selection according to further fields cannot be proceed. This is standard design.
    The dynamic selection for Document Data does not work for reports which use customer / vendor transaction tables (KNC1 LFC1),i.e., document data like doc.number and Doc.date is not stored in transaction tables.
    Dynamic selections can only be used with customer / vendor, company code
    or fiscal year fields.  The following reports are affected by this
    program design.
    S_ALR_87012186 - Customer sales
    S_ALR_87012082 - Vendor Balances in Local Currency
    S_ALR_87012093 - Vendor Business
    S_ALR_87012079 - Transaction Figures: Account Balance
    S_ALR_87012080 - Transaction Figures: Special Sales
    S_ALR_87012081 - Transaction Figures: Sales
    S_ALR_87012105 - List of Down Payments open at Key Date - Vendors
    S_ALR_87012172 - Customer balances in local currency
    RFKSLD00       - F.42
    RFDSLD00       - F.23
    Hope this clarifies.
    Kind Regards
    Soumya

  • Execution of report with dynamic selection in method

    Dear Experts,
    I need to execute report 'RCATS_APPROVE_ACTIVITIES' in background in the method after populating field-'Processing status'. Also there is a option of dynamic selections for this report in menu bar. In Dynamic selections, there is a field - 'CREATED BY' which also i want to populate before execution.
    Here I am able to populate field- 'Processing status' like code below:-
    DATA: rspar    TYPE STANDARD TABLE OF rsparams,
         wa_rspar TYPE rsparams.
    wa_rspar-selname = 'LDBSTAT'.
    wa_rspar-kind = 'S'.
    wa_rspar-option = 'EQ'.
    wa_rspar-sign = 'I'.
    wa_rspar-low = '10'.
    APPEND wa_rspar TO rspar.
    CLEAR wa_rspar.
    SUBMIT RCATS_APPROVE_ACTIVITIES
         USING SELECTION-SCREEN 1000
        WITH SELECTION-TABLE rspar
    But I am not able to populate the dynamic selection field- CREATED BY.
    Please suggest(if possible with code) how to resolve this.
    Regards
    Nitin

    Dear KArri,
    Thanks for the reply but this i am performing in the Method of BO and want to execute this method in my workflow. That is the reason, I have posted this in workflow forums.
    For this I have created a customised BO to use in CATS workflow.
    Regards
    Nitin

  • Dynamic Selection in S_ALR_87012079

    Hi,
    The dynamic selection in the report S_ALR_87012079 does not seem to be working..If I enter a document type in dynamic selection, even then it displays all document type in the output and does not give me output for that document type only..
    Has anyone faced this or is there any SAP note on this..?
    Regards,
    SAPFICO

    Hi,
    While I was searching for SAP note on this, I did find some OSS notes where dynamic selections were not working and SAP had given some code corrections for S_ALR reports but not this one..
    Any idea whether we can get dynamic selection work for this report?
    Regards,
    SAPFICO

  • Dynamic selections in S_ALR_87012310 Trial Balance (South Korea) not workin

    Hi Experts,
    Dynamic selections in the report S_ALR_87012310 Trial Balance (South Korea) not working.
    Can some help me on this.
    We are in ECC 6 EPH4.
    Thanks and Regards
    Om

    It is standard report and standard for dynamic selections as well.
    If it is not working check with your tech team (Basis team) there could be any authorisation issue
    Srinivas

  • Adding material field in dynamic selection of FBL3N

    Hi,
    We need to add material field in the dynamic selection of FBL3N report.
    I have gone through SCN forums but not found any related info and searched in service marketplace for related SAP notes and found 310886 as per this note.
    G/L accounts: logical database: SDF
    Permitted tables:
    SKA1: all fields
    SKB1: all fields
    BSIS: all fields
    But material field is not available in BSIS table, is there any way to add material in the dynamic selection of FBL3N report.
    Regards,
    RK.

    Hi bhi,
    Please check BTE 1650. You need to enhance the table. Please give the functional module to your ABAPer. He will do the rest.
    Regards,
    Kishore

  • Field to add in Dynamic selection

    Hi experts,
    If i want to add one field in dynamic selection in FBL3N report what is the procedure?
    please give the steps
    points will be awarded

    Hi,
    If iam not wrong you want select field from dynamic selection
    for that goto fbl3n and select dynamic selection in that which field is required select that and execute you will get desired results
    but if you want *** fields in dyanmic selection i think it is immpossible.
    Thanks
    Shiva

  • Extend dynamic selection for a field added on PRPS table

    Hi Gurus,
    I want to see the field that I've added in PRPS table as part of dynamic selection on the reports like S_ALR_87013542/ S_ALR_87013532. The LDB for project systems is PSJ. How do I make it appear as a dynamic selection on the selection-screen criteria for these reports?
    Thanks...

    Hi,
    We have done this a lot on my project.  Follow these steps:
    (1) Transaction SE36 for logical database PSJ
    (2) Choose menu path Extras -> Selection views (Ctrl+F7)
    (3) Change the "Origin of view" to SAP
    (4) Find the PRPS_R node in the top, right "Tables/nodes" view.
    (5) Double-click PRPS_R.
    (6) Find your custom field that you added in PRPS (in the bottom "Table fields/node fields" view.
    (7) Choose and enter a 2-character Function Group ID (see the top, left view) next to the new field.
    (8) Save and transport...
    Best Regards,
    James Gaddis

  • Dynamic selection field display

    Hi
    Can we display field values for a field from Dynamic selection ?

    Hi,
    Yes, you can display field values in dynamic selection field.
    If I understood your question correctly, you are talking about the dynamic selection used in reports ( For eg. ME2N). The field which are appearing in dynamic selection shows the field values. ( you can press F4 and check the field values).
    Rajesh.

Maybe you are looking for

  • Trackpad will no longer drag things or select text, other operations fine.

    all of a sudden i noticed that i cant select (highlight) text and such with the trackpad. I also am unable to drag things like windows and files around. I am talking about physically clicking and dragging, both of the drag options are off in system p

  • How can I determine what is stored under "other" on my iphone

    When I synch my iPhone 4S, there is a fair amount of memory tied up in "other", but I don't know what is in there.  How can I see and manage what is being stored in "other"?

  • How do i completely remove headers from email messages

    Hi everyone. Can someone tell me how to completely remove the headers from showing up in messages i send, forward or receive? I know how to make the headers shorter, but that's not what i want to do. I want to completely remove them from all outgoing

  • Need to give file location in FTP Adapter at runtime

    Hi All, We r using FTP Adapter for fetching files from remote server, we have scenario where we need to give the location of file at runtime. Location may vary so the file location must be given at runtime. We r using SOA 11.1.1.3 Thanks, RR Edited b

  • Problem with my Flash 10

    I am having problem while visiting some of the website like Youtube... Any idea how to solve? RFN www.amrabangladeshi.com Hoicoi.com