<?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 Making Inout table array from a input as a string in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-inout-table-array-from-a-input-as-a-string/m-p/6500216#M1421601</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  We have made a RFC for F-28 with document number posting,  to enetr the document number  we have a table  in which we can enter the document number  to add multiple docum,ent  after entering first document number then after click on new line we are enering the second document number  it is working fine in SAP with SE37,  my problem is that  we are using this RFC with cordys  and that can pass only one document number at a time  or it can pass  value  seperated by  ,  (comma)  so i want to know  how to make array in sap  by receving document number as as string from cordys software   lit will send me string  as       5000000000, 50000000001, 50000000002, 50000000003.&lt;/P&gt;&lt;P&gt;then  in SAP  i want to pass this value in a loop with internal table.&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;  zafar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Jan 2010 04:52:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-01-19T04:52:26Z</dc:date>
    <item>
      <title>Making Inout table array from a input as a string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-inout-table-array-from-a-input-as-a-string/m-p/6500216#M1421601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  We have made a RFC for F-28 with document number posting,  to enetr the document number  we have a table  in which we can enter the document number  to add multiple docum,ent  after entering first document number then after click on new line we are enering the second document number  it is working fine in SAP with SE37,  my problem is that  we are using this RFC with cordys  and that can pass only one document number at a time  or it can pass  value  seperated by  ,  (comma)  so i want to know  how to make array in sap  by receving document number as as string from cordys software   lit will send me string  as       5000000000, 50000000001, 50000000002, 50000000003.&lt;/P&gt;&lt;P&gt;then  in SAP  i want to pass this value in a loop with internal table.&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;  zafar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 04:52:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-inout-table-array-from-a-input-as-a-string/m-p/6500216#M1421601</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-19T04:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: Making Inout table array from a input as a string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-inout-table-array-from-a-input-as-a-string/m-p/6500217#M1421602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    Declare a table with the Importing field, and use the SPLIT command to split.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES : BEGIN of t_itab,
                 donum TYPE donum,
             END of t_itab.

DATA : i_itab TYPE STANDARD TABLE of t_itab,
            wa_itab TYPE t_itab.

SPLIT string AT ',' INTO TABLE i_itab.

LOOP at i_itab INTO wa_itab.

....  " Call the RFC FM

ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Bala Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 05:17:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-inout-table-array-from-a-input-as-a-string/m-p/6500217#M1421602</guid>
      <dc:creator>former_member585060</dc:creator>
      <dc:date>2010-01-19T05:17:23Z</dc:date>
    </item>
  </channel>
</rss>

