PO Email output sender address

Hi guys,
We are facing an issue with SRM PO Email output.
The sender address of the Email is showing as Workflow system instead of the Username who has created the PO.
Any suggestions?
Thanks,
naga.

Hi naga,
I think you can do this this way :
Your PO is sent by mail so there is certainly a method called like : PROCESS_BBP_PO_MAI where your smartform is called. At the end of this method there is a function module called to send the mail : CALL FUNCTION 'SO_DOCUMENT_SEND_API1' this function contains parameter "sender_address". You should change this parameter by the mail of po requester. To find the mail of po requester you have to call : BBP_PD_PO_GETDETAIL and then find the requesters mail. Anyway try first with hardcoded mail to test it. You would also need to copy the standard class which is triggering this method in order to modify the code.
Tell me if this answers your question and reward points if helpfull.
Best regards,
Laurent

Similar Messages

  • I cannot send email - error message as follows : 'The sender address (my email address) was rejected by the server smtp.tiscali.co.uk.' I can send email from other apple devices, and the email settings are identical. Any ideas?

    For some reason I cannot send email - all was working fine, but now I get the following error message when I try to send email:
    'The sender address (my email address) was rejected by the server smtp.tiscali.co.uk'
    I can receive incoming mail ok and I can send email from other Apple devices. The problem seems confined to my Mac Book Pro.
    Ant ideas?

    Hello there, Pablo639.
    The following Knowledge Base article offers up some great steps for troubleshooting mail issues on your Mac:
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/TS3276
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Exchange 2010: Sender address rejected: Access denied

    hi friends
    i have been recently experiencing an issue with one of my customer which i send email i get bounce message while i can receive their emails with no issue. i have exchange 2010 installed and im using Anti spam device too. my domain is ok.com
    i try to send from OWA as well but i get the same result.
    Delivery has failed to these recipients or groups:
    [email protected] A problem occurred during the delivery of this
    message to this e-mail address. Try sending this message again. If the problem continues, please contact your helpdesk.
    Diagnostic information for administrators:
    Generating server: antispamServer.ok.com
    [email protected] #< #5.0.0 X-Spam-&-Virus-Firewall; host mail.abc.com[22.22.22.12] said: 554
    5.7.1 <btv1==14869c83b8f==[email protected]: Sender address rejected: Access denied (in reply to RCPT TO command)> #SMTP#
    Original message headers:
    any idea?
    thanks

    hi
    when i disable the antispam device i get this error
    smtp5.relay.iad3a.emailsrvr.com rejected your message to the following e-mail addresses:
    [email protected]
    smtp5.relay.iad3a.emailsrvr.com gave this error: <[email protected]>: Sender address rejected: Access denied
    Your message wasn't delivered due to a permission or security issue. It may have been rejected by a moderator, the address may only accept e-mail from certain senders, or another
    restriction may be preventing delivery.

  • IOS 7  mail reject sender address

    Hi everybody, I'm using an iOS7 (7.0.2) iPhone 5.
    As I have had with previous iOS, I'm using as SMTP server the Gmail one, for all of my email addresses, all of those are setup into Gmail website settings.
    Since I upgraded to iOS7, when I try to send email from my primary address or other "non-gmail" addresses, iPhone says "Unable to send email, the sender address [email protected] was rejected by the server".
    Did some of you experience this? Hints to solve?
    Regards
    F

    Thank you all for reply.
    smtp.gmail.com still doesn't accept to send other addresses than the gmail one.
    smtp.me.com sends email from any of my addresses, so I somehow solved.
    Thanks

  • Email Problem sending to same domain

    Since Sunday night GMT+8, I have problem with sending mail to same domain user. Sometimes bounced and sometimes ok. I figure out there is some change in BIS's BB server
    Bounced mail msg: Remote host said: 553 5.7.1 <[email protected]>: Sender address rejected: not logged in
    Bounced mail header:
    Return-Path: <[email protected]>
    X-Env-Sender: [email protected]
    Success mail header:
    Return-Path: <SRS0=zEpRSk=36=xxxx.com=[email protected]>
    Seems BIS has changed server, I have tried different with same result, also different carrier.
    Is anyone have same problem? And how to solve it?
    I have try http://btsc.webapps.blackberry.com/btsc/search.do?cmd=displayKC&docType=kc&externalId=KB11036 but after I added those address in my server. other user cannot send out mail.
    My server runs on postfix, config as follow:
     mynetworks = 127.0.0.1, 202.82.211.146, 206.51.26.0/24, 193.109.81.0/24, 204.187.87.0/24, 206.53.144.0/20, 216.9.240.0/20, 216.9.247.0/24, 67.223.64.0/19, 93.186.16.0/20, 68.171.224.0/19, 74.82.64.0/19, 173.247.32.0/19, 178.239.80.0/20, 180.149.148.0/22, 180.168.204.0/22, 206.53.144.0/20, 67.223.64.0/19, 180.149.149.0/22
    smtpd_recipient_restrictions =
        permit_mynetworks,
        permit_sasl_authenticated,
    Is mynetworks setting not correct?

    Thanks I have another web site using Host Excellent and it works fine with Comcast
    Mike

  • Sending email to multiple address using Utl_Smtp

    Hi,
    I want to send email to multiple address using the Utl_Smtp feature.
    When I am sending email to one email address in the To:Field it works fine.However, when I send
    to multiple address I am getting the below error.I am using a table(Email_test) to store all email id.
    Error report:
    ORA-29279: SMTP permanent error: 501 5.1.3 Invalid address
    ORA-06512: at "SYS.UTL_SMTP", line 20
    ORA-06512: at "SYS.UTL_SMTP", line 98
    ORA-06512: at "SYS.UTL_SMTP", line 240
    ORA-06512: at line 48
    29279. 00000 - "SMTP permanent error: %s"
    *Cause:    A SMTP permanent error occurred.
    *Action:   Correct the error and retry the SMTP operation.
    I am trying two options both ways I am getting error
    Option 1:
    Selecting two email id indivually in the select query as below
    select email into v_Recipient1 from Email_test where Key_name='U1';
    select email into v_Recipient2 from Email_test where Key_name='U2';
    v_Recipient := v_Recipient1||';'||v_Recipient2;
    Option 2:
    Is there a way to use option
    select email into v_Recipient1 from Email_test where Key_name='U4';
    ===========================================================
    Create table Script
    ===========================================================
    create table Email_test (Email varchar2(100),Key_name varchar2(10));
    insert into Email_test values ('[email protected]','U1');
    insert into Email_test values ('[email protected]','U2');
    insert into Email_test values ('[email protected]','U3')
    insert into Email_test values ('[email protected];[email protected];[email protected]','U4');
    select * from Email_test
    [email protected]                         U1
    [email protected]                         U2
    [email protected]                         U3
    [email protected];[email protected];[email protected]     U4
    select * from Email_test where Key_name in ('U1','U2','U3')
    [email protected]     U1
    [email protected]     U2
    [email protected]     U3
    select * from Email_test where Key_name='U4'
    [email protected];[email protected];[email protected]
    =======================================================
    PL/SQL Block
    ===========================================================
    declare
    v_From VARCHAR2(80) := '[email protected]';
    v_cc VARCHAR2(80);
    v_Recipient VARCHAR2(80) ;
    v_Recipient1 VARCHAR2(80) ;
    v_Recipient2 VARCHAR2(80) ;
    v_Subject VARCHAR2(80);
    v_Mail_Host VARCHAR2(50);
    v_Mail_Conn utl_smtp.Connection;
    crlf VARCHAR2(2) := chr(13)||chr(10);
    begin
    --Mail Host name
    select VALUE into v_Mail_Host from Server_info where server_name = 'SMTPServer';
    select email into v_Recipient1 from Email_test where Key_name='U1';
    select email into v_Recipient2 from Email_test where Key_name='U2';
    v_Recipient := v_Recipient1||';'||v_Recipient2;
    --for CC
    select email into v_cc from Email_test where Key_name='U3';
    v_Mail_Conn := utl_smtp.Open_Connection(v_Mail_Host, 25);
    utl_smtp.Helo(v_Mail_Conn, v_Mail_Host);
    utl_smtp.Mail(v_Mail_Conn, v_From);
    utl_smtp.Rcpt(v_Mail_Conn, v_Recipient);
    utl_smtp.Rcpt(v_Mail_Conn, v_cc); -- To CC recepient
    utl_smtp.Rcpt(v_Mail_Conn, v_BCC); To BCC recepient
    utl_smtp.Data(v_Mail_Conn,
    'Date: ' || to_char(sysdate, 'Dy, DD Mon YYYY hh24:mi:ss') || crlf ||
    'From: ' || v_From || crlf ||
    'Subject: '|| v_Subject || crlf ||
    'To: ' || v_Recipient || crlf ||
    'Cc: ' || v_cc || crlf ||
    'Content-Type: text/html;' ||crlf ||
    --'Hello this is a test email');
    crlf || to_char(sysdate, 'Dy, DD Mon YYYY hh24:mi:ss') || crlf );
    utl_smtp.Quit(v_mail_conn);
    end;
    Any suggestion how to approach this issue.
    Thank you

    Simple Mail Transfer Protocol RFC 5321 specifications.
          RCPT TO:<forward-path> [ SP <rcpt-parameters> ] <CRLF>
       The first or only argument to this command includes a forward-path
       (normally a mailbox and domain, always surrounded by "&gt;" and "&lt;"
       brackets) identifying one recipient.In other words, you can only define a SINGLE mailbox address at a time. Multiple addresses requires multiple repeats of this command verb, once per maibox.
    Do not confuse this and the To: tag line in the Mime header that contains a comma delimited list of recipients. That tag line can contain anything - it is not parsed, not checked, and not verified as matching the actual recipient mailboxes as specified via the RCPT TO verb.

  • IPhone 6 is unable to send email because the sender address was rejected by the server

    When I try to send emails from my Microsoft Outlook for Mac, I get a message that says "Unable to Send Email.  A copy has been placed in your Outbox.  The sender address was rejected by the server."  I've checked all the settings (it is a POP account).  I've deleted and re-installed.  Any suggestions??

    Please see this article on setting up an email account using the shaw mail server.
    https://community.shaw.ca/docs/DOC-2181
    Good luck Friend.

  • Hi,  I have just set up my domain email address with google and Im trying to set up mail on my mac.  Its receiving mail but its not letting me send emails from that address.  I have tried quite a few solution but cant figure it out.  Can anyone help

    Hi,  I have just set up my domain email address with google and Im trying to set up mail on my mac.  Its receiving mail but its not letting me send emails from that address.  I have tried quite a few solution but cant figure it out.  Can anyone help

    Hi Lawrence1981,
    Thanks for visiting Apple Support Communities.
    You may want to check this article for additional troubleshooting steps:
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/ts3276
    Cheers,
    Jeremy

  • HT4519 sometimes when I send a mail it will go regardless of location or whether it has attachments, but more often than not they won't go and the message " a copy has been placed in your outbox. The sender address "my email blah blah was rejected by the

    Sometimes when sending a mail it will go more often it won't go, it doesn't seem to be relevant  to my geographic position and the message" a copy has been placed in your Outbox. The sender address" my email blah blah" was rejected by the server"     . Any ideas?

    Check the outgoing mail server setting. Make sure that your username and password are in there.
    Settings>Mail, Contacts, Calendars>Your email account>Account>Outgoing mail server - tap the server name next to SMTP and check in the primary server and make sure your username and password are entered and correct - even if it says that the password is optional.

  • Sending email from different addresses under one account.

    Hello,
    So, I'm having an issue that's a little bit complicated, and in fact, I don't even know if there is a solution.  But, if anyone knows how to do this, I'd greatly appreciatte your help.
    So, here's what I'm trying to do.
    Right now, I have three different email accounts, an icloud and two gmails.  I have both of those gmails set up so that they forward to my icloud account.  So, in the mail app on my iphone, I only have my icloud account.  I've been trying to reduce clutter by doing this, and it seems to be working pretty well, save for this issue.
    The problem I am having is still being able to respond to emails sent to one of those two gmail accounts with the same email address.  I.e.-if someone emails me at my gmail account, it's then forwarded to icloud, but I still want to respond from that gmail account using the mail app on my iphone.  I'd like to do this without setting adding the two "dead" gmail accounts onto my phone, because everything is more streamlined when I'm only using icloud.
    I've been able to do this using iMail on my mac by adding the two gmail addresses to my icloud account in settings, as well as the gmail server.  So on my mac, I only have icloud set up in imail, but I can compose emails using my two gmail addresses.  I pretty much want to be able to do the same thing on my iphone.
    Does anyone know how this can, or even if, it can be set up?
    Also, if it can't be done in the native mail app to ios, do you know of any third party apps where something like this would be possible?
    Thanks!!1

    Hi 3s1k,
    Thank you for your question.
    When he replies to my email and changes the "send From" 
    to [email protected] and send the email, It will still show that it was sent from @mainDomain.com.
    Now, I think the issue is within his Exchange mailbox, his default reply email address is @MainDomain.com.
    A:You are right. By our testing. We could just send emails with primary address, but we could receive emails with primary address and second address.
    How do I get around this. The client wants to utilize sending email from both domains since he has clients in both domains.
    A: If we want to send email with specific email address, we could manually modify the primary email address to the specific domain by Exchange administrator. And the client didn’t use customized email address to send emails.
    If there are any questions regarding this issue, please be free to let me know. 
    Best Regard,
    Jim

  • Maintaining Constant Sender Address in the Email of Batch Job

    Hi,
    I have created a smartform whcih will be sent via Batch job at a partcular time .And everytime the Sender Id is "BATCH.JOB". 
    Actually the businesswants the sender address to be XYZ.com instead of BATCH.JOB
    Iam using the below FM to send email.
    Can anyone help in this issue.
    CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
         EXPORTING
              document_data              = l_doc_data_objl
             document_type              = 'RAW'
              put_in_outbox              = 'X'
         IMPORTING
              sent_to_all                = l_sent_all
         TABLES
              object_content             = l_contents
              receivers                  = l_receivers
         EXCEPTIONS
              too_many_receivers         = 1
              document_not_sent          = 2
              document_type_not_exist    = 3
              operation_no_authorization = 4
    Helpful answers will be rewarded.
    Regards
    Naveen

    Hi,
    Sorry for the delay. We can create a Outlook Inbox rule to achieve it. Please click Inbox > Rules > Manage Rules & Alerts > New Rule to create a rule with the following conditions and actions:
    Please change “people or public group” to [email protected] and edit a specific template by clicking “a specific template” in the action part.
    Hope it helps.
    Regards,
    Winnie Liang
    TechNet Community Support

  • How to reject emails using address email's sender

    Hi,
    I'm wondering if it's possible to reject emails using address email's sender.
    Thanks,

    sorry, I thought it was one of the built in options. you can do it with an apple script rule then.
    paste the following into a blank Applescript Editor window . Applescript Editor is located in /Applications/Utilities
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #ADD8E6;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    using terms from application "Mail"
    on perform mail action with messages selectedMsgs
    repeat with msg in selectedMsgs
    tell application "Mail"
    bounce msg
    end tell
    end repeat
    end perform mail action with messages
    end using terms from</pre>
    save the script somewhere and set your Mail rule to run this script on messages from that sender.

  • Why does my google email address appear on emails I send from a different address on my iPad?

    I have a number if email accounts on my iPad 2. Recently I have noticed that whichever account I send an email from if is received with my google email address so I get all responses to that address which isn't what I want! The google account is not set as my default account so I do not understand why this is happening. It is only a recent thing as I have previously been able to send emails from my default account and have that put in the sender line without any problem. At the moment the software is changing the sender address between me sending it (I have checked the from field in the email and it is always the address I want it to go from) and it actually being received by the recipient.
    Has anyone else experienced this?

    Look through the email account that is your default for sending. Make sure that you have set the correct outgoing mail server.

  • When sending an email, I click addresses, and the list is blank.  However, when I click the address in the tool tray, they're all there.

    When trying to send an email, I click address in the "New Message".  The "Addresses" screen appears, but it's blank.  However, when I click the address book in the tool tray, they're all there.  Does anyone have the solution?

    Barney,
    I have four groups.
    I just typed the name of one of those groups in the To field on the iPhone's email, and received:
    Invalid Address
    "<group name>" does not appear to be a valid email address.  Do you want to send it anyway?
    I clicked continue and it remains in my outbox.
    Help is appreciated.
    Thanks,
    Michael

  • I keep getting a incorrect sender address when I view email from sender; why is this happening?

    The emails that I get as an Invitiation to Bid from iSqFt.com are listing the sender as one contractor but when I view them they are actually ITB's from another contractor. iSqFt.com says they have researched it on their end and found no problem so they referred me to Mozilla support for a solution.

    I do not know how you figure a glitch. YOU store a name associated with an email address and it displays that name when you get an email from that address.
    Glad it fixed it for you.

Maybe you are looking for

  • Itunes trouble

    we just bought an ipad 2 for Christmas and we hooked it up to laptop and it worked great, we love it. But now I cant open itunes on my laptop i get this message"the file itunes.it cannot be read because it was created by a newer version of itunes"  a

  • Boot Camp & Extended (Journaled)

    Hi guys! Just trying to instal Boot Camp, and after getting through all the dramas with trying to download Windows software, I get to partitioning my hard drive and get the following message: +"The Startup Disk cannot be partitioned or restored to a

  • Pasting to a track?

    How do I paste a a clip to the track right above it. Every time I try, it pastes were my playhead is, in the same track. This make any sense?

  • Time Constraint: Record exists at least once from minumum to maximum

    Can anyone explain to me what this means? To me it implies that you should have at least one entry, however, I cannot add multiple entries for the same BP for any other time interval. Many thanks David

  • Shared content on different devices

    My apple ID is used for my Apple products and I've use it as well for my son's Ipod touch.  When I plug his ipod into our PC at home all my texts are showing up on his ipod.  How do I prohibit all my content from being downloaded onto his ipod?