<?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: GUI_DOWNLOAD fn module text allignment problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-download-fn-module-text-allignment-problem/m-p/6710068#M1453654</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It didnt solve my problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: sriharshachelle on Mar 7, 2010 4:20 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 07 Mar 2010 10:35:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-03-07T10:35:56Z</dc:date>
    <item>
      <title>GUI_DOWNLOAD fn module text allignment problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-download-fn-module-text-allignment-problem/m-p/6710066#M1453652</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 a problem while downloading data from internal table to presentation server filepath using GUI_DOWNLOAD fn module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For me the requirement is to display each field data at a fixed location in a DAT file (notepad) for all lines irrespective of any delimiter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now data of ech field is getting displayed continuously after its preceeding field with the specified delimiter. I want to fix the location of each field at a particular point for all lines in the file after download.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any other fn module for this or any change in the parameters for fixing the field positions in the output file ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Harsha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Mar 2010 08:16:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-download-fn-module-text-allignment-problem/m-p/6710066#M1453652</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-07T08:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_DOWNLOAD fn module text allignment problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-download-fn-module-text-allignment-problem/m-p/6710067#M1453653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: tab TYPE c   VALUE cl_abap_char_utilities=&amp;gt;horizontal_tab.
CALL FUNCTION 'GUI_DOWNLOAD'
  EXPORTING
    filename              = p_file  
    filetype              = 'ASC'
    write_field_separator = tab         
  TABLES
    data_tab              = it_table.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Mar 2010 08:33:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-download-fn-module-text-allignment-problem/m-p/6710067#M1453653</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2010-03-07T08:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_DOWNLOAD fn module text allignment problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-download-fn-module-text-allignment-problem/m-p/6710068#M1453654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It didnt solve my problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: sriharshachelle on Mar 7, 2010 4:20 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Mar 2010 10:35:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-download-fn-module-text-allignment-problem/m-p/6710068#M1453654</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-07T10:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_DOWNLOAD fn module text allignment problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-download-fn-module-text-allignment-problem/m-p/6710069#M1453655</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;Take an internal table with a single field of type string. Concatenate all your values into a wa of same type seperated by cl_abap_char_utilities=&amp;gt;horizontal_tab and append to new itab. Now download this itab. It should work fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Mar 2010 13:06:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-download-fn-module-text-allignment-problem/m-p/6710069#M1453655</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2010-03-07T13:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_DOWNLOAD fn module text allignment problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-download-fn-module-text-allignment-problem/m-p/6710070#M1453656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinod&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried your way solution also. Still my problem is not solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Present Output:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;test test	E12EDWQD	0000110.000&lt;/P&gt;&lt;P&gt;venky kirupa test case- final se	87549-8655-9	0000110.000&lt;/P&gt;&lt;P&gt;Vetri Velan	SAFETWT	0000961.540&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amount fieilds(last field) of each line  need to be alligned one below the other starting from same position in all lines. At present its all random based on the length of previous field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Harsha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Mar 2010 14:07:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-download-fn-module-text-allignment-problem/m-p/6710070#M1453656</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-07T14:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_DOWNLOAD fn module text allignment problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-download-fn-module-text-allignment-problem/m-p/6710071#M1453657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You just have to create an internal table with character-like fields of the lengths you want. For each line you may use CONCATENATE field1 field2 field3 etc. INTO line RESPECTING BLANKS (valid from 7.0), and append it to a table of strings. Note: RESPECTING BLANKS do not remove any blanks. Then download the table of strings using GUI_DOWNLOAD (no separator).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Mar 2010 15:33:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-download-fn-module-text-allignment-problem/m-p/6710071#M1453657</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2010-03-07T15:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_DOWNLOAD fn module text allignment problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-download-fn-module-text-allignment-problem/m-p/6710072#M1453658</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;Currency and quantity fields are always right aligned. So take character variable. Move currency/quantity field data to this character variable and CONDENSE. Now while concatenation, take these character variables instead of taking from your final table work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Mar 2010 15:58:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-download-fn-module-text-allignment-problem/m-p/6710072#M1453658</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2010-03-07T15:58:39Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_DOWNLOAD fn module text allignment problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-download-fn-module-text-allignment-problem/m-p/6710073#M1453659</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;&lt;/P&gt;&lt;P&gt;THank you. Your solution solved my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Harsha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Mar 2010 10:01:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-download-fn-module-text-allignment-problem/m-p/6710073#M1453659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-08T10:01:18Z</dc:date>
    </item>
  </channel>
</rss>

