<?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: BDC DATASET syntax in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-dataset-syntax/m-p/2943197#M693845</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i don't get your problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls post an example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Oct 2007 06:20:34 GMT</pubDate>
    <dc:creator>andreas_mann3</dc:creator>
    <dc:date>2007-10-19T06:20:34Z</dc:date>
    <item>
      <title>BDC DATASET syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-dataset-syntax/m-p/2943193#M693841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have 5 structures in a flat file. The data from flat file needs to move into an  internal table through work area. When i am using open dataset in my code the total data is not moving from flat file to work area.Only structure 1 is getting moved into internal table.&lt;/P&gt;&lt;P&gt;Here for every new structure in the flat file the cursor moves to the new line feed i.e. if structure 1 data stop at the middle of the line.The next structure of the data in the flat file starts in the new line.Can any one tell me how we should write the open data set .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This program is just to read the file from application server to the internal table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me .Its very Urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Satish Raju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 16:21:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-dataset-syntax/m-p/2943193#M693841</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T16:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: BDC DATASET syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-dataset-syntax/m-p/2943194#M693842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have any flag in the file which says the associated record belongs to which structure?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can first move all data to a string and based upon the flag value you can move this string to respective file structures and likewise populate respective internal tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ashish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 16:24:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-dataset-syntax/m-p/2943194#M693842</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T16:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: BDC DATASET syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-dataset-syntax/m-p/2943195#M693843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I hope your flow is as follows. Also, your file should be a text file, otherwise is you are opening it in binary mode, you will have all of it in one line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET dsn IN TEXT MODE....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO.&lt;/P&gt;&lt;P&gt;READ DATASET dsn INTO something....&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;move 'something' to itab.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 16:33:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-dataset-syntax/m-p/2943195#M693843</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T16:33:04Z</dc:date>
    </item>
    <item>
      <title>Re: BDC DATASET syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-dataset-syntax/m-p/2943196#M693844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you said is ok.But my criteria is different . When I am reading dataset i am not getting total data from flat file to Work area or internal table.Only the first structure data is moving from flat file to internal table. from the second structure of flat file is not moving from flat file to work area. This is because the new structure data always begins with a new line. So generally when we move data from flat file to work area we only get if the data is continuous as per structure but here the condition is it differs in a new line when the structure changes in the flat file. Can you please help me in this issue .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,,&lt;/P&gt;&lt;P&gt;Satish Raju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Oct 2007 06:06:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-dataset-syntax/m-p/2943196#M693844</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-19T06:06:37Z</dc:date>
    </item>
    <item>
      <title>Re: BDC DATASET syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-dataset-syntax/m-p/2943197#M693845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i don't get your problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls post an example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Oct 2007 06:20:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-dataset-syntax/m-p/2943197#M693845</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2007-10-19T06:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: BDC DATASET syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-dataset-syntax/m-p/2943198#M693846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have got the problem solved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Oct 2007 13:44:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-dataset-syntax/m-p/2943198#M693846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-20T13:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: BDC DATASET syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-dataset-syntax/m-p/2943199#M693847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Resolved myself&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jul 2011 07:51:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-dataset-syntax/m-p/2943199#M693847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-21T07:51:00Z</dc:date>
    </item>
  </channel>
</rss>

