How to Broadcast subset of a data in a report to the respective users

Hi
I have to broadcast the subset of a data in a report to different users. I believe this can be done using busting email broadcasting option. But im not sure about the settings.
My report looks like below:
Accounting Clerk             Customer              Invoice Amount           Discount Amount
Clerk1                               Customer1           100                              50
Clerk1                               Customer 2           200                              70
Clerk2                               Customer3            150                              55
Clerk2                               Customer4            80                                10
I need to broadcast the above report to my respective accounting clerks. ie I need to broadcast only the first two records to clerk1 as an email and only the last two records to Clerk 2.  The accouting clerk info object has email address as an attribute.
Please let me know how to achieve the above requirement. Your help would be highly appreciated.
Regards
Sadeesh

Thanks for the reply Alex.
Is it mandatory to maintain the email address in SU01 or can the email adddress be maintained as an attribute of say accounting clerk in my example?
For example say i have 20 accounting clerk, do i need to create 20 variants one for each accounting clerk in broadcasting? Please clarify.
If yes for the above query, are there any way to reduce the no of variants.
Your help would be highly appreciated.
Regards
Sadeesh

Similar Messages

  • How can i open my cellular data. I dont have the cellular network in my settings

    how can i open my cellular data. I dont have the cellular network in my settings. Im using Iphone 4s bought in Japan and ulocked here in the philippines using Globe carrier

    Are you trying to set an APN setting on it?
    Settings>Cellular>Cellular Data Network

  • Particular data in a report, on the basis of the values (0, 1) of a dashboa

    hi
    User should be able to see the particular data in a report, on the basis of the values (0, 1) of a dashboard prompt.
    For e.g. if the user selects 0 then current years data should be filtered out
    and if the user selects 1 then rest all years data should be displayed in a request.
    give me hint regarding this question

    Hi,
    I hope this will help you
    http://oraclebizint.wordpress.com/2008/01/17/oracle-bi-101332-selecting-reports-from-dashboard-prompts-and-guided-navigation-sections/
    In this example he used prompt for selecting Region sales and Brand sales which you can replace with 0 and 1
    Phani.

  • How do I put a collection in a readonly report on the fly

    How do I put a collection in a readonly report on the fly??
    Thanks, examples if you can please.

    Doug,
    You can simply create a report region and use that to display the records in the collection:
    SELECT
      c001,
      c002,
      c003,
    FROM
      apex_collections
    WHERE
      collection_name = 'YOUR_COLLECTION_NAME'Thanks,
    – Scott –
    http://spendolini.blogspot.com/
    http://sumnertech.com/

  • How to show a Account member (date type) in reports??

    Hi,
    I have a Account member of date type.
    but when I am using that member in reports it is not showing me the date that I have entered in planning web form.
    I have the same member in planning web form and it is showing me proper date.
    Eg: 19/Dec/1985 is showing as 19851219 in report.
    How to display it in proper date format???
    Thanks,
    Sourabh

    I think you might be using Essbase database connection in reports where dates are stored as numbers. You probably need to use Planning database connection on your reports to make date data type show up correctly.

  • How to set first column as date (dd/mm/yyyy) in the specific format in excel

    hi need help wat i did need help is tht i need wen ever i send view a excel data  the first column set to date  but some times wen i view in different type of pc the date format change to mm/dd/yyyy. is  thr any way i can set the format?

    If you just need to reformat a correct date to show up as dd/mm/yyyy, just use the "Format Cells" command and set a custom format string to exactly that. If, on the other hand, you are finding that Excel just doesn't get that the first value is a DAY, not a month, such as trying to graph a temperature data logger that records data in dd/mm/yyyy:
    Reformat the strings as dd/mm/yyyy, using the first method. This will make them LOOK correct, even though the actual date VALUES are still day-month inverted. Now save the table as a .CSV file. This will save the dates as plain text in the correct order, which you can then re-import and have Excel now read the correct date value.
    Ryan R.
    R&D

  • Cannot find sales doc type data  in my  report on the multiprovider

    hai everone,
                      I'm doing report on the multiprovider which is connected to different ods's  i'm getting the data for all the fields except for 'sales doc type'.I could see the data for it in the ods on which the multiprovider is built but could not find the data in the report.Can any one suggest me how to get the data for sales doc type into my report.
    Urgent..

    yeah listcube is a TCODE to check the data in the cube. run the code and enter the same selections that you would be doing on a query to see and see if it returns any data. if it does, then the problem is with the identification. Most of the times create recommendations work like a charm. But just go into the chars and see if the IO in question has been checked against the ODS that aint returning any records.

  • How to create a Custom Screen for executing a report in the backend ?

    Hello Everyone,
    I have a requirement to develop a Custom Application on the Cloud to capture few fields from user and trigger an execution of a report in the background in CRM. There is no need to display any results after the triggering execution. Just need to show a message that "Background Job was successfully submitted".
    I saw the types of screens available for creation as explained in this link Screen Types, unfortunately none of the screen types works out for me.
    As seen from the requirement, there is no need to store any data send from the UI in backend. So, it doesn't make sense for me to create a Business Object. So I tried creating a Query Object to see if that works out, but query object also requires a BO to execute query on and it also makes result list view mandatory and asks me to pick atleast one field to show in the result list.
    I also tried Mass Data run which doesn't fit the bill.
    So, I'm looking for the best possible UI screen and approach to build a simple custom application with 5-6 fields and an execute button. Please suggest me the best possible option available in the C4C.
    Regards,
    Srikanth

    Hey,
    first of all: if you really need a button, you will need to create your own business object with an action.
    If you just want to trigger the service you could add an extension field of type indicator to any standard Bo and the put logic in the before save of this Xbo. Then you just add the indicator to the UI. But the user would always have to go to this screen I.e. The customer...
    so i guess maybe a custom business object with only one instance, a button, some logic in an action and a generated UI including a workcenters 'backend report execution' is the best way for you!
    cheers
    jens

  • Splitted Data to be Set in the respective list

    Hi,
    I want to set the respective spilted values in the respective List, but since the length is coming as 2 only in the firstList both the splitted values are populated.
    String test = "900000005146$@$AR@L-";
            List<String> firstList = new ArrayList<String>();
            List<String> secondList = new ArrayList<String>();
            String[] parts = test.split("\\$@\\$");
                if(parts != null){
                    for(int i = 0; i < parts.length; i++){
                      System.out.println(parts[0]);
                      firstList.add(parts[0]);
                      System.out.println("FirstList:"+firstList);
                      if (parts.length >= 2) {
                          secondList.add(parts[1]);
                          System.out.println("FirstList:"+secondList);
                  } else {
                    System.out.println("Failed!");
                  }Output:-
    900000005146
    FirstList:[900000005146]
    FirstList:[AR@L-]
    900000005146
    FirstList:[900000005146, 900000005146]
    FirstList:[AR@L-, AR@L-]
    Instead I want the data to be populated as below:-
    900000005146
    FirstList:[900000005146]
    AR@L-
    SecondtList:[AR@L-]
    Please clarify.
    Thanks.
    Edited by: 797836 on Mar 12, 2013 7:05 AM

    Thanks Guys.
    String test = "900000005146$@$AR@L-";
            List<String> firstList = new ArrayList<String>();
            List<String> secondList = new ArrayList<String>();
            String[] parts = test.split("\\$@\\$");
            System.out.println("the length is:"+parts.length);
                if(parts != null){
                    for(int i = 0; i < parts.length; i++){
                      firstList.add(parts[0]);
                      System.out.println("FirstList:"+firstList);
                      if (parts.length >= 2) {
                          secondList.add(parts[1]);
                          System.out.println("SecondList:"+secondList);
                          break;
                  } else {
                    System.out.println("Failed!");
                  }Added the break; to get the correct results.
    Thanks.

  • How do I retrieve binary cluster data from a file without the presense of the cluster size in the data?

    Hey guys,  I'm trying to read a binary data file created by a C++ program that didn't append sizes to the structures that were used when writing out the data.  I know the format of the structures and have created a cluster typedef in LabView.  However the unflatten from string function expects to see additional bytes of data identifying the size of the cluster in the file.   This just plain bites!  I need to retrieve this data and have it formatted correctly without doing it manually for each and every single element.  Please Help!
    Message Edited by AndyP123 on 06-04-2008 11:42 AM

    Small update.  I have fixed size arrays in the clusters of data in the file and I have been using arrays in my typedefs in LabView and just defining x number of indexes in the arrays and setting them as the default value under Data Operations.  LabView may maintain the default values, but it still treats an array as an unknown size data type.  This is what causes LabView to expect the cluster size to be appended to the file contents during an unflatten.  I can circumvent this in the most simplest of cases by using clusters of the same type of data in LabView to represent a fixed size array in the file.  However, I can't go around using clusters of data to represent fixed size arrays BECAUSE I have several multi-dimentional arrays of data in the file.  To represent that as a cluster I would have to add a single value for every element to such a cluster and make sure they are lined up sequentially according to every dimension of the array.  That gets mighty hairy, mighty fast. 
    EDIT:  Didn't see that other reply before I went and slapped this in here.  I'll try that trick and let you know how it works.......
    Message Edited by AndyP123 on 06-04-2008 12:11 PM

  • How to move from a "recovered data external hard drive" to the new Computer?

    Computer 1's hard drive crash and all programs and data were recovered professionally and sent to me on an External Hard Drive.  Computer 1 was on Windows 7.  I can fun the program off of the External Hard drive fine, when connected to my my new Computer.  I click on the .exe file and it pulls up the catalogue as it should.  All off of the recovery drive.
    The new Computer, is on Windows 8.1.  How do I get the Adobe Catalogues moved/copied to the new Computer?  
    I redownload Adobe 10 onto my new 8.1 Computer from the Adobe website.  Using the new download, I was able to open the Catalogue on the External Drive (F).  Cannot find a way to "relocate" the Catalogue to the new computer.  The pictures have already been copied to the new computer.
    Please help!!!!!   Desperate not to lose the organization (tagging/dating) etc in 30,000 pictures+.
    Kay

    Before we can give a solution, we need more information and we must be clear about the details of the recovery.
    From your post, I assume that the external drive contains a copy of your picture files, with probably exactly the same folder path. I think that that path is identical in Win7 and Win8 (it was not in XP).
    You have reinstalled Photoshop Elements 10 in your new computer.
    So the main point is : what about your old catalogs ? It's quite possible that the professional recovery has also made a copy of those.
    You'll have to search the external drive for one or several folders containing a 'catalog.pse10db' file.
    If you find one or several, select the newest in date (or the biggest), the folder containing it is the catalog you are looking for.
    If you don't find one, be sure that the explorer is set to show hidden files. Without catalogs, you can't restore your organization
    Now, when you have found the catalog (the folder), you can do this test. With PSE and Organizer closed, double click on the 'catalog.pse10db' file. That should open the organizer with the catalog. Since the files are not in the same location as before, all links in the catalog will be wrong : different drive identification and perhaps different folder structure. That test should show you the thumbnails (the catalog cache in the folder should have been recovered; if not it's not that important, the thumbnails cache will be recreated automatically).
    Now, how to 'reconnect' all files, that depends on what you want to do: keep them in the external drive or copy them back to the main internal drive. The problem will be either to update the catalog database to point to the new location or to recreate the same drive identification as before : letter and drive serial number, exactly same folder tree. We can discuss those options when you have made the first test.
    If that goes well, don't worry about the location of the catalog : you can move it either from the catalog manager or manually.

  • How do I get two independent data sources to graph on the same chart?

    I have one graph of streaming voltage and another graph of a simple boolean function which jumps from zero to one when a button is pushed. I'd like to have both lines of data display on one graph. The goal is to have an even marker for the voltage graph - pressing the boolean button would "mark" important data points during acquisition. How do I combine the two? (I tried putting both into an array and graphing that, but it seems to just average the two instead of plotting them separately.) Thanks.

    And yet another way...
    If you present an array of waveform data-types you can sidestep this issues of disimilar sample rates.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction
    Attachments:
    Wform_chart.vi ‏40 KB

  • How to auto login and pass data (parameter) to ApEx at the same time

    Does anybody know how to automatically login to apex (e.g. from JSP page) and pass a parameter value at the same time? I can use wwv_flow_custom_auth_std to login, I can even choose a page but I cannot pass any data (at least I do not know how). If I use f?p URL syntax I can pass data but there is no way to pass login/password information.
    Any idea? Thanks Jaros

    Jaros -
    You could copy your login page and make the new page "public". On the new page, add a process before the login process that sets the value of application item FSP_AFTER_LOGIN_URL to the report page URL (with the arguments), e.g.,   :FSP_AFTER_LOGIN_URL := 'f?p=&APP_ID.:100:&SESSION.::NO::P100_X,P100_Y:&RPT_VALUE1.,&RPT_VALUE2.';Create application-level items RPT_VALUE1 and RPT_VALUE2 in the application.
    From your external page, POST to this new "login" page, passing values for the username, password, rpt_value1, and rpt_value2 items.
    Let us know if it works.
    Scott

  • How can I transfer and store data from my PC on the ipad without using icloud

    I am a new user having received the iPad air/2 from my family as an 80th birthday gift. (at my request).
    At this stage my principal usage is to transfer photos for PC to show family when visiting. I tried iTunes but it caused many problems with my PC, so I un-installed it. I found an ap which did the job simply and easily via wi fi transfer.
    My other main usage is to be able to play my music transferred from my PC to the ipad and held in it's memory so that it can be used even when off line.
    In other words iCloud doesn't seem to be able to do this.
    I sent myself a song via an email, downloaded it on to the ipad, listened to it, then closed the email.
    I cannot now find where that song has got to to retrieve... ipad search says it can't find it.
    Basically I want to transfer a folder of music into the ipad and play them back at will.
    Can anyone help me?
    Sorry to be so longwinded.. cheers Ted
    My PC runs Windows 7 64 bit.
    iPad is IOS8 I believe with 64 GB memory.

    You shouldn't be worrying about 'hackers'. Apple have good security & so long as you pick good passwords the data should be safe.
    There are parts of using iOS & iTunes that requires an Apple ID & iCloud, however you can disable many of the feature you do not need, and avoid syncing any files into iCloud. It can be annoying, but a lot of the services help to make backups easy.
    You may want to visit into an Apple store if you are near one, they may try to sell you on the benefits of iCloud (it's kind of their job), but they may also be able to help you get the iPad under control. See if you can get the PC setup with iTunes, that is probably where you need to start.
    Good luck with it

  • How to get  the actual data in ALV report

    I am doing some upgradation work   in that i am using Submit  & And return and  also i am using some function modules like LIST FROM MEMORY , LIST TO TXT wnd WRITE LIST , it gives output in normal list format , But i need to print in ALV report .
    With the use of set table for 1st display i got the  ALV report   but not with actual data, (some junk value is showing) , So can any 1 suggest me how to get  the  actual data in ALV report, With the use of  Any Function Module or with Coding,
    with regards,

    Hi Saravana
    I am sure you must be getting the values in tables of table parameters from every FM.
    consolidate the values from tables of all FMs in one table and built ALV for that table only.
    I hope this way you can show the actual data in ALV.
    thanks
    Lalit

Maybe you are looking for

  • Associative array comparison and INSERT upon IF condition

    Hi Guys, I have written this pl sql code to identify non existing sellers and insert their sales channel information into the dimension table (dimensional table update). Somehow,......nothing is inserted and this script runs for 12 hours+ without any

  • Windows scripts broken? Someone please help me

    Prior to upgrading to v9.2.0.61 windows scripts worked great in itunes. Since the upgrade, I consistently get the following error - regardless of what script I run. Can anyone shed some light on this, please? Script: c:\users\clayton\desktop\NewAppen

  • Media Encoder cc (2014) freezes during export

    I have re-installed AME with no luck.  I'm using AME as a direct export from Premier CC.  I'm getting the same results from 2 PC's.  Sometimes if freezes at 20%, sometimes at 50%....Using AMD r9 290x video cards.

  • Add User Input in Email Notification Template

    Hi all, I'm new to SM and in need of anyone's assistance. I've created a service request and in the template under User Input, I have it requesting the "New Users Name" and the "Start or Termination Date". I'd like to add these 2 inputs into my Email

  • CRM 5.0 certification query?

    Hi, I just spoke to SAP UK regarding CRM Marketing certification CR600. They do CRM 5.0( not CR 4.0) & no prerequesite like certifaction in base customisation ( though it is advisable ). So we can straightway do CR600 I have been practising in CRM 4.