<?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>Question Re: Attachments in Workflow. in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060181#M2229110</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1.First of all I would suggest to start the workflow with &lt;STRONG&gt;SAP_WAPI_START_WORKFLOW&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;2. Please check whether the header of the Attahcment is populated correctly or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope the code snippet might help you to understand&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  DATA :
     lv_header        TYPE swr_att_header.
  IF lv_xstring IS NOT INITIAL.

    lv_header-file_type = 'B'.
    lv_header-file_name = 'Attachment'.
    lv_header-file_extension = 'DOC'.
    lv_header-language = 'EN'.

    CALL FUNCTION 'SAP_WAPI_ATTACHMENT_ADD'
      EXPORTING
        workitem_id = wf_wi_id
        att_header  = lv_header
        att_bin     = lv_xstring
      IMPORTING
        return_code = lv_return
        att_id      = att_id.

    IF lv_return = 0.

      lv_objtkey = att_id-doc_id.
      lv_objsofm = 'SOFM'.
      swc0_create_object bo_sofm lv_objsofm lv_objtkey.

    ENDIF.                             " IF lv_return = 0
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Sep 2009 11:15:53 GMT</pubDate>
    <dc:creator>bpawanchand</dc:creator>
    <dc:date>2009-09-14T11:15:53Z</dc:date>
    <item>
      <title>Attachments in Workflow.</title>
      <link>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaq-p/6060180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am following the document which I got in SDN . for making attachments in WF. &lt;/P&gt;&lt;P&gt;I have done the same way as it was given but In tcode SWI1 its showing as Error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am triggering the workflow through my report program usinf the FM SWW_WI_START_SIMPLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in my BOR object I defined the method attachment and called the FM SAP_WAPI_ATTACHMENT_ADD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What might be the problem, could any one explain please&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Sep 2009 10:41:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaq-p/6060180</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-14T10:41:06Z</dc:date>
    </item>
    <item>
      <title>Re: Attachments in Workflow.</title>
      <link>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060181#M2229110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1.First of all I would suggest to start the workflow with &lt;STRONG&gt;SAP_WAPI_START_WORKFLOW&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;2. Please check whether the header of the Attahcment is populated correctly or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope the code snippet might help you to understand&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  DATA :
     lv_header        TYPE swr_att_header.
  IF lv_xstring IS NOT INITIAL.

    lv_header-file_type = 'B'.
    lv_header-file_name = 'Attachment'.
    lv_header-file_extension = 'DOC'.
    lv_header-language = 'EN'.

    CALL FUNCTION 'SAP_WAPI_ATTACHMENT_ADD'
      EXPORTING
        workitem_id = wf_wi_id
        att_header  = lv_header
        att_bin     = lv_xstring
      IMPORTING
        return_code = lv_return
        att_id      = att_id.

    IF lv_return = 0.

      lv_objtkey = att_id-doc_id.
      lv_objsofm = 'SOFM'.
      swc0_create_object bo_sofm lv_objsofm lv_objtkey.

    ENDIF.                             " IF lv_return = 0
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Sep 2009 11:15:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060181#M2229110</guid>
      <dc:creator>bpawanchand</dc:creator>
      <dc:date>2009-09-14T11:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Attachments in Workflow.</title>
      <link>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060182#M2229111</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;when I am using the FM  'SAP_WAPI_START_WORKFLOW  its leading to dump as there is type conflict in the container type &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using the INCLUDE &amp;lt;cntn01&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Binding also there is a Problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the Task is not getting binded with the method automatically.&lt;/P&gt;&lt;P&gt;what might be the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Sep 2009 06:40:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060182#M2229111</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-15T06:40:14Z</dc:date>
    </item>
    <item>
      <title>Re: Attachments in Workflow.</title>
      <link>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060183#M2229112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL FUNCTION 'SAP_WAPI_START_WORKFLOW' &lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt; task = 'WS90000092' &lt;/P&gt;&lt;P&gt;LANGUAGE = SY-LANGU &lt;/P&gt;&lt;P&gt;*DO_COMMIT = 'X' &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;USER = SY-UNAME &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;start_asynchronous = 'X' &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;DESIRED_START_DATE = &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;DESIRED_START_TIME = &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;DESIRED_START_ZONLO = SY-ZONLO &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IFS_XML_CONTAINER =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; IMPORTING &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;RETURN_CODE =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; workitem_id = workitem_id &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;NEW_STATUS =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; TABLES&lt;/P&gt;&lt;P&gt; input_container = container&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE_LINES =&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;MESSAGE_STRUCT = &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;agents = it_agents . &lt;/P&gt;&lt;P&gt;COMMIT WORK.&lt;/P&gt;&lt;P&gt; WRITE : workitem_id. &lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;replace the starting of workflow with the below code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'EWW_WORKFLOW_START'
  EXPORTING
    x_task                = 'WS90000092'
 TABLES
   X_CONTAINER            = container
 EXCEPTIONS
   INVALID_TASK          = 1
   NO_ACTIVE_PLVAR       = 2
   START_FAILED          = 3
   GENERAL_ERROR         = 4
   OTHERS                = 5
          .
IF sy-subrc &amp;lt;&amp;gt; 0.
 MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Sep 2009 06:55:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060183#M2229112</guid>
      <dc:creator>bpawanchand</dc:creator>
      <dc:date>2009-09-15T06:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: Attachments in Workflow.</title>
      <link>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060184#M2229113</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;When I check the Tcode SWI1 I am finding the the activity step which I used in the workflow is not getting exectued properly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting the status as Error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Unable to read RFC destination WORKFLOW_LOCAL_100&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help me on this issue&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Sep 2009 09:30:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060184#M2229113</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-15T09:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: Attachments in Workflow.</title>
      <link>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060185#M2229114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check SWU3 workflow custiomizing  whether the RFC destination is active or it is mared as Red color cross&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Sep 2009 09:44:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060185#M2229114</guid>
      <dc:creator>bpawanchand</dc:creator>
      <dc:date>2009-09-15T09:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: Attachments in Workflow.</title>
      <link>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060186#M2229115</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;Its marked as red color cross&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Sep 2009 11:28:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060186#M2229115</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-15T11:28:10Z</dc:date>
    </item>
    <item>
      <title>Re: Attachments in Workflow.</title>
      <link>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060187#M2229116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then te workflow customization is not done correctly. please check the below blog to know more aboput [workflow auto customization|http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417200)ID1970508150DB10021094557931378781End?blog=/pub/wlg/9945]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Sep 2009 11:29:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060187#M2229116</guid>
      <dc:creator>bpawanchand</dc:creator>
      <dc:date>2009-09-15T11:29:44Z</dc:date>
    </item>
    <item>
      <title>Re: Attachments in Workflow.</title>
      <link>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060188#M2229117</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;  Ask your Basis team to assign a profile as SAP_ALL profile so that your user can be set as as RFC destination user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; If not you can go what Pavan has suggested in the blog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck&lt;/P&gt;&lt;P&gt;Narin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Sep 2009 12:15:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060188#M2229117</guid>
      <dc:creator>narin_nandivada3</dc:creator>
      <dc:date>2009-09-15T12:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: Attachments in Workflow.</title>
      <link>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060189#M2229118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please search the forum before posting questions, it will get you the solution much more quickly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Rick Bakker&lt;/P&gt;&lt;P&gt;Hanabi Technology&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Sep 2009 16:28:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060189#M2229118</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-15T16:28:03Z</dc:date>
    </item>
    <item>
      <title>Re: Attachments in Workflow.</title>
      <link>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060190#M2229119</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;&lt;/P&gt;&lt;P&gt;The confiogurations are done. thanks for the support.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the post you have given a code snippet&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

    IF lv_return = 0.
 
      lv_objtkey = att_id-doc_id.
      lv_objsofm = 'SOFM'.
      swc0_create_object bo_sofm lv_objsofm lv_objtkey.
 
    ENDIF.        

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you help me with the data types of the lv_objkey , lv_objsofm, and what is bo_sofm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I have to use the above code snippet in BOR method.? am I correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reagrds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2009 12:55:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060190#M2229119</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-16T12:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: Attachments in Workflow.</title>
      <link>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060191#M2229120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes., you need to write code in the BOR method and later you have to export the attachment object back to the task and from task to workflow and you have to make the bindings between workflow and the step which you want to send to the agent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are implementing the logic in the BOR then,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Bo_sofm         TYPE  SWC_OBJECT.&lt;/P&gt;&lt;P&gt;2.lv_objsofm       TYPE   swotobjid-objtype,&lt;/P&gt;&lt;P&gt;3. lv_objtkey       TYPE   swotobjid-objkey,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2009 13:02:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060191#M2229120</guid>
      <dc:creator>bpawanchand</dc:creator>
      <dc:date>2009-09-16T13:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: Attachments in Workflow.</title>
      <link>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060192#M2229121</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;I am getting error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Statement "SWC0_CREATE_OBJECT" is not defined. Check your spelling.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one more doubt , why I am not getting default binding from task to method&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2009 13:16:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060192#M2229121</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-16T13:16:21Z</dc:date>
    </item>
    <item>
      <title>Re: Attachments in Workflow.</title>
      <link>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060193#M2229122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it shud be SWCO_CREATE_OBJECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have written 0 instead of O.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2009 13:21:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060193#M2229122</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-16T13:21:34Z</dc:date>
    </item>
    <item>
      <title>Re: Attachments in Workflow.</title>
      <link>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060194#M2229123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I having da same prob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2009 13:27:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060194#M2229123</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-16T13:27:00Z</dc:date>
    </item>
    <item>
      <title>Re: Attachments in Workflow.</title>
      <link>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060195#M2229124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you have to use SWC_CREATE_OBJECT the one which i  mentioned that I was using in a class method SWC&amp;lt;zero&amp;gt;_create_object, any how you are writing the code in the bor so you have to just remove the &amp;lt;zero&amp;gt; from that macro.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2009 13:27:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060195#M2229124</guid>
      <dc:creator>bpawanchand</dc:creator>
      <dc:date>2009-09-16T13:27:17Z</dc:date>
    </item>
    <item>
      <title>Re: Attachments in Workflow.</title>
      <link>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060196#M2229125</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;The work flow is executed successfully but in the tcode SWi1 I was unble to see my attachment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you please help me in this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: SAP LEARNER on Sep 17, 2009 6:44 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2009 13:57:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060196#M2229125</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-16T13:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: Attachments in Workflow.</title>
      <link>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060197#M2229126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have the same problem, can you please help me in this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Apr 2013 16:34:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060197#M2229126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-04-30T16:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: Attachments in Workflow.</title>
      <link>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060198#M2229127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please open a new thread with the details of your problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 May 2013 11:49:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/attachments-in-workflow/qaa-p/6060198#M2229127</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-05-01T11:49:45Z</dc:date>
    </item>
  </channel>
</rss>

