<?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 how does this IMPORT statement works in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-does-this-import-statement-works/m-p/6166073#M1370952</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can any one tell me how does this statement will work..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am wokring on Solution manager system , where in there is a function module SSF_FIELD_LIST&lt;/P&gt;&lt;P&gt;to which system passes form name. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  import fields to fieldlist
         from database stxfcontr(sf) id l_fullname. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;stxfcontr is a table which contains value of in  a diff &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;mayank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Oct 2009 13:52:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-15T13:52:05Z</dc:date>
    <item>
      <title>how does this IMPORT statement works</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-does-this-import-statement-works/m-p/6166073#M1370952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can any one tell me how does this statement will work..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am wokring on Solution manager system , where in there is a function module SSF_FIELD_LIST&lt;/P&gt;&lt;P&gt;to which system passes form name. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  import fields to fieldlist
         from database stxfcontr(sf) id l_fullname. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;stxfcontr is a table which contains value of in  a diff &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;mayank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2009 13:52:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-does-this-import-statement-works/m-p/6166073#M1370952</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-15T13:52:05Z</dc:date>
    </item>
    <item>
      <title>Re: how does this IMPORT statement works</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-does-this-import-statement-works/m-p/6166074#M1370953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While creating the Smartforms, System store the value in this table using the EXPORT statement by referring to specific ID (which is SF) and the Form Name (Smartform name). Table STXFCONTR has the field CLUSTD which is type of LRAW. This field contains the actual data. Where as the field CLUSTR contains the length of the data stored in the CLUSTD. The length of the field CLUSTD is 2886. So, it the data is more than that than system stores the remaining data as a new record with counter stored in Field SRTF2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you use the IMPORT statement system selects the records from this cluster and try to set it to the same format which it has used while EXPORT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2009 14:17:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-does-this-import-statement-works/m-p/6166074#M1370953</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2009-10-15T14:17:52Z</dc:date>
    </item>
    <item>
      <title>Re: how does this IMPORT statement works</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-does-this-import-statement-works/m-p/6166075#M1370954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It will import data object stored in memory under named &lt;STRONG&gt;fields&lt;/STRONG&gt; to your custom data object &lt;STRONG&gt;fieldlist&lt;/STRONG&gt; . &lt;/P&gt;&lt;P&gt;The table which it is stored is name &lt;STRONG&gt;stxfcontr&lt;/STRONG&gt; under &lt;EM&gt;RELID&lt;/EM&gt; (memory area) &lt;STRONG&gt;SF&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;Cluster key (key of the entry) in that table is behind var &lt;STRONG&gt;l_fullname&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyhow I think [this link|http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3bf8358411d1829f0000e829fbfe/frameset.htm] is more that any explanation. Once you study it, you will understand the above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2009 14:21:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-does-this-import-statement-works/m-p/6166075#M1370954</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2009-10-15T14:21:11Z</dc:date>
    </item>
    <item>
      <title>Re: how does this IMPORT statement works</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-does-this-import-statement-works/m-p/6166076#M1370955</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;&lt;/P&gt;&lt;P&gt;Yes may be it has to do with Memory concept.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i generated the Smartform again in the Production system i got the values..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem Solved..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Everyone..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mayank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Oct 2009 15:32:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-does-this-import-statement-works/m-p/6166076#M1370955</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-19T15:32:18Z</dc:date>
    </item>
    <item>
      <title>Re: how does this IMPORT statement works</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-does-this-import-statement-works/m-p/6166077#M1370956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Problem Solved !!&lt;/P&gt;&lt;P&gt;Mentioned in my reply..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Oct 2009 15:33:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-does-this-import-statement-works/m-p/6166077#M1370956</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-19T15:33:12Z</dc:date>
    </item>
  </channel>
</rss>

