<?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: how to use 'open dataset' command in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285416#M153794</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jayaraman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While i am transfering the data th weay which u have specified iam getting an error message that in unicode programe it's not covertable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please tell me what i have to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lisa&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Lisa Roy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Apr 2006 09:35:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-04-06T09:35:17Z</dc:date>
    <item>
      <title>how to use 'open dataset' command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285399#M153777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to put some data into the file which i am getting the file name dynamically. after getting the file name. so can any one suggest me how can i do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i came to know that i can do this with open dataset command is this right way to do?.If its wrong!. can any one tell me how to do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lisa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Lisa Roy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 12:29:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285399#M153777</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T12:29:40Z</dc:date>
    </item>
    <item>
      <title>Re: how to use 'open dataset' command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285400#M153778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: TheFileName(120).&lt;/P&gt;&lt;P&gt;data: theStr(500).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;move the dynamic file that you have to TheFileName&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;open dataset TheFileName for input in text mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;*message here about an OPEN error&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do.&lt;/P&gt;&lt;P&gt;read dataset TheFileName into theStr.&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EOF reached.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    exit.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Do your business logic here&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;close dataset TheFileName.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't forget those reward points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 12:35:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285400#M153778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T12:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: how to use 'open dataset' command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285401#M153779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Lisa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it is possible with Open dataset..&lt;/P&gt;&lt;P&gt;Here is something abt open dataset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax &lt;/P&gt;&lt;P&gt;OPEN DATASET dset FOR access IN mode [position] &lt;/P&gt;&lt;P&gt;                                     [ os_addition] &lt;/P&gt;&lt;P&gt;                                     [error_handling]. &lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;This statement opens the file specified in dset for the access specified in access in a storage mode specified in mode. For dset, a character-type data object is expected, which contains the platform-specific name of the file. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use additions position, os_addition and error_handling to determine the position at which to open the file, to specify platform-specific additions and to influence error handling. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Unicode programs, the access and storage modes access and mode must be specified explicitly. If the additions are missing in non-Unicode programs, the file is opened implicitly as a binary file for read access. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Unicode programs, the file must not yet be open in the current program; otherwise a treatable exception occurs. In non-Unicode programs, the file may already be open. The statement OPEN DATASET then does not reopen the file but moves the read or write position depending on the access mode. In this case, you should not change the access or storage mode. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;You can open up to 100 files per internal session. The actual maximum number of simultaneously open files may be less, depending on the platform. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Return Value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sy-subrc Description &lt;/P&gt;&lt;P&gt;0 File was opened. &lt;/P&gt;&lt;P&gt;8 Operating system could not open file. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exceptions &lt;/P&gt;&lt;P&gt;Catchable Exceptions &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CX_SY_FILE_OPEN &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cause: File is already open (only in Unicode programs) &lt;/P&gt;&lt;P&gt;Runtime Error: DATASET_REOPEN &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CX_SY_CODEPAGE_CONVERTER_INIT &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cause: The desired conversion is not supported. (Due to specification of invalid code page or of language not supported in the conversion, with SET LOCALE LANGUAGE.) &lt;/P&gt;&lt;P&gt;Runtime Error: CONVT_CODEPAGE_INIT (catchable) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CX_SY_CONVERSION_CODEPAGE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cause: Internal error in the conversion. &lt;/P&gt;&lt;P&gt;Runtime Error: CONVT_CODEPAGE (catchable) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CX_SY_FILE_AUTHORITY &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cause: No authorization for access to file &lt;/P&gt;&lt;P&gt;Runtime Error: OPEN_DATASET_NO_AUTHORITY (catchable) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cause: Authorization for access to this file is missing in OPEN DATASET with addition FILTER. &lt;/P&gt;&lt;P&gt;Runtime Error: OPEN_PIPE_NO_AUTHORITY (catchable) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CX_SY_PIPES_NOT_SUPPORTED &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CX_SY_TOO_MANY_FILES &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cause: Maximum number of open files exceeded. &lt;/P&gt;&lt;P&gt;Runtime Error: DATASET_TOO_MANY_FILES (catchable) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Non-Catchable Exceptions &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cause: You tried to open a pipe that is already open. &lt;/P&gt;&lt;P&gt;Runtime Error: DATASET_PIPE_POSITION &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;Srikanth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 12:39:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285401#M153779</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T12:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: how to use 'open dataset' command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285402#M153780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Get the fielname into a variable.&lt;/P&gt;&lt;P&gt;Use the statement,&lt;/P&gt;&lt;P&gt;Open dataset &amp;lt;YOur file name&amp;gt; for output in text mode.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;TRANSFER f TO dsn.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;close dataset.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 12:40:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285402#M153780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T12:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to use 'open dataset' command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285403#M153781</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 following statement for uploading from file.&lt;/P&gt;&lt;P&gt;OPEN DATASET file IN TEXT MODE ENCODING DEFAULT FOR INPUT. &lt;/P&gt;&lt;P&gt;DO. &lt;/P&gt;&lt;P&gt;  READ DATASET file INTO line. &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;  WRITE: / line. &lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 12:40:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285403#M153781</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T12:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: how to use 'open dataset' command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285404#M153782</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;PARAMETERS p_afile TYPE rlgrap-filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF ty_output,&lt;/P&gt;&lt;P&gt;        field(500) TYPE c,&lt;/P&gt;&lt;P&gt;        END OF ty_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Internal Table Declaration&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA:  t_output TYPE STANDARD TABLE OF ty_output,"Holding Output Details&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Work Area Declaration&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;       w_output TYPE ty_output,"Holding Output Details&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  OPEN DATASET p_afile FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.&lt;/P&gt;&lt;P&gt;  IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;    "Error in opening file for output&lt;/P&gt;&lt;P&gt;    LEAVE LIST-PROCESSING.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  LOOP AT t_output INTO w_output.&lt;/P&gt;&lt;P&gt;    TRANSFER w_output TO p_afile.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Closing the file&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CLOSE DATASET p_afile.&lt;/P&gt;&lt;P&gt;  IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;    "Error in closing file&lt;/P&gt;&lt;P&gt;    LEAVE LIST-PROCESSING.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 12:40:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285404#M153782</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-04-04T12:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: how to use 'open dataset' command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285405#M153783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lisa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Open dataset &amp;lt;datasetname&amp;gt; for input/output/appending in text/binary mode.&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;message .....&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;*******transferring data from file to app server.&lt;/P&gt;&lt;P&gt;do.&lt;/P&gt;&lt;P&gt;read dataset file into itab.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;clear itab.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;exit.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*******transferring data from itab to file&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;transfer itab to file.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;*******closing dataset&lt;/P&gt;&lt;P&gt;close dataset file.&lt;/P&gt;&lt;P&gt;hope this helps,&lt;/P&gt;&lt;P&gt;priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 12:43:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285405#M153783</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T12:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: how to use 'open dataset' command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285406#M153784</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;&amp;lt;b&amp;gt; OPEN DATASET &amp;lt;file name&amp;gt; FOR {OUTPUT/INPUT/APPENDING}&lt;/P&gt;&lt;P&gt;IN  {TEXT/BINARY} MODE&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET P_UNAME FOR INPUT IN TEXT MODE.&lt;/P&gt;&lt;P&gt;    IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;      CLOSE DATASET P_UNAME.&lt;/P&gt;&lt;P&gt;      DELETE DATASET P_UNAME.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    OPEN DATASET P_UNAME FOR OUTPUT IN TEXT MODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      MESSAGE E039     WITH&lt;/P&gt;&lt;P&gt;       'Message'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT ITAB_OUT.&lt;/P&gt;&lt;P&gt;      PERFORM ZYIR008_TRANSFER_DATASET USING 'C'&lt;/P&gt;&lt;P&gt;                               P_UNAME&lt;/P&gt;&lt;P&gt;                               ITAB_OUT SY-INDEX.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CLOSE DATASET P_UNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 12:43:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285406#M153784</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T12:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: how to use 'open dataset' command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285407#M153785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your reply and forgot to inform you that i have two fields in selection screen&lt;/P&gt;&lt;P&gt;1)file name and&lt;/P&gt;&lt;P&gt;2)file format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it is csv i will save in csv if its is xml i will save in xml.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;based on the second field i will save the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So is it still possible to use the open dataset command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lisa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Lisa Roy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 12:49:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285407#M153785</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T12:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: how to use 'open dataset' command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285408#M153786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: TheFileName(120).&lt;/P&gt;&lt;P&gt;data: theStr(500).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate Field1 '.' Field2 into TheFileName.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;open dataset TheFileName for OUTPUT in text mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;*message here about an OPEN error&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at SomeTable.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Do any business logic here&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  transfer YourData to TheFileName.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;close dataset TheFileName.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't forget those reward points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 12:54:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285408#M153786</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T12:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to use 'open dataset' command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285409#M153787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can use method to create a file and save the data with download..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;follow the below method and FM GUI_DOWNLOAD. Hope it is useful to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD CL_GUI_FRONTEND_SERVICES=&amp;gt;FILE_SAVE_DIALOG&lt;/P&gt;&lt;P&gt;CHANGING&lt;/P&gt;&lt;P&gt;      FILENAME             = LDF_FILENAME&lt;/P&gt;&lt;P&gt;      PATH                 = LDF_PATH&lt;/P&gt;&lt;P&gt;      FULLPATH             = LDF_FULLPATH&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      CNTL_ERROR           = 1&lt;/P&gt;&lt;P&gt;      ERROR_NO_GUI         = 2&lt;/P&gt;&lt;P&gt;      NOT_SUPPORTED_BY_GUI = 3&lt;/P&gt;&lt;P&gt;      OTHERS               = 4.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  BIN_FILESIZE                    =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      FILENAME                        = LDF_FULLPATH&lt;/P&gt;&lt;P&gt;      FILETYPE                        = 'DAT'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  APPEND                          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WRITE_FIELD_SEPARATOR           = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  HEADER                          = ''&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TRUNC_TRAILING_BLANKS           = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WRITE_LF                        = ''&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  COL_SELECT                      = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  COL_SELECT_MASK                 = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DAT_MODE                        = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CONFIRM_OVERWRITE               = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_AUTH_CHECK                   = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CODEPAGE                        = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  IGNORE_CERR                     = &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  REPLACEMENT                     = ''&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WRITE_BOM                       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TRUNC_TRAILING_BLANKS_EOL       = ''&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WK1_N_FORMAT                    = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WK1_N_SIZE                      = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WK1_T_FORMAT                    = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WK1_T_SIZE                      = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FILELENGTH                      =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      DATA_TAB                        = GDT_DL&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FIELDNAMES                      =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;P&gt;     FILE_WRITE_ERROR                = 1&lt;/P&gt;&lt;P&gt;     NO_BATCH                        = 2&lt;/P&gt;&lt;P&gt;     GUI_REFUSE_FILETRANSFER         = 3&lt;/P&gt;&lt;P&gt;     INVALID_TYPE                    = 4&lt;/P&gt;&lt;P&gt;     NO_AUTHORITY                    = 5&lt;/P&gt;&lt;P&gt;     UNKNOWN_ERROR                   = 6&lt;/P&gt;&lt;P&gt;     HEADER_NOT_ALLOWED              = 7&lt;/P&gt;&lt;P&gt;     SEPARATOR_NOT_ALLOWED           = 8&lt;/P&gt;&lt;P&gt;     FILESIZE_NOT_ALLOWED            = 9&lt;/P&gt;&lt;P&gt;     HEADER_TOO_LONG                 = 10&lt;/P&gt;&lt;P&gt;     DP_ERROR_CREATE                 = 11&lt;/P&gt;&lt;P&gt;     DP_ERROR_SEND                   = 12&lt;/P&gt;&lt;P&gt;     DP_ERROR_WRITE                  = 13&lt;/P&gt;&lt;P&gt;     UNKNOWN_DP_ERROR                = 14&lt;/P&gt;&lt;P&gt;     ACCESS_DENIED                   = 15&lt;/P&gt;&lt;P&gt;     DP_OUT_OF_MEMORY                = 16&lt;/P&gt;&lt;P&gt;     DISK_FULL                       = 17&lt;/P&gt;&lt;P&gt;     DP_TIMEOUT                      = 18&lt;/P&gt;&lt;P&gt;     FILE_NOT_FOUND                  = 19&lt;/P&gt;&lt;P&gt;     DATAPROVIDER_EXCEPTION          = 20&lt;/P&gt;&lt;P&gt;     CONTROL_FLUSH_ERROR             = 21&lt;/P&gt;&lt;P&gt;     OTHERS                          = 22.&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;-Rakesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 13:08:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285409#M153787</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T13:08:47Z</dc:date>
    </item>
    <item>
      <title>Re: how to use 'open dataset' command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285410#M153788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lisa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your question has been answered, please reward points accordingly and close the thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not, please provide more detail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 13:29:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285410#M153788</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T13:29:45Z</dc:date>
    </item>
    <item>
      <title>Re: how to use 'open dataset' command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285411#M153789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please look into my above message so that you can understand my requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lisa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 13:51:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285411#M153789</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T13:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: how to use 'open dataset' command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285412#M153790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lisa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry... I see it now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use something like this and my code to LOOP thru I_OUT to create the output file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT Zsandbox_prog .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type-pools: truxs .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of i_in occurs 0,&lt;/P&gt;&lt;P&gt;        Field1(20),&lt;/P&gt;&lt;P&gt;        Field2(20),&lt;/P&gt;&lt;P&gt;        Field3(20),&lt;/P&gt;&lt;P&gt;        Field4(20),&lt;/P&gt;&lt;P&gt;        Field5(20),&lt;/P&gt;&lt;P&gt;      end of i_in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: i_out type TRUXS_T_TEXT_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move 'Line 1 - Field 1' to i_in-Field1.&lt;/P&gt;&lt;P&gt;move 'Line 1 - Field 2' to i_in-Field2.&lt;/P&gt;&lt;P&gt;move 'Line 1 - Field 3' to i_in-Field3.&lt;/P&gt;&lt;P&gt;move 'Line 1 - Field 4' to i_in-Field4.&lt;/P&gt;&lt;P&gt;move 'Line 1 - Field 5' to i_in-Field5.&lt;/P&gt;&lt;P&gt;append i_in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SAP_CONVERT_TO_CSV_FORMAT'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;   I_FIELD_SEPERATOR          = ','&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_LINE_HEADER              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_FILENAME                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_APPL_KEEP                = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    I_TAB_SAP_DATA             = i_in&lt;/P&gt;&lt;P&gt; CHANGING&lt;/P&gt;&lt;P&gt;   I_TAB_CONVERTED_DATA       = i_out&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   CONVERSION_FAILED          = 1&lt;/P&gt;&lt;P&gt;   OTHERS                     = 2&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 14:04:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285412#M153790</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T14:04:23Z</dc:date>
    </item>
    <item>
      <title>Re: how to use 'open dataset' command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285413#M153791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And for your XML output, use similar logic with Func Mode - SAP_CONVERT_TO_XML_FORMAT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 14:06:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285413#M153791</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T14:06:51Z</dc:date>
    </item>
    <item>
      <title>Re: how to use 'open dataset' command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285414#M153792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nothing more than the idea of John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP_CONVERT_TO_CSV_FORMAT&lt;/P&gt;&lt;P&gt;SAP_CONVERT_TO_TEX_FORMAT&lt;/P&gt;&lt;P&gt;SAP_CONVERT_TO_TXT_FORMAT&lt;/P&gt;&lt;P&gt;SAP_CONVERT_TO_XLS_FORMAT&lt;/P&gt;&lt;P&gt;SAP_CONVERT_TO_XML_FORMAT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgd&lt;/P&gt;&lt;P&gt;Frédéric&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 14:17:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285414#M153792</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2006-04-04T14:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: how to use 'open dataset' command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285415#M153793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lisa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Good to go" ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 14:23:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285415#M153793</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T14:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: how to use 'open dataset' command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285416#M153794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jayaraman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While i am transfering the data th weay which u have specified iam getting an error message that in unicode programe it's not covertable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please tell me what i have to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lisa&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Lisa Roy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2006 09:35:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285416#M153794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-06T09:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to use 'open dataset' command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285417#M153795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lisa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code provided by Jayaraman is very similar to first code example that I provided to you.  It does not meet your CSV and XML requirements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you having problems with the later example that I provided to you?  That will generate CSV and XML output when coded correctly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2006 12:41:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-open-dataset-command/m-p/1285417#M153795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-06T12:41:06Z</dc:date>
    </item>
  </channel>
</rss>

