<?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 from INDX in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-from-indx/m-p/2221135#M476948</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;Now i got the structure.&lt;/P&gt;&lt;P&gt;Iam trying to improt data into gt_display table. Sy-subrc is showing 0.&lt;/P&gt;&lt;P&gt;But why iam not able to get the data? Where iam doing wrong? Any clue pls..!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

data: gt_display type table of zrmsrept with header line.
data: indxkey like indx-srtfd value 'BILLING'.

import lt_display = gt_display from database indx(rm) id indxkey.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 May 2007 18:21:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-01T18:21:15Z</dc:date>
    <item>
      <title>import from INDX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-from-indx/m-p/2221131#M476944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;I got a requirement to import the data from INDX table using RELID &amp;amp; SRTFD fields.&lt;/P&gt;&lt;P&gt;But how do i know the structure of the table to import the data into ITAB?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any FM existing to now the structure??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Iam trying to get the data like this..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
import gt_display = lt_display
       from database indx(rm) id 'BILLING'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Pls let me know.&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 15:03:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-from-indx/m-p/2221131#M476944</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T15:03:18Z</dc:date>
    </item>
    <item>
      <title>Re: import from INDX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-from-indx/m-p/2221132#M476945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u should do this way...&lt;/P&gt;&lt;P&gt;EXPORT gt_display from DATABASE indx(ar) CLIENT sy-mandt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 15:06:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-from-indx/m-p/2221132#M476945</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T15:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: import from INDX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-from-indx/m-p/2221133#M476946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. We have to know beforehand itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. U can also check help on Import Directory syntax.&lt;/P&gt;&lt;P&gt;   This comand helps to know the structure of the content inside the cluster.&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 15:07:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-from-indx/m-p/2221133#M476946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T15:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: import from INDX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-from-indx/m-p/2221134#M476947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The structure of fields, field strings and internal tables to be imported must match the structure of the objects exported to the dataset.In addition, the objects must be imported under the same name used to export them. If this is not the case, either a runtime error occurs or no import takes place.Exception: You can lengthen or shorten the last field if it is of type CHAR , or add/omit CHAR fields at the end of the structure. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 15:36:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-from-indx/m-p/2221134#M476947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T15:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: import from INDX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-from-indx/m-p/2221135#M476948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;Now i got the structure.&lt;/P&gt;&lt;P&gt;Iam trying to improt data into gt_display table. Sy-subrc is showing 0.&lt;/P&gt;&lt;P&gt;But why iam not able to get the data? Where iam doing wrong? Any clue pls..!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

data: gt_display type table of zrmsrept with header line.
data: indxkey like indx-srtfd value 'BILLING'.

import lt_display = gt_display from database indx(rm) id indxkey.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 18:21:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-from-indx/m-p/2221135#M476948</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T18:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: import from INDX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-from-indx/m-p/2221136#M476949</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;Try &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import gt_display from database indx(rm) id indxkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 19:11:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-from-indx/m-p/2221136#M476949</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T19:11:45Z</dc:date>
    </item>
  </channel>
</rss>

