Broadcasting Recipient email related variable

Hi,
Requirement:
For each sales person send weekly report using broadcasting.
- Problem:
When we select Email into broadcasting for particular sales person..In variable selection of broadcasting also select this sales person. How to automated this process in broadcasting..
Exa:
Sales person email: abcatemail.com- in report sales person variable automatic filled with abc value.
I search SDN, but could not find right answer.
Please, share your experience.
Thanks,
Chandresh Patel

Hi Patel,
You can create a setting for the report in BEx broadcaster and give the recipient name there so that it can be sent to that person. This can be scheduled. Or else try using the program RSRD_BROADCAST_STARTER for sending the report as a mail. You can use the BEx broadcaster setting technical name in the program as a variant and create a process chain to schedule on weekly basis.
Regards
Vijay

Similar Messages

  • Set the broadcaster to email out on work days instead of daily

    Hi Friends,
    Any one can help me to set the BEX broadcaster to email out on work days instead of daily?
    Regards
    Vishwanath

    Hi Viswa and Pravender
    I have a similar issue here:
    I'm working on BW3.5 module and I'm trying to scheule a report in BEX broadcaster with a predefined time. Eg: Every Wed day after Fisc quarter ends. I created a job with name TP_BROADCASTING_**** and included the ABAP program in step :RSRD_BROADCAST_FOR_TIMEPOINT.
    Now In the start condition I selected start date as wed day after fisc qtr close and put the period value as every 3 months and restriction in cal Id as factory calendar.
    Now I have two questions...How can I select just wed nesday after the fisc quarter close ? Is there a std SAP exit variable exist for this ? Or do I need to create one and write ABAP code in Exit ? I tried with Event and other ways but its not showing in scheduler...
    Second one is I logged in to Broadcaster and created new setting for query and filled all recipents etc...now When I tried to schedule this I can not see my Quarterly pre defined time here...But if I change this time to some other calender time period I can see that in scheduler...
    Is there any other way of scheduling the reports at a specific time period ?thanks inadvance
    Sam

  • Want to know table which stores SPOOL LIST RECIPIENT & email addres

    Hi Guys,
    I need to create a report for all jobname & recipient email address. Kindly let me how to find out the recipent's email address for all jobname in TBTCP. I understand that recipent is the distribution list, distribution list has email address.
    JOBNAME ---> SPOOL LIST RECIPEINT -
    > EMAIL ADDRESS.
    thanks.

    Guys thanks for you help and time.
    I am not getting the expected result after doing above steps.
    I will try to clarify the requirement further.
    When I run t-code SM37 and enter following :
    Job name : TXDET-DAILY
    User name :  *
    Job Status : Checked Sched. Only.
    On next screen JOB OVERVIEW. Only one record shows up for job TXDET-DAILY.  When I double click this record, system takes me to next screen where there is button for SPOOL LIST RECIPIENT. When I click this button it displays the recipient is TXDET. TXDET is actually a Distribution list name, maintained in SAP office (SO01).
    When I go in t-code SO01 and click DISTRIBUTION LIST button and then enter shared distribution list name TXDET.
    It gives me 2 email addresses under this TXDET distribution list. 
    [email protected]
    [email protected]
    The spool from the job TXDET-DAILY will be emailed to these 2 email addresses.
    Now I need a report which gives following information.
    Job Name................. Distribution List Name...............Email Address         
    TXDET-DAILY............TXDET......................................[email protected]
    TXDET-DAILY............TXDET......................................     [email protected]

  • How to set up or change recipient email for MRRL Tcodes

    Hi,
    1. After running the Tcode MRRL with specific a CC, a Vendor, a PO and a PO item
    2. Go to tcode sost, I found out that the recipient email is what maintained in General data for the CC and vendor in tcode xk03
    3. I want to change the recipient email to what maintained in Company Code data (tcode xk03)
    Can I pursuit this task by configuration ? If I can not do that is there any way to make the corresponding changes by development works ?
    Thanks in Advanced,
    Hung
    Edited by: hungto on Feb 14, 2011 7:44 AM
    Edited by: hungto on Feb 16, 2011 5:29 AM

    Hey mexigrl64,
    Thanks for using Apple Support Communities, and great question!
    The @icloud.com email address is only required if you want to use iCloud Mail & Notes. You can still use your Apple ID (in your case, the @yahoo.com address) for iCloud Contacts, Calendars, Reminders, Find my iPhone, Backup, etc. In short, you can use all of these functions without creating the @icloud.com address.
    From the information you provided, and if backups are your only concern, then it sounds like you are good to go! There is no need to configure your iCloud settings to reflect the @icloud.com address, as this is just another email account that others can reach you at.
    For more information on the @icloud.com address:
    iCloud: Set up an @icloud.com email address
    http://support.apple.com/kb/PH2620
    Creating an iCloud account: Frequently Asked Questions
    http://support.apple.com/kb/HT4436
    For additional information on iCloud backup:
    iCloud: Backup and restore overview
    http://support.apple.com/kb/HT4859
    Thanks,
    Matt M.

  • I need to extract Recipient Email Addresses - is it impossible?

    Hi I spent way too much time tonight trying to solve this problem, I hope someone brilliant can help.
    I have a web store, and am CC'd on the receipts sent to my customers. So I have accumulated a large mailbox full of emails addressed to recipients other than myself.
    I now need to extract those recipient email addresses into a .txt file.
    Through my travels I discovered the simple script below. It's awesome except that it only works for sender addresses! When I try to tweak the code to extract recipient addresses it gives me an error.
    Can anyone either modify this code, or point me in the right direction?
    I just can't believe this should be so hard! (And it probably isn't except for me.)
    Thanks.
    tell application "Mail"
    set selectionMessage to selection -- just select the first message in the folder
    set thisMessage to item 1 of selectionMessage
    set theseMessages to (every message in (mailbox of thisMessage))
    repeat with eachMessage in theseMessages
    set theFrom to (extract address from sender of eachMessage)
    do shell script "echo " & quoted form of theFrom & return & " >> ~/documents/extracted.txt"
    end repeat
    end tell
    ------------------

    Nice! Austin Kinsella1 your script works well but in some cases return this:
    <Undisclosed-Recipient:;@studio.com>
    I think this mail was sended with multiple addresses.
    Try this one, I made some little changes.
    Good Luck!
    tell application "Mail"
    set selectionMessage to selection -- just select the first message in the folder
    set thisMessage to item 1 of selectionMessage
    set theseMessages to (every message in (mailbox of thisMessage))
    repeat with eachMessage in theseMessages
    set headerMessage to all headers of eachMessage as string
    set recipientMessage to {}
    set start to false
    set char_f to ""
    set char_o to ""
    set char_r to ""
    set char__ to ""
    set previousChar to ""
    repeat with c in headerMessage
    set c to c as string
    if start is true then
    if c is ">" then exit repeat
    copy c to the end of recipientMessage
    end if
    if c is "<" " then set start to true
    if char_r is "r" and previousChar is "r" and c is " " then set char__ to " "
    if char_o is "o" and previousChar is "o" and c is "r" then set char_r to "r"
    if char_f is "f" and previousChar is "f" and c is "o" then set char_o to "o"
    if c is "f" then set char_f to "f"
    set previousChar to c
    end repeat
    set recipientMessage to recipientMessage as text
    do shell script "echo " & quoted form of recipientMessage & return & " >> ~/documents/recipients.txt"
    end repeat
    end tell

  • Multiple recipient email addresses is not working  for xsl & PDF Attachment

    multiple recipient email addresses is not working properly when
    to list has some external email address and sending xls and PDF file as an attachment.
    Test Scenario:
    (A) Create mail target activity
    1)To email : use the multiple email id with some external domain (ex.
    [email protected] ,[email protected], [email protected])
    2)File attachment with .xls file and this file is sending to mail target as an inputstream(at runtime)
    3)Use all other valid parameter in activity.
    (B) Create a process flow File source to mail target
    Execute the process flow.
    Actual Result: Mail is received by every email account. Only external email account get correct file but other email account(as ([email protected])) attachment files
    displaying message
    �abc.xls� can not be accessed. The file may be read-only, Or you may be
    trying to access a read only location. Or, the server the document is stored on
    may not be responding.�
    When i trying to open xls and PDF file
    Expected Result:
    All type of file attachments should be supported with all valid email address
    (servers).
    Pls help me about this senario:
    What is problem in this case:
    I am sending code
    Session session =getSession(host,port,secure);
    session.setDebug(this._debug);
                   Transport trans = connect(host,port,session,userID,password);
                   Message message = new MimeMessage(session);
                   InternetAddress[] iAddr = null;
                   message.setFrom(new InternetAddress(fromName));
                   iAddr = InternetAddress.parse(toUserName, true);
                   message.setRecipients(Message.RecipientType.TO, iAddr);
                   message.setSubject(subject);
                   //BodyPart messageBodyPart = new MimeBodyPart();
                   Multipart multipart = new MimeMultipart();
                   MimeBodyPart messageBodyPart=null;
    if(dataLocation!=null && dataLocation.equalsIgnoreCase("ATTACHMENT")){
                        String tmpName=fileName;
                        if( inputstream != null)
                                  tmpName = makeAttachment(fileName,inputstream);
                        messageBodyPart = new MimeBodyPart();
                        DataSource source = new FileDataSource(tmpName);
                        messageBodyPart.setDataHandler(new DataHandler(source));
                        fileName = fileName.replace('\\', '/');
                        fileName = fileName.substring(fileName.lastIndexOf('/') + 1,
                                  fileName.length());
                        messageBodyPart.setFileName(fileName);
                        multipart.addBodyPart(messageBodyPart);

    First, when sending your message, the filename should be a simple
    filename, not containing any directory names.
    It sounds like your mail server might be doing some special
    processing of attachments, perhaps to prevent viruses.

  • Broadcasting to Email as PDF missing Content from Portal

    Hi all
    I am new to WAD , i have developed a report and published in portal , my client want to pass some comments about the report and Broadcast to email and send it as  PDF through portal to the user by email .
    I have used a INPUT_FIELD_ITEM webitem to write comments but it not getting exported to PDF, as of my knowledge all the web items get into PDF, please guide me on this issue.
    Regards
    VK

    Hello,
    PLease check this link
    Link: [http://help.sap.com/saphelp_nw04s/helpdata/en/43/68ce8391886e47e10000000a422035/frameset.htm]
    From here you can check you cacn't able to export the INPUT_FIELD_ITEM to PDF or any other print version. it is a restriction defined by SAP

  • How do I delete this post? please so it stops broadcasting my email! HELP!

    How do I delete this post? please so it stops broadcasting my email! That first reply is useless!

    How the hell do I take this down?

  • I get a error when I send a Email. Recipient "email@address"  was rejected by server by sever

    I get a error when I send a Email. Recipient "email@address"  was rejected by server by sever

    I set up my email the way the phone and iPad do. Very simple. It works most the time, but I am usually on wifi also. I ran into problem saying email was rejected by server, and it put email in my outbox. I looked in here to see if anyone had a good solution, then realized after reading the post I never actually checked my servers. My actual servers were different than the defaults that were set up. Example : the default server was mail.roadrunner.com, but the actual should be pop-server.roadrunner.com, and same for the smpt-server.roadrunner.com. Based on the ISP, must have the correct servers. But I was always able to send while on wifi. That part I did not understand. But since I fixed the servers, I have not seen any problem sending on either the iPad or iPhone. If you have not found fix, hope this may help if still having problem

  • Numeric IP in Recipient Email Address

    Hi all,
    I am doing some migration work to Messaging Server 2005Q4. I am wondering if it's possible to configure MS to accept recipient email addressses containing IP address rather than the domain name, such as, [email protected]?
    I tried but got bounced back saying 550 5.1.2 unknown host or domain...
    Any help is appreciated.
    Thanks.
    -PY

    yes. the format, "[email protected]" is an invalid mail address. It cannot be received. No mail client should be emitting these. You should not be accepting them.

  • Broadcast to Email inconsistency

    HI All
    I am facing a problem whem i am trying to broadcast as  emial a WEB Template from Portal , as i am getting some content only
    not the entire, example i have a heading which is missing in th PDF which i am trying to broadcast as email, where as logo and table(Analysis item) are present, so is there a way where in i can control or know to send only specific info into PDF and email to users?
    Regards
    VK

    Broadcast is effectively doing an export. Not all the information is converted to PDF when doing an export. Only certain Web Items are exported. So if you have created a text heading without using a web item, then it will not show in the exported / broadcast PDF. But if you created the heading using a text item it would.
    You can easily figure out what the broadcast PDF will look like by testing with the export command. Look up help for export command to see what web items are converted to PDF.

  • I get the following message when sending emails: The recipient "email address" was rejected by the server".  If I send the email to 3 people, one will be rejected and a different person will be rejected.  Any ideas?

    I get the following message when sending emails on my ipad:  The recipient "email address" was rejected by the server".  If I send the email to 3 people, one will be rejected.  If I send the same thing to the same 3 people a different one will be rejected.  Any ideas?

    Try a Reset [Hold the Home and Sleep/Wake buttons down together for 10 seconds or so (until the Apple logo appears) and then release. The screen will go blank and then power ON again in the normal way.] It is app and data safe!

  • Invalid Gift Unable to gift an item using iPhone 5s and iPad air, Error Message Invalid Gift.  You must enter a valid recipient email address.

    This has been going on for quite a while.  I am able to send/purchase gifts from my iMac however; when I attempt to purchase a gift on my iPhone 5s (iOS 7.0.4) or my iPad Air (iOS 7.0.4 ) i get the following error message:
    Invalid Gift
    You must enter a valid recipient email address.
    This happens no matter what email address I type in.   Once this message comes up you can only select "OK".   It never let's me finish my purchase.
    Any ideas?

    Hi there jphilyaw,
    You may find the information in the article below helpful.
    If you can't redeem your iTunes Gift Card or code
    http://support.apple.com/kb/HT6021
    -Griff W. 

  • Iphone 4S- getting "the recipient email address was rejected by the server", any one a suggestion?

    I have tried everything from reading different online suggestions (that is going into setting-mail, contacts, etc. and look at outgoing server and making sure setting is correct...) and still getting "the recipient email address was rejected by the server", I have tried resetting network and also hard reboot. Nothing seems to work and would greatly appreciate any new suggestion?
    Thank you.

    It could be a typo in the 'return adress' field, a setup problem by the sender of the email. Unless you can reply to the same email sometimes successfully. Have a look at the actual address you are trying to send to, often he errors are obvious.

  • Can I send iTunes gift to a recipient email address which is non apple account email (I.e. Comcast or Gmail) as long as the person has an apple account and device to redeem it for use.

    Can I send iTunes gift to a recipient email address which is non apple account email (I.e. Comcast or Gmail) as long as the person has an apple account and device to redeem it for use.

    Yes - gifts are sent to an email address not to the iTunes account, the email has a redemption code in it which the recipient then redeems. The recipient needs to be in the same country as yourself, he/she won't be able to redeem it if their account is in a different country's store.
    Redeeming a gift : Redeeming iTunes Gift Cards and content codes - Apple Support

Maybe you are looking for