<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic SO_NEW_DOCUMENT_ATT_SEND_API1----Customizing Sender in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/so-new-document-att-send-api1-customizing-sender/m-p/8204061#M1626627</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are using FM "SO_NEW_DOCUMENT_ATT_SEND_API1" to send email to customer. This FM is taking sy-uname as the default sender of email. we need to customize the sender of the email. Does anyone has worked on similar requirement or anyone knows how to achieve this? Please provide inputs.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Preeti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Oct 2011 10:15:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-10-07T10:15:17Z</dc:date>
    <item>
      <title>SO_NEW_DOCUMENT_ATT_SEND_API1----Customizing Sender</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/so-new-document-att-send-api1-customizing-sender/m-p/8204061#M1626627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are using FM "SO_NEW_DOCUMENT_ATT_SEND_API1" to send email to customer. This FM is taking sy-uname as the default sender of email. we need to customize the sender of the email. Does anyone has worked on similar requirement or anyone knows how to achieve this? Please provide inputs.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Preeti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Oct 2011 10:15:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/so-new-document-att-send-api1-customizing-sender/m-p/8204061#M1626627</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-07T10:15:17Z</dc:date>
    </item>
    <item>
      <title>Re: SO_NEW_DOCUMENT_ATT_SEND_API1----Customizing Sender</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/so-new-document-att-send-api1-customizing-sender/m-p/8204062#M1626628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can get the email address from table ADR6 the field is SMTP_ADDR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Oct 2011 10:24:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/so-new-document-att-send-api1-customizing-sender/m-p/8204062#M1626628</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-07T10:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: SO_NEW_DOCUMENT_ATT_SEND_API1----Customizing Sender</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/so-new-document-att-send-api1-customizing-sender/m-p/8204063#M1626629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;following code will resolve ur query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : p_sender type somlreci1-receiver value 'your email address', "Sender Email&lt;/P&gt;&lt;P&gt;       ld_sender_address like  soextreci1-receiver,&lt;/P&gt;&lt;P&gt;       ld_sender_address_type like  soextreci1-adr_typ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ld_sender_address      = p_sender.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SO_DOCUMENT_SEND_API1'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    document_data              = gs_docdata&lt;/P&gt;&lt;P&gt;    put_in_outbox              = 'X'&lt;/P&gt;&lt;P&gt;    sender_address             = ld_sender_address&lt;/P&gt;&lt;P&gt;    sender_address_type        = ld_sender_address_type&lt;/P&gt;&lt;P&gt;    commit_work                = 'X'&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;      sent_to_all                = w_sent_all&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    packing_list               = gt_objpack&lt;/P&gt;&lt;P&gt;    contents_bin               = gt_objbin&lt;/P&gt;&lt;P&gt;    receivers                  = gt_reclist&lt;/P&gt;&lt;P&gt;    contents_txt               = it_mess_bod&lt;/P&gt;&lt;P&gt;    object_header              = objhead&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;    too_many_receivers         = 1&lt;/P&gt;&lt;P&gt;    document_not_sent          = 2&lt;/P&gt;&lt;P&gt;    document_type_not_exist    = 3&lt;/P&gt;&lt;P&gt;    operation_no_authorization = 4&lt;/P&gt;&lt;P&gt;    parameter_error            = 5&lt;/P&gt;&lt;P&gt;    x_error                    = 6&lt;/P&gt;&lt;P&gt;    enqueue_error              = 7&lt;/P&gt;&lt;P&gt;    OTHERS                     = 8.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Oct 2011 10:27:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/so-new-document-att-send-api1-customizing-sender/m-p/8204063#M1626629</guid>
      <dc:creator>muhammadamir_khan3</dc:creator>
      <dc:date>2011-10-07T10:27:17Z</dc:date>
    </item>
    <item>
      <title>Re: SO_NEW_DOCUMENT_ATT_SEND_API1----Customizing Sender</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/so-new-document-att-send-api1-customizing-sender/m-p/8204064#M1626630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi please try this [wiki session|http://wiki.sdn.sap.com/wiki/display/Snippets/To&lt;EM&gt;send&lt;/EM&gt;a&lt;EM&gt;mail&lt;/EM&gt;attachment&lt;EM&gt;with&lt;/EM&gt;more&lt;EM&gt;than&lt;/EM&gt;255&lt;EM&gt;characters&lt;/EM&gt;in&lt;EM&gt;a&lt;/EM&gt;line]&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: w_subject LIKE sodocchgi1,
      i_pack_list LIKE sopcklsti1 OCCURS 1 WITH HEADER LINE,
      i_objhead LIKE solisti1 OCCURS 1 WITH HEADER LINE,
      i_contents_text LIKE solisti1 OCCURS 10 WITH HEADER LINE,      "FOR MAIL CONTENTS
      i_contents_bin TYPE STANDARD TABLE OF solisti1 WITH HEADER LINE, 
      i_contents_hex TYPE STANDARD TABLE OF solix WITH HEADER LINE,    "for attachment
      i_receiver LIKE somlreci1 OCCURS 1 WITH HEADER LINE,
      content_out LIKE solisti1 OCCURS 0 WITH HEADER LINE.
DATA: li_contents_hex TYPE STANDARD TABLE OF solix WITH HEADER LINE.
  lv_hex1 = cl_abap_char_utilities=&amp;gt;cr_lf.

*Create the body of the attachment file of the mail INTO li_contents_bin-line SEPARATED BY lc_tab.
  CONCATENATE li_contents_bin-line lv_hex1 INTO li_contents_bin-line.
  APPEND li_contents_bin.

*Converting the table contents for attachment to xstring 
  LOOP AT li_contents_bin.
    CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
      EXPORTING
        text           = li_contents_bin-line
      IMPORTING
        buffer         = li_contents-line
     EXCEPTIONS
       failed         = 1
       OTHERS         = 2.

*Converting the table contents from xstring to binary
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
      EXPORTING
        buffer                = li_contents-line
*        APPEND_TO_TABLE       = 'I_CONTENTS_HEX'
      TABLES
        binary_tab            = li_contents_hex.
              
    LOOP AT li_contents_hex.
      APPEND li_contents_hex TO i_contents_hex .
    ENDLOOP.

* FM called for sending the mail to the intended recipients
  CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
      document_data                    = w_subject
      put_in_outbox                    = 'X'
      commit_work                      = 'X'
    IMPORTING
      sent_to_all                      = sent_to_all
    TABLES
      packing_list                     = i_pack_list
      object_header                    = i_objhead
      contents_hex                     = i_contents_hex
      contents_txt                     = i_contents_text
      receivers                        = i_receiver.   
*/

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;koolspy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Oct 2011 10:33:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/so-new-document-att-send-api1-customizing-sender/m-p/8204064#M1626630</guid>
      <dc:creator>koolspy_ultimate</dc:creator>
      <dc:date>2011-10-07T10:33:37Z</dc:date>
    </item>
    <item>
      <title>Re: SO_NEW_DOCUMENT_ATT_SEND_API1----Customizing Sender</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/so-new-document-att-send-api1-customizing-sender/m-p/8204065#M1626631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;instead of using  FM "SO_NEW_DOCUMENT_ATT_SEND_API1"     use the  FM    'SO_DOCUMENT_SEND_API1'&lt;/P&gt;&lt;P&gt;and  passs te sender's address   in sender_address  .&lt;/P&gt;&lt;P&gt;something like this .&lt;/P&gt;&lt;P&gt;  sender_address                   = 'test'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Oct 2011 10:43:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/so-new-document-att-send-api1-customizing-sender/m-p/8204065#M1626631</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-07T10:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: SO_NEW_DOCUMENT_ATT_SEND_API1----Customizing Sender</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/so-new-document-att-send-api1-customizing-sender/m-p/8204066#M1626632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Follow the below code....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: OBJPACK LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER LINE. &lt;/P&gt;&lt;P&gt;DATA: OBJHEAD LIKE SOLISTI1 OCCURS 1 WITH HEADER LINE. &lt;/P&gt;&lt;P&gt;DATA: OBJBIN LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE. &lt;/P&gt;&lt;P&gt;DATA: OBJTXT LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE. &lt;/P&gt;&lt;P&gt;DATA: RECLIST LIKE SOMLRECI1 OCCURS 5 WITH HEADER LINE. &lt;/P&gt;&lt;P&gt;DATA: DOC_CHNG LIKE SODOCCHGI1. &lt;/P&gt;&lt;P&gt;DATA: TAB_LINES LIKE SY-TABIX. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Creating the document to be sent &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DOC_CHNG-OBJ_NAME = 'OFFER'. &lt;/P&gt;&lt;P&gt;DOC_CHNG-OBJ_DESCR = 'Auction of a Picasso jr'. &lt;/P&gt;&lt;P&gt;OBJTXT = 'Reserve price : $250000'. &lt;/P&gt;&lt;P&gt;APPEND OBJTXT. &lt;/P&gt;&lt;P&gt;OBJTXT = 'A reproduction of the painting to be auctioned'. &lt;/P&gt;&lt;P&gt;APPEND OBJTXT. &lt;/P&gt;&lt;P&gt;OBJTXT = 'is enclosed as an attachment.'. &lt;/P&gt;&lt;P&gt;APPEND OBJTXT. &lt;/P&gt;&lt;P&gt;DESCRIBE TABLE OBJTXT LINES TAB_LINES. &lt;/P&gt;&lt;P&gt;READ TABLE OBJTXT INDEX TAB_LINES. &lt;/P&gt;&lt;P&gt;DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ). &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Creating the entry for the compressed document &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CLEAR OBJPACK-TRANSF_BIN. &lt;/P&gt;&lt;P&gt;OBJPACK-HEAD_START = 1. &lt;/P&gt;&lt;P&gt;OBJPACK-HEAD_NUM = 0. &lt;/P&gt;&lt;P&gt;OBJPACK-BODY_START = 1. &lt;/P&gt;&lt;P&gt;OBJPACK-BODY_NUM = TAB_LINES. &lt;/P&gt;&lt;P&gt;OBJPACK-DOC_TYPE = 'RAW'. &lt;/P&gt;&lt;P&gt;APPEND OBJPACK. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Creating the document attachment &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;(Assume the data in OBJBIN are given in BMP format) &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;OBJBIN = ' \O/ '. APPEND OBJBIN. &lt;/P&gt;&lt;P&gt;OBJBIN = ' | '. APPEND OBJBIN. &lt;/P&gt;&lt;P&gt;OBJBIN = ' / \ '. APPEND OBJBIN. &lt;/P&gt;&lt;P&gt;DESCRIBE TABLE OBJBIN LINES TAB_LINES. &lt;/P&gt;&lt;P&gt;OBJHEAD = 'picasso.bmp'. APPEND OBJHEAD. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Creating the entry for the compressed attachment &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;OBJPACK-TRANSF_BIN = 'X'. &lt;/P&gt;&lt;P&gt;OBJPACK-HEAD_START = 1. &lt;/P&gt;&lt;P&gt;OBJPACK-HEAD_NUM = 1. &lt;/P&gt;&lt;P&gt;OBJPACK-BODY_START = 1. &lt;/P&gt;&lt;P&gt;OBJPACK-BODY_NUM = TAB_LINES. &lt;/P&gt;&lt;P&gt;OBJPACK-DOC_TYPE = 'BMP'. &lt;/P&gt;&lt;P&gt;OBJPACK-OBJ_NAME = 'ATTACHMENT'. &lt;/P&gt;&lt;P&gt;OBJPACK-OBJ_DESCR = 'Reproduction object 138'. &lt;/P&gt;&lt;P&gt;OBJPACK-DOC_SIZE = TAB_LINES * 255. &lt;/P&gt;&lt;P&gt;APPEND OBJPACK.. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Entering names in the distribution list &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;RECLIST-RECEIVER = 'Email Address'. &lt;/P&gt;&lt;P&gt;RECLIST-REC_TYPE = 'U'. &lt;/P&gt;&lt;P&gt;APPEND RECLIST. &lt;/P&gt;&lt;P&gt;RECLIST-RECEIVER = 'DLI-NEUREICH'. &lt;/P&gt;&lt;P&gt;RECLIST-REC_TYPE = 'P'. &lt;/P&gt;&lt;P&gt;APPEND RECLIST. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Sending the document &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1' &lt;/P&gt;&lt;P&gt;EXPORTING &lt;/P&gt;&lt;P&gt;DOCUMENT_DATA = DOC_CHNG &lt;/P&gt;&lt;P&gt;PUT_IN_OUTBOX = 'X' &lt;/P&gt;&lt;P&gt;COMMIT_WORK = 'X' &lt;/P&gt;&lt;P&gt;TABLES &lt;/P&gt;&lt;P&gt;PACKING_LIST = OBJPACK &lt;/P&gt;&lt;P&gt;OBJECT_HEADER = OBJHEAD &lt;/P&gt;&lt;P&gt;CONTENTS_BIN = OBJBIN &lt;/P&gt;&lt;P&gt;CONTENTS_TXT = OBJTXT &lt;/P&gt;&lt;P&gt;RECEIVERS = RECLIST &lt;/P&gt;&lt;P&gt;EXCEPTIONS &lt;/P&gt;&lt;P&gt;TOO_MANY_RECEIVERS = 1 &lt;/P&gt;&lt;P&gt;DOCUMENT_NOT_SENT = 2 &lt;/P&gt;&lt;P&gt;OPERATION_NO_AUTHORIZATION = 4 &lt;/P&gt;&lt;P&gt;OTHERS = 99. &lt;/P&gt;&lt;P&gt;CASE SY-SUBRC. &lt;/P&gt;&lt;P&gt;WHEN 0. &lt;/P&gt;&lt;P&gt;WRITE: / 'Result of the send process:'. &lt;/P&gt;&lt;P&gt;LOOP AT RECLIST. &lt;/P&gt;&lt;P&gt;WRITE: / RECLIST-RECEIVER(48), ':'. &lt;/P&gt;&lt;P&gt;IF RECLIST-RETRN_CODE = 0. &lt;/P&gt;&lt;P&gt;WRITE 'sent successfully'. &lt;/P&gt;&lt;P&gt;ELSE. &lt;/P&gt;&lt;P&gt;WRITE 'not sent'. &lt;/P&gt;&lt;P&gt;ENDIF. &lt;/P&gt;&lt;P&gt;ENDLOOP. &lt;/P&gt;&lt;P&gt;WHEN 1. &lt;/P&gt;&lt;P&gt;WRITE: / 'no authorization to send to the specified number of' 'recipients!'. &lt;/P&gt;&lt;P&gt;WHEN 2. &lt;/P&gt;&lt;P&gt;WRITE: / 'document could not be sent to any of the recipients!'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 4. &lt;/P&gt;&lt;P&gt;WRITE: / 'no authorization to send !'. &lt;/P&gt;&lt;P&gt;WHEN OTHERS. &lt;/P&gt;&lt;P&gt;WRITE: / 'error occurred during sending !'. &lt;/P&gt;&lt;P&gt;ENDCASE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Oct 2011 11:12:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/so-new-document-att-send-api1-customizing-sender/m-p/8204066#M1626632</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-07T11:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: SO_NEW_DOCUMENT_ATT_SEND_API1----Customizing Sender</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/so-new-document-att-send-api1-customizing-sender/m-p/8204067#M1626633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think I read in this forum that one of the API's allows a modification of the sender, and one does not.  I believe that SO_NEW_DOCUMENT_ATT_SEND_API1, but the one without the attachment allows modification of the sender e-mail addr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Oct 2011 11:41:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/so-new-document-att-send-api1-customizing-sender/m-p/8204067#M1626633</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-07T11:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: SO_NEW_DOCUMENT_ATT_SEND_API1----Customizing Sender</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/so-new-document-att-send-api1-customizing-sender/m-p/8204068#M1626634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for your inputs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My query is resolved. Now, I am using FM  'SO_DOCUMENT_SEND_API1' which allows to set the sender instead of FM SO_NEW_DOCUMENT_ATT_SEND_API1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Preeti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Oct 2011 06:54:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/so-new-document-att-send-api1-customizing-sender/m-p/8204068#M1626634</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-10T06:54:58Z</dc:date>
    </item>
    <item>
      <title>Re: SO_NEW_DOCUMENT_ATT_SEND_API1----Customizing Sender</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/so-new-document-att-send-api1-customizing-sender/m-p/8204069#M1626635</link>
      <description>&lt;P&gt;You can pass the user id to an 'SY-UNAME' before calling FM 'SO_NEW_DOCUMENT_ATT_SEND_API1'.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Aug 2021 13:27:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/so-new-document-att-send-api1-customizing-sender/m-p/8204069#M1626635</guid>
      <dc:creator>soham_zendekar27</dc:creator>
      <dc:date>2021-08-12T13:27:12Z</dc:date>
    </item>
  </channel>
</rss>

