<?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 Moving internal table to another internal table using ASSIGN statement. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-internal-table-to-another-internal-table-using-assign-statement/m-p/2559869#M583746</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;We have a requirement to move an internal table form one program(SAPMV60A) to the internal table of the include(RV61B9xx) using the following statement. &lt;/P&gt;&lt;P&gt;[  xvbrp is a internal table in SAPMV60A.  ]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN ('(SAPMV60A)xvbrp')  TO &amp;lt;ls_xvbrp&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We tried all the combinations for declaring &amp;lt;ls_xvbrp&amp;gt; as table. &lt;/P&gt;&lt;P&gt;It is going to dump in our system, &lt;/P&gt;&lt;P&gt;" Type conflict with ASSIGN in program "SAPLV61B ".".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your efforts will be rewarded with points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;Warm Regards,&lt;/P&gt;&lt;P&gt;Baburaj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Jul 2007 11:31:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-10T11:31:58Z</dc:date>
    <item>
      <title>Moving internal table to another internal table using ASSIGN statement.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-internal-table-to-another-internal-table-using-assign-statement/m-p/2559869#M583746</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;We have a requirement to move an internal table form one program(SAPMV60A) to the internal table of the include(RV61B9xx) using the following statement. &lt;/P&gt;&lt;P&gt;[  xvbrp is a internal table in SAPMV60A.  ]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN ('(SAPMV60A)xvbrp')  TO &amp;lt;ls_xvbrp&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We tried all the combinations for declaring &amp;lt;ls_xvbrp&amp;gt; as table. &lt;/P&gt;&lt;P&gt;It is going to dump in our system, &lt;/P&gt;&lt;P&gt;" Type conflict with ASSIGN in program "SAPLV61B ".".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your efforts will be rewarded with points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;Warm Regards,&lt;/P&gt;&lt;P&gt;Baburaj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2007 11:31:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-internal-table-to-another-internal-table-using-assign-statement/m-p/2559869#M583746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-10T11:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: Moving internal table to another internal table using ASSIGN statement.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-internal-table-to-another-internal-table-using-assign-statement/m-p/2559870#M583747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Use the ABAP Memory IMPORT and EXPORT option and Export the internal table and import there in other include &lt;/P&gt;&lt;P&gt;   OR u can use application server file like open dataset.&lt;/P&gt;&lt;P&gt;   OR upload it to any cluster table and download it in include useing&lt;/P&gt;&lt;P&gt; IMPORT FROM DATABASE&lt;/P&gt;&lt;P&gt; EXPORT FROM DATABASE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nandha&lt;/P&gt;&lt;P&gt;Reward if it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2007 11:36:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-internal-table-to-another-internal-table-using-assign-statement/m-p/2559870#M583747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-10T11:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: Moving internal table to another internal table using ASSIGN statement.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-internal-table-to-another-internal-table-using-assign-statement/m-p/2559871#M583748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;ls_xvbrp&amp;gt; TYPE ANY.&lt;/P&gt;&lt;P&gt;ASSIGN ('(SAPMV60A)xvbrp[]') TO &amp;lt;ls_xvbrp&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if xvbrp is a table with header line do not forget to put xvbrp[] in your assign statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2007 12:17:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-internal-table-to-another-internal-table-using-assign-statement/m-p/2559871#M583748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-10T12:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: Moving internal table to another internal table using ASSIGN statement.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-internal-table-to-another-internal-table-using-assign-statement/m-p/2559872#M583749</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;If you declare your field-symbols as table you should use []&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;ls_xvbrp&amp;gt; TYPE TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN ('(SAPMV60A)xvbrp[]') TO &amp;lt;ls_xvbrp&amp;gt;.&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;FIELD-SYMBOLS: &amp;lt;ls_xvbrp&amp;gt; TYPE ANY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN ('(SAPMV60A)xvbrp') TO &amp;lt;ls_xvbrp&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I believe in this case you'll assign the header line of xvbrp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2007 12:25:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-internal-table-to-another-internal-table-using-assign-statement/m-p/2559872#M583749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-10T12:25:28Z</dc:date>
    </item>
    <item>
      <title>Re: Moving internal table to another internal table using ASSIGN statement.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-internal-table-to-another-internal-table-using-assign-statement/m-p/2559873#M583750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Baburaj&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps the following article may be useful to you:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="html" __jive_macro_name="code"&gt;&amp;lt;a href="http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/208811b0-00b2-2910-c5ac-dd2c7c50c8e8"&amp;gt;SAP® User Exits And The People Who Love Them&amp;lt;/a&amp;gt;&lt;/SPAN&gt;&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;  Uwe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2007 12:27:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-internal-table-to-another-internal-table-using-assign-statement/m-p/2559873#M583750</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2007-07-10T12:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: Moving internal table to another internal table using ASSIGN statement.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-internal-table-to-another-internal-table-using-assign-statement/m-p/2559874#M583751</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;You need to define say&lt;/P&gt;&lt;P&gt;CONSTANTS:&lt;/P&gt;&lt;P&gt;      c_pgmvariable(21)  value '(SAPMV60A)xvbrp[]'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;FC&amp;gt; Type ANY.&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF I_REF_ESLL OCCURS 200.&lt;/P&gt;&lt;P&gt;         INCLUDE STRUCTURE VBRP.&lt;/P&gt;&lt;P&gt;DATA: END OF I_REF_ESLL.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;assign (c_pgmvariable) to &amp;lt;FC&amp;gt;.&lt;/P&gt;&lt;P&gt;I_REF_ESLL[] = &amp;lt;FC&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raju Chitale&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2007 12:30:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-internal-table-to-another-internal-table-using-assign-statement/m-p/2559874#M583751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-10T12:30:08Z</dc:date>
    </item>
  </channel>
</rss>

