<?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: structure conversion in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-conversion/m-p/4780840#M1119992</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; you have three values in itab1 and ranges has only one place to hold.. what are u planning exactly... but still check this sample code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at itab1 into wa_itab1.
  s_erdat-high   = wa_itab1-value1.
  s_erdat-low    = wa_itab1-value2.
  s_erdat-option = 'BT'.
  s_erdat-sign   = 'I'.
  APPEND s_erdat.

clear: wa_itab1.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Nov 2008 20:02:34 GMT</pubDate>
    <dc:creator>former_member156446</dc:creator>
    <dc:date>2008-11-26T20:02:34Z</dc:date>
    <item>
      <title>structure conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-conversion/m-p/4780839#M1119991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         I have a small problem here.&lt;/P&gt;&lt;P&gt;         I have two internal tables itab1 and itab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         itab1 having the following structure&lt;/P&gt;&lt;P&gt;DATA:     BEGIN OF itab1  OCCURS 0.&lt;/P&gt;&lt;P&gt;DATA:     tcode TYPE tstct-tcode,&lt;/P&gt;&lt;P&gt;               ttext TYPE tstct-ttext,&lt;/P&gt;&lt;P&gt;               flag TYPE c.&lt;/P&gt;&lt;P&gt;DATA: END OF itab1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this itab1 i have some values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           My itab2 is of type range. i mean it is having the structure of  sign, option, low, high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i need to transfer itab1 content to itab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can it be possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anybody suggest .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;naidu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 19:54:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-conversion/m-p/4780839#M1119991</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-26T19:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: structure conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-conversion/m-p/4780840#M1119992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; you have three values in itab1 and ranges has only one place to hold.. what are u planning exactly... but still check this sample code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at itab1 into wa_itab1.
  s_erdat-high   = wa_itab1-value1.
  s_erdat-low    = wa_itab1-value2.
  s_erdat-option = 'BT'.
  s_erdat-sign   = 'I'.
  APPEND s_erdat.

clear: wa_itab1.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 20:02:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-conversion/m-p/4780840#M1119992</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-11-26T20:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: structure conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-conversion/m-p/4780841#M1119993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi jay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Thank you for the immediate reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        here my requirement is i need to call a function module. in that function module one tables parameter is there which is of type range. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       noe i have to pass itab2 into this tables parameter. but before passing this i need to transfer the itab1 contents to itab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  this is my main requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   can you suggest me please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;naidu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 20:21:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-conversion/m-p/4780841#M1119993</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-26T20:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: structure conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-conversion/m-p/4780842#M1119994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there..&lt;/P&gt;&lt;P&gt;my above post is the solution to update the range tables.. which values to pass you know it better..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at itab1 into wa_itab1.
  s_erdat-high   = wa_itab1-value1.
  s_erdat-low    = wa_itab1-tcode.
  s_erdat-option = 'BT'.
  s_erdat-sign   = 'I'.
  APPEND s_erdat.
 
clear: wa_itab1.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 20:30:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-conversion/m-p/4780842#M1119994</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-11-26T20:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: structure conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-conversion/m-p/4780843#M1119995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you j@y&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Dec 2008 06:07:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-conversion/m-p/4780843#M1119995</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-03T06:07:22Z</dc:date>
    </item>
  </channel>
</rss>

