<?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 Re: sbwp create new document in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188192#M466241</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;using SO_DOCUMENT_INSERT_API1 you may just create a document without any email involved. Documentation of FB includes this example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example                                                                                &lt;/P&gt;&lt;P&gt;A private document is created in the outbox of the active user. The ID &lt;/P&gt;&lt;P&gt;  of the outbox is determined via the function module SO_USER_READ_API1.                                                                                &lt;/P&gt;&lt;P&gt;DATA: OBJCONT LIKE SOLISTI1 OCCURS 5 WITH HEADER LINE.             &lt;/P&gt;&lt;P&gt;      DATA: USER_DATA LIKE SOUDATAI1.                                    &lt;/P&gt;&lt;P&gt;      DATA: DOC_CHNG LIKE SODOCCHGI1.                                    &lt;/P&gt;&lt;P&gt;      DATA: ENTRIES LIKE SY-TABIX.                                                                                &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SO_USER_READ_API1'                                  &lt;/P&gt;&lt;P&gt;           IMPORTING                                                     &lt;/P&gt;&lt;P&gt;                USER_DATA = USER_DATA                                    &lt;/P&gt;&lt;P&gt;           EXCEPTIONS                                                    &lt;/P&gt;&lt;P&gt;                OTHERS = 1.                                              &lt;/P&gt;&lt;P&gt;      IF SY-SUBRC &amp;lt;&amp;gt; 0.                                                  &lt;/P&gt;&lt;P&gt;        WRITE: / 'User data could not be read !'.                        &lt;/P&gt;&lt;P&gt;        EXIT.                                                            &lt;/P&gt;&lt;P&gt;      ENDIF.                                                             &lt;/P&gt;&lt;P&gt;      DOC_CHNG-OBJ_NAME = 'PRIVAT'.                                      &lt;/P&gt;&lt;P&gt;      DOC_CHNG-OBJ_DESCR = 'My private document'.                        &lt;/P&gt;&lt;P&gt;      DOC_CHNG-LANGU = SY_LANGU.                                         &lt;/P&gt;&lt;P&gt;      DOC_CHNG-SENSITIVTY = 'P'.                                         &lt;/P&gt;&lt;P&gt;      OBJCONT = 'All created myself !'.                                  &lt;/P&gt;&lt;P&gt;      APPEND OBJCONT.                                                    &lt;/P&gt;&lt;P&gt;      OBJCONT = 'No one else has access to it !'.                        &lt;/P&gt;&lt;P&gt;      APPEND OBJCONT.                                                    &lt;/P&gt;&lt;P&gt;      DESCRIBE TABLE OBJCONT LINES ENTRIES.                              &lt;/P&gt;&lt;P&gt;      READ TABLE OBJCONT INDEX ENTRIES.                                  &lt;/P&gt;&lt;P&gt;      DOC_CHNG-DOC_SIZE = ( ENTRIES - 1 ) * 255 + STRLEN( OBJCONT ).     &lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'SO_DOCUMENT_INSERT_API1'                            &lt;/P&gt;&lt;P&gt;           EXPORTING                                                     &lt;/P&gt;&lt;P&gt;                FOLDER_ID      = USER_DATA-OUTBOXFOL                     &lt;/P&gt;&lt;P&gt;                DOCUMENT_TYPE  = 'RAW'                                   &lt;/P&gt;&lt;P&gt;                DOCUMENT_DATA  = DOC_CHNG                                &lt;/P&gt;&lt;P&gt;           TABLES                                                        &lt;/P&gt;&lt;P&gt;                OBJECT_CONTENT = OBJCONT                                 &lt;/P&gt;&lt;P&gt;           EXCEPTIONS                                                    &lt;/P&gt;&lt;P&gt;                OTHERS = 1.                                              &lt;/P&gt;&lt;P&gt;      CASE SY-SUBRC.                                                     &lt;/P&gt;&lt;P&gt;        WHEN 0.                                                          &lt;/P&gt;&lt;P&gt;          WRITE: / 'Document created !'.                                 &lt;/P&gt;&lt;P&gt;        WHEN 1.                                                          &lt;/P&gt;&lt;P&gt;          WRITE: / 'Error creating document !'.                          &lt;/P&gt;&lt;P&gt;      ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Apr 2007 11:06:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-24T11:06:38Z</dc:date>
    <item>
      <title>sbwp create new document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188185#M466234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to create a new document via a function or method in the inbox of a receiver. I already looked for SO_DOCUMENT_SEND_API1 or SO_DOCUMENT_INSERT but it seems that these function are just for creating a email to an external partner.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also try to use the method "cl_bcs=&amp;gt;short_message" but with this thing i have problems creating the right receiver table, because it is a deep structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: it_send_text  TYPE BCSY_TEXT,
      wa_send_text  TYPE soli,
      it_rec        TYPE BCSY_RE3,
      wa_rec        LIKE LINE OF BCSY_RE3
      .

wa_send_text-line = 'some text for the message body'.
append wa_send_text to it_send_text.

*wa_rec-recipient = CL_SAPUSER_BCS=&amp;gt;CREATE( SY-UNAME ).
wa_rec-recipient = 'USER_NAME'.
append wa_rec to it_rec.

CALL METHOD cl_bcs=&amp;gt;short_message
  EXPORTING
    I_subject       = 'doc_title'
    I_TEXT          = it_send_text
    I_RECIPIENTS    = it_rec
.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anybody help me? I though this is an easy one to create a document?!&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;Steffen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2007 06:32:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188185#M466234</guid>
      <dc:creator>former_member183924</dc:creator>
      <dc:date>2007-04-24T06:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: sbwp create new document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188186#M466235</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;  SO_DOCUMENT_SEND_API1 Fm is also used to send the mail in form of Attachment to &lt;/P&gt;&lt;P&gt;the others also , what is the problem that you are having with this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards Rk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2007 09:16:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188186#M466235</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-24T09:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: sbwp create new document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188187#M466236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rk,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i don't understand this sbwp messages manager not so well. Everybody is talking about emails, but I just want to send / create a document in the SBWP inbox for a user. Not an email, email with attachement or a workflow or something like that. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So when the Email for an Userprofile is like: "user.name@company.com" and I use the SO_DOCUMENT_SEND_API1, I dont want to send this message into his Outlook-Email-Client...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Steffen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2007 09:30:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188187#M466236</guid>
      <dc:creator>former_member183924</dc:creator>
      <dc:date>2007-04-24T09:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: sbwp create new document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188188#M466237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi You can send the Document to SBWP also using this Fm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this Program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this just look at the parameter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RECEIVER&lt;/P&gt;&lt;P&gt;Name of recipient.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following entry categories are possible:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP use name of the recipient&lt;/P&gt;&lt;P&gt;SAPoffice name of the recipient&lt;/P&gt;&lt;P&gt;Shared distribution list&lt;/P&gt;&lt;P&gt;Fax number in the form of structure SADRFD&lt;/P&gt;&lt;P&gt;Internet address in the form of structure SADRUD&lt;/P&gt;&lt;P&gt;Remote SAP name in the form of structure SADR7D&lt;/P&gt;&lt;P&gt;X.400 address in the form of structure SADR8D&lt;/P&gt;&lt;P&gt;ADR_TYPE&lt;/P&gt;&lt;P&gt;Type of RECEIVER entry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following values are permitted:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;'B' : SAP user name&lt;/P&gt;&lt;P&gt;' ' : SAPoffice name&lt;/P&gt;&lt;P&gt;'C' : Shared distribution list&lt;/P&gt;&lt;P&gt;'F' : Fax number&lt;/P&gt;&lt;P&gt;'U' : Internet address&lt;/P&gt;&lt;P&gt;'R ' : Remote SAP name&lt;/P&gt;&lt;P&gt;'X' : X.400 address&lt;/P&gt;&lt;P&gt;REC_ID&lt;/P&gt;&lt;P&gt;If the recipient is a SAPoffice user, the user ID, instead of the recipient name in RECEIVER, can be entered in this field.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[code]REPORT  ZSSO_DOCUMENT_SEND_API1.&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;DATA: OBJHEAD LIKE SOLISTI1   OCCURS  1 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: OBJBIN  LIKE SOLISTI1   OCCURS 10 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: OBJTXT  LIKE SOLISTI1   OCCURS 10 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: RECLIST LIKE SOMLRECI1  OCCURS  5 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: DOC_CHNG LIKE SODOCCHGI1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: TAB_LINES LIKE SY-TABIX.&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;DOC_CHNG-OBJ_NAME = 'OFFER'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DOC_CHNG-OBJ_DESCR = 'Auction of a Picasso jr'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJTXT = 'Reserve price : $250000'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND OBJTXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJTXT = 'A reproduction of the painting to be auctioned'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND OBJTXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJTXT = 'is enclosed as an attachment.'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND OBJTXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE OBJTXT LINES TAB_LINES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE OBJTXT INDEX TAB_LINES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;CLEAR OBJPACK-TRANSF_BIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJPACK-HEAD_START = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJPACK-HEAD_NUM   = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJPACK-BODY_START = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJPACK-BODY_NUM   = TAB_LINES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJPACK-DOC_TYPE   = 'RAW'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND OBJPACK.&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 attachment&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&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;&lt;/P&gt;&lt;P&gt;OBJBIN = ' \O/ '. APPEND OBJBIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJBIN = '  |  '. APPEND OBJBIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJBIN = ' / \ '. APPEND OBJBIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE OBJBIN LINES TAB_LINES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJHEAD = 'picasso.bmp'. APPEND OBJHEAD.&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;OBJPACK-TRANSF_BIN = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJPACK-HEAD_START = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJPACK-HEAD_NUM   = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJPACK-BODY_START = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJPACK-BODY_NUM   = TAB_LINES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJPACK-DOC_TYPE   = 'BMP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJPACK-OBJ_NAME   = 'ATTACHMENT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJPACK-OBJ_DESCR = 'Reproduction object 138'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJPACK-DOC_SIZE   = TAB_LINES * 255.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND OBJPACK..&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;RECLIST-RECEIVER = 'guido.geldsack@money.com'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RECLIST-REC_TYPE = 'U'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND RECLIST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RECLIST-RECEIVER = 'DLI-NEUREICH'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RECLIST-REC_TYPE = 'P'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND RECLIST.&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          DOCUMENT_DATA = DOC_CHNG&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          PUT_IN_OUTBOX = 'X'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          COMMIT_WORK   = 'X'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          PACKING_LIST  = OBJPACK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          OBJECT_HEADER = OBJHEAD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          CONTENTS_BIN  = OBJBIN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          CONTENTS_TXT  = OBJTXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          RECEIVERS     = RECLIST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          TOO_MANY_RECEIVERS = 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          DOCUMENT_NOT_SENT  = 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          OPERATION_NO_AUTHORIZATION = 4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          OTHERS = 99.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE SY-SUBRC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WHEN 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WRITE: / 'Result of the send process:'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT RECLIST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      WRITE: / RECLIST-RECEIVER(48), ':'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF RECLIST-RETRN_CODE = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        WRITE 'sent successfully'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        WRITE 'not sent'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WHEN 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WRITE: / 'no authorization to send to the specified number of'              'recipients!'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WHEN 2.&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;    WRITE: / 'no authorization to send !'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WHEN OTHERS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WRITE: / 'error occurred during sending !'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCASE.[/code]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards Rk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2007 09:36:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188188#M466237</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-24T09:36:16Z</dc:date>
    </item>
    <item>
      <title>Re: sbwp create new document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188189#M466238</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;Check out OSS Note 547893 - FAQ for Workflow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.sap.com/3"&gt;&lt;/A&gt; Question:How is an event triggered from the application and a workflow then started?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Answer: An event can be triggered from the application in three different ways:&lt;/P&gt;&lt;P&gt;o  Directly:&lt;/P&gt;&lt;P&gt;Within the application, the SWE_EVENT_CREATE function module or the SWE_EVENT_CREAT_IN_UPD_TASK function module, for example, generates an event in the update.&lt;/P&gt;&lt;P&gt;o  With a change document:&lt;/P&gt;&lt;P&gt;Change documents are written within the application when you change application objects in the update. You can link events that have the same key with these types of change documents via transaction SWEC.&lt;/P&gt;&lt;P&gt;o With status management:&lt;/P&gt;&lt;P&gt;The SWE_EVENT_CREATE_STATUS function module triggers an event in the same way as the direct method when a status is changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This event contains the object type (for example, purchase order), the object key (for example, purchase order 4711) and other information.&lt;/P&gt;&lt;P&gt;Using transaction PFTC, you can assign the event to a specific workflow or single-step task. More settings are available in transaction SWE2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2007 09:39:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188189#M466238</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-24T09:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: sbwp create new document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188190#M466239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;aahhh ok,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now it is clear. I thought if I use the username for the receiver, it sends it to his emailaddress... that was my problem...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,regards,&lt;/P&gt;&lt;P&gt;Steffen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2007 09:43:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188190#M466239</guid>
      <dc:creator>former_member183924</dc:creator>
      <dc:date>2007-04-24T09:43:12Z</dc:date>
    </item>
    <item>
      <title>Re: sbwp create new document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188191#M466240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this out&lt;/P&gt;&lt;P&gt;check out the excellent weblog on this subject by Thomas Jung which talks about starting from configuring SMTP node and the code sample for sending mail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sending E-Mail from ABAP - Version 610 and Higher - BCS Interface&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2007 09:48:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188191#M466240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-24T09:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: sbwp create new document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188192#M466241</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;using SO_DOCUMENT_INSERT_API1 you may just create a document without any email involved. Documentation of FB includes this example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example                                                                                &lt;/P&gt;&lt;P&gt;A private document is created in the outbox of the active user. The ID &lt;/P&gt;&lt;P&gt;  of the outbox is determined via the function module SO_USER_READ_API1.                                                                                &lt;/P&gt;&lt;P&gt;DATA: OBJCONT LIKE SOLISTI1 OCCURS 5 WITH HEADER LINE.             &lt;/P&gt;&lt;P&gt;      DATA: USER_DATA LIKE SOUDATAI1.                                    &lt;/P&gt;&lt;P&gt;      DATA: DOC_CHNG LIKE SODOCCHGI1.                                    &lt;/P&gt;&lt;P&gt;      DATA: ENTRIES LIKE SY-TABIX.                                                                                &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SO_USER_READ_API1'                                  &lt;/P&gt;&lt;P&gt;           IMPORTING                                                     &lt;/P&gt;&lt;P&gt;                USER_DATA = USER_DATA                                    &lt;/P&gt;&lt;P&gt;           EXCEPTIONS                                                    &lt;/P&gt;&lt;P&gt;                OTHERS = 1.                                              &lt;/P&gt;&lt;P&gt;      IF SY-SUBRC &amp;lt;&amp;gt; 0.                                                  &lt;/P&gt;&lt;P&gt;        WRITE: / 'User data could not be read !'.                        &lt;/P&gt;&lt;P&gt;        EXIT.                                                            &lt;/P&gt;&lt;P&gt;      ENDIF.                                                             &lt;/P&gt;&lt;P&gt;      DOC_CHNG-OBJ_NAME = 'PRIVAT'.                                      &lt;/P&gt;&lt;P&gt;      DOC_CHNG-OBJ_DESCR = 'My private document'.                        &lt;/P&gt;&lt;P&gt;      DOC_CHNG-LANGU = SY_LANGU.                                         &lt;/P&gt;&lt;P&gt;      DOC_CHNG-SENSITIVTY = 'P'.                                         &lt;/P&gt;&lt;P&gt;      OBJCONT = 'All created myself !'.                                  &lt;/P&gt;&lt;P&gt;      APPEND OBJCONT.                                                    &lt;/P&gt;&lt;P&gt;      OBJCONT = 'No one else has access to it !'.                        &lt;/P&gt;&lt;P&gt;      APPEND OBJCONT.                                                    &lt;/P&gt;&lt;P&gt;      DESCRIBE TABLE OBJCONT LINES ENTRIES.                              &lt;/P&gt;&lt;P&gt;      READ TABLE OBJCONT INDEX ENTRIES.                                  &lt;/P&gt;&lt;P&gt;      DOC_CHNG-DOC_SIZE = ( ENTRIES - 1 ) * 255 + STRLEN( OBJCONT ).     &lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'SO_DOCUMENT_INSERT_API1'                            &lt;/P&gt;&lt;P&gt;           EXPORTING                                                     &lt;/P&gt;&lt;P&gt;                FOLDER_ID      = USER_DATA-OUTBOXFOL                     &lt;/P&gt;&lt;P&gt;                DOCUMENT_TYPE  = 'RAW'                                   &lt;/P&gt;&lt;P&gt;                DOCUMENT_DATA  = DOC_CHNG                                &lt;/P&gt;&lt;P&gt;           TABLES                                                        &lt;/P&gt;&lt;P&gt;                OBJECT_CONTENT = OBJCONT                                 &lt;/P&gt;&lt;P&gt;           EXCEPTIONS                                                    &lt;/P&gt;&lt;P&gt;                OTHERS = 1.                                              &lt;/P&gt;&lt;P&gt;      CASE SY-SUBRC.                                                     &lt;/P&gt;&lt;P&gt;        WHEN 0.                                                          &lt;/P&gt;&lt;P&gt;          WRITE: / 'Document created !'.                                 &lt;/P&gt;&lt;P&gt;        WHEN 1.                                                          &lt;/P&gt;&lt;P&gt;          WRITE: / 'Error creating document !'.                          &lt;/P&gt;&lt;P&gt;      ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2007 11:06:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188192#M466241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-24T11:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: sbwp create new document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188193#M466242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the problem is with this line of code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*wa_rec-recipient = CL_SAPUSER_BCS=&amp;gt;CREATE( SY-UNAME ).&lt;/P&gt;&lt;P&gt;wa_rec-recipient = 'USER_NAME'.&lt;/P&gt;&lt;P&gt;append wa_rec to it_rec.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the way to fill receipient is as shown in the commented line above and not just passing the userid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2007 11:43:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188193#M466242</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-04-24T11:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: sbwp create new document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188194#M466243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok, thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I debugged my programm a little bit and found out that the FM SO_DOCUMENT_SEND_API1 calls a new DynPro screen. But I'm using Business Server Pages (BSP) and I want to send just two input fields from a website into the SBWP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem in this Forum is solved. I have to found out how to call the right FM which solves my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks so much to all of you, answers are rewareded&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Steffen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2007 12:18:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188194#M466243</guid>
      <dc:creator>former_member183924</dc:creator>
      <dc:date>2007-04-24T12:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: sbwp create new document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188195#M466244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is more a problem of using this FM which BSP (Business Server Pages)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2007 12:21:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188195#M466244</guid>
      <dc:creator>former_member183924</dc:creator>
      <dc:date>2007-04-24T12:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: sbwp create new document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188196#M466245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should get the right structure using SO_USER_READ_API1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2007 12:23:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188196#M466245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-24T12:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: sbwp create new document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188197#M466246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the way forward if you want to use it in BSP environment is to use CL_BCS classes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know if you are interested in how to set receiver with CL_BCS class approach, i can provide sample code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2007 12:27:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188197#M466246</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-04-24T12:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: sbwp create new document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188198#M466247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks so much,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;currently I have this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: it_send_text  TYPE BCSY_TEXT,
      wa_send_text  TYPE soli,
      it_rec        TYPE BCSY_RE3,
      wa_rec        TYPE BCSS_RE3
      .

wa_send_text-line = 'some text for body message'.
append wa_send_text to it_send_text.


wa_rec-recipient = CL_SAPUSER_BCS=&amp;gt;CREATE( SY-UNAME ).
append wa_rec to it_rec.

TRY.
CALL METHOD cl_bcs=&amp;gt;short_message
  EXPORTING
    I_subject       = 'doc_title'
    I_TEXT          = it_send_text
    I_RECIPIENTS    = it_rec
*    I_ATTACHMENTS   =
*    I_APPL_OBJECT   =
*    I_STARTING_AT_X =
*    I_STARTING_AT_Y =
*    I_ENDING_AT_Y   =
*    I_ENDING_AT_X   =
*  receiving
*    RESULT          =
  .
  CATCH CX_SEND_REQ_BCS .
  CATCH CX_BCS .
ENDTRY.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it doesnt work...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steffen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2007 12:42:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188198#M466247</guid>
      <dc:creator>former_member183924</dc:creator>
      <dc:date>2007-04-24T12:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: sbwp create new document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188199#M466248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is not enough .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the method call would return cl_bcs type variable and using that you have to send.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i will write the code and update in a while&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2007 12:47:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188199#M466248</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-04-24T12:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: sbwp create new document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188200#M466249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i just checked this message and you cannot use this BSP page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cl_bcs=&amp;gt;short_message&lt;/P&gt;&lt;P&gt; message actually brings up the SAP gui screen (short message) where you have to click send. this is not suitable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you just want to send some text info as email to users sap inbox right. if yes check out this demo programs using cl_bcs classes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BCS_EXAMPLE_*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you still find problem following them, do let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2007 13:01:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188200#M466249</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-04-24T13:01:46Z</dc:date>
    </item>
    <item>
      <title>Re: sbwp create new document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188201#M466250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;also check this code sample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5931ff64-0a01-0010-2bb7-ff2f9a6165a0" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5931ff64-0a01-0010-2bb7-ff2f9a6165a0&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can easily modify this code sample to suit your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2007 13:09:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188201#M466250</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-04-24T13:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: sbwp create new document</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188202#M466251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;alright, these examples helps me so much (especialy example 3), that I have done it!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Steffen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2007 13:36:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sbwp-create-new-document/m-p/2188202#M466251</guid>
      <dc:creator>former_member183924</dc:creator>
      <dc:date>2007-04-24T13:36:56Z</dc:date>
    </item>
  </channel>
</rss>

