<?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 Move lraw data to internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-lraw-data-to-internal-table/m-p/3976877#M949834</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have data for an internal table stored in a 3000 length char field. I need to move this to an internal table that has different type of fileds like CHAR, QUAN ....&lt;/P&gt;&lt;P&gt;What is the best way to do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Jun 2008 13:26:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-19T13:26:11Z</dc:date>
    <item>
      <title>Move lraw data to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-lraw-data-to-internal-table/m-p/3976877#M949834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have data for an internal table stored in a 3000 length char field. I need to move this to an internal table that has different type of fileds like CHAR, QUAN ....&lt;/P&gt;&lt;P&gt;What is the best way to do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 13:26:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-lraw-data-to-internal-table/m-p/3976877#M949834</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T13:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: Move lraw data to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-lraw-data-to-internal-table/m-p/3976878#M949835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to use offset .. in moving the data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab. "field1 - 3000 length char field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   itab1-field1 = itab-field1+0(10).&lt;/P&gt;&lt;P&gt;   itab1-field2 = itab-field1+10(10).&lt;/P&gt;&lt;P&gt;   itab1-field3 = itab-field1+20(10).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   append itab1.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 13:30:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-lraw-data-to-internal-table/m-p/3976878#M949835</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T13:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: Move lraw data to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-lraw-data-to-internal-table/m-p/3976879#M949836</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;     Use offset to move to the internal table. Becareful while moving to Amount, Quantity, Date, Time... fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 13:31:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-lraw-data-to-internal-table/m-p/3976879#M949836</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T13:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: Move lraw data to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-lraw-data-to-internal-table/m-p/3976880#M949837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hiii &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can do that by using OFFSET only..but while moving check for the data type in which you are trying to move then use that much OFFSET only otherwise it will give you dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;P&gt;thx&lt;/P&gt;&lt;P&gt;twinkal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 13:34:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-lraw-data-to-internal-table/m-p/3976880#M949837</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T13:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: Move lraw data to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-lraw-data-to-internal-table/m-p/3976881#M949838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the help. I could solve it with the code below: -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class CL_ABAP_CONTAINER_UTILITIES definition load.&lt;/P&gt;&lt;P&gt;call method CL_ABAP_CONTAINER_UTILITIES=&amp;gt;READ_CONTAINER_C&lt;/P&gt;&lt;P&gt;      exporting IM_CONTAINER = zmqsq-msgdata&lt;/P&gt;&lt;P&gt;      importing EX_VALUE = w_znextlnxnq&lt;/P&gt;&lt;P&gt;      exceptions ILLEGAL_PARAMETER_TYPE = 1&lt;/P&gt;&lt;P&gt;      others = 2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 13:34:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-lraw-data-to-internal-table/m-p/3976881#M949838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T13:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: Move lraw data to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-lraw-data-to-internal-table/m-p/3976882#M949839</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;I have a similar problem but  this method does not work for packed decimals.  the structure returns some bizzare value. Any ideas that would help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;P&gt;Veena&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2008 20:19:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-lraw-data-to-internal-table/m-p/3976882#M949839</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-09T20:19:22Z</dc:date>
    </item>
  </channel>
</rss>

