<?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: Import   internal table problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-internal-table-problem/m-p/2021589#M413784</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry i didn't get u ..what is the meaning of  dedecated Internal table ..&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt; here i have to use the options of IMPORT those what i specified in my question...mainly &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IGNORING CONVERSION ERRORS in IMPORT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Mar 2007 14:57:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-05T14:57:44Z</dc:date>
    <item>
      <title>Import   internal table problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-internal-table-problem/m-p/2021584#M413779</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 have 2 programs with me.&lt;/P&gt;&lt;P&gt;In the first program my code is like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  Y_TEST1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;  BEGIN OF FS_DATA,&lt;/P&gt;&lt;P&gt;    NUMBER   TYPE I,&lt;/P&gt;&lt;P&gt;    NAME(30) TYPE C,&lt;/P&gt;&lt;P&gt;  END OF FS_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;  T_DATA LIKE STANDARD TABLE OF FS_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEFINE APPEND_TABLE.&lt;/P&gt;&lt;P&gt;  FS_DATA-NUMBER = &amp;amp;1.&lt;/P&gt;&lt;P&gt;  FS_DATA-NAME = &amp;amp;2.&lt;/P&gt;&lt;P&gt;  APPEND FS_DATA TO T_DATA.&lt;/P&gt;&lt;P&gt;  CLEAR FS_DATA.&lt;/P&gt;&lt;P&gt;END-OF-DEFINITION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND_TABLE 1 'HARISH'.&lt;/P&gt;&lt;P&gt;APPEND_TABLE 2 'MAHESH'.&lt;/P&gt;&lt;P&gt;APPEND_TABLE 3 'SURESH'.&lt;/P&gt;&lt;P&gt;APPEND_TABLE 4 'WAJID'.&lt;/P&gt;&lt;P&gt;APPEND_TABLE 5 'SANKAR'.&lt;/P&gt;&lt;P&gt;APPEND_TABLE 6 'SATISH'.&lt;/P&gt;&lt;P&gt;APPEND_TABLE 7 'CHANDU'.&lt;/P&gt;&lt;P&gt;APPEND_TABLE 8 'VEERESH'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT T_DATA TO MEMORY ID 'NAM'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT Y_TEST1_CALLED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And my Second Program code is ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  Y_TEST1_CALLED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; DATA:&lt;/P&gt;&lt;P&gt;    FS_DATA(30).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt; T_DATA LIKE STANDARD TABLE OF FS_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT T_DATA FROM MEMORY ID 'NAM' . ******ERROR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT T_DATA INTO FS_DATA.&lt;/P&gt;&lt;P&gt;  WRITE: / FS_DATA.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are the programs that i have here in &lt;/P&gt;&lt;P&gt;second Prog i am getting Shortdump as Types mis match ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but according  to my requirement i need to get the data into itab t_data without changing structure of the internal tables ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here I need to use any of options in IMPORT &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;{ { { {[ACCEPTING PADDING] [ACCEPTING TRUNCATION]} &lt;/P&gt;&lt;P&gt;        | [IGNORING STRUCTURE BOUNDARIES] } &lt;/P&gt;&lt;P&gt;        [IGNORING CONVERSION ERRORS [REPLACEMENT CHARACTER rc]] } &lt;/P&gt;&lt;P&gt;    | [IN CHAR-TO-HEX MODE] } &lt;/P&gt;&lt;P&gt;    [CODEPAGE INTO cp] &lt;/P&gt;&lt;P&gt;    [ENDIAN INTO endian]. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what i need to use and how ......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think correct option is IGNORING CONVERSION ERRORS but it is giving syntax error ..can any one send me the proper code and my system is ECC 5.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 14:45:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-internal-table-problem/m-p/2021584#M413779</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T14:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: Import   internal table problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-internal-table-problem/m-p/2021585#M413780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Refer the demo program:&lt;/P&gt;&lt;P&gt;DEMO_DATA_EXT_CLUSTER_IMPORT&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 14:50:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-internal-table-problem/m-p/2021585#M413780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T14:50:55Z</dc:date>
    </item>
    <item>
      <title>Re: Import   internal table problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-internal-table-problem/m-p/2021586#M413781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should make sure that both defintions of FS_DATA are exactly the same in both programs.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 14:51:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-internal-table-problem/m-p/2021586#M413781</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-03-05T14:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: Import   internal table problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-internal-table-problem/m-p/2021587#M413782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So if you are not allowed to change the structure of the internal table in the second program, you should use a dedicated internal table  for passing the data in both programs, then you can simply move the records from the other internal table to FS_DATA in the second program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 14:53:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-internal-table-problem/m-p/2021587#M413782</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-03-05T14:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: Import   internal table problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-internal-table-problem/m-p/2021588#M413783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please use it in this way,&lt;/P&gt;&lt;P&gt;*&amp;amp; First Prog----&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: char4(4) type c.
EXPORT char4 TO MEMORY ID 'ZOT'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;*&amp;amp; Other Prog---&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Data: char4(4) type c.
 IMPORT char4 FROM MEMORY ID 'ZOT'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Once you get the output.&lt;/P&gt;&lt;P&gt;Then Free the Memory &lt;/P&gt;&lt;P&gt;syntax is:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; Free memory id 'ZOT'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward point if helpfull.***************************&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 14:55:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-internal-table-problem/m-p/2021588#M413783</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T14:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: Import   internal table problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-internal-table-problem/m-p/2021589#M413784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry i didn't get u ..what is the meaning of  dedecated Internal table ..&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt; here i have to use the options of IMPORT those what i specified in my question...mainly &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IGNORING CONVERSION ERRORS in IMPORT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 14:57:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-internal-table-problem/m-p/2021589#M413784</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T14:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: Import   internal table problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-internal-table-problem/m-p/2021590#M413785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should use a internal table in both progams which have the same exact structure.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 14:59:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-internal-table-problem/m-p/2021590#M413785</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-03-05T14:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: Import   internal table problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-internal-table-problem/m-p/2021591#M413786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But the different structures r working in 4.6 system ( my Clients machine)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 15:01:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-internal-table-problem/m-p/2021591#M413786</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T15:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: Import   internal table problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-internal-table-problem/m-p/2021592#M413787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pasupulati,&lt;/P&gt;&lt;P&gt;Please try it in this way. I have already done it in my one requirement.&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please use it in this way,&lt;/P&gt;&lt;P&gt;*&amp;amp; First Prog----&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: char4(4) type c.
EXPORT char4 TO MEMORY ID 'ZOT'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Other Prog---&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Data: char4(4) type c.
 IMPORT char4 FROM MEMORY ID 'ZOT'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you get the output.&lt;/P&gt;&lt;P&gt;Then Free the Memory &lt;/P&gt;&lt;P&gt;syntax is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; Free memory id 'ZOT'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 15:06:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-internal-table-problem/m-p/2021592#M413787</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T15:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: Import   internal table problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-internal-table-problem/m-p/2021593#M413788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;here i have  the internal tables with two different structures,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; so please give me any solution,if any ,  whch will works with these type of different structured itams..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and i saw Import has so many options to deal with some different stuructured itabs in F1&lt;/P&gt;&lt;P&gt;help ..&lt;/P&gt;&lt;P&gt;   and more over that this report is executing in 4.6 system without any issues ,and why it is giving short dump in ECC5,can any one tell me the reason.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR atleast tell me how to write the code using &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; "IGNORING CONVERSION ERRORS" option  in "IMPORT" &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so if any one has used those options ,can please suggest me...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        RK Pasupuleti&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        RK Pasupuleti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 16:30:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-internal-table-problem/m-p/2021593#M413788</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T16:30:50Z</dc:date>
    </item>
  </channel>
</rss>

