<?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: Vertical lines in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/vertical-lines/m-p/1198678#M130517</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;why can't you down load the itab to .xls format.&lt;/P&gt;&lt;P&gt;this will give you what ever you need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Jan 2006 06:22:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-05T06:22:53Z</dc:date>
    <item>
      <title>Vertical lines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/vertical-lines/m-p/1198675#M130514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;frnds,&lt;/P&gt;&lt;P&gt; im downloading an internal table to a file(txt file )using the function module "gui_download". i want to have vertical lines between the columns... any suggestions ?&lt;/P&gt;&lt;P&gt; points assured...&lt;/P&gt;&lt;P&gt;madan.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jan 2006 06:11:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/vertical-lines/m-p/1198675#M130514</guid>
      <dc:creator>madan_ullasa</dc:creator>
      <dc:date>2006-01-05T06:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: Vertical lines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/vertical-lines/m-p/1198676#M130515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;one option may be u can concatenate | after each field of internal table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jan 2006 06:13:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/vertical-lines/m-p/1198676#M130515</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-05T06:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: Vertical lines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/vertical-lines/m-p/1198677#M130516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the column will have varying length values. It wud not be a vertical line.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jan 2006 06:15:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/vertical-lines/m-p/1198677#M130516</guid>
      <dc:creator>madan_ullasa</dc:creator>
      <dc:date>2006-01-05T06:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: Vertical lines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/vertical-lines/m-p/1198678#M130517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;why can't you down load the itab to .xls format.&lt;/P&gt;&lt;P&gt;this will give you what ever you need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jan 2006 06:22:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/vertical-lines/m-p/1198678#M130517</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-05T06:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: Vertical lines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/vertical-lines/m-p/1198679#M130518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess your internal table (itab1) has a structure like this:&lt;/P&gt;&lt;P&gt; | ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This can be done as follows:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: itab2(1024) TYPE c OCCURS 0,
      string      LIKE LINE OF itab2.
[...]
LOOP AT itab1.
  CONCATENATE itab1-field1
              itab1-field2
              itab2-field3
    INTO string
    SEPARATED by '|'.
  APPEND string TO itab2.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After this you have to call GUI_DOWNLOAD with DATA_TAB = itab2.&lt;/P&gt;&lt;P&gt;That´s it!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--MIKE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jan 2006 08:21:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/vertical-lines/m-p/1198679#M130518</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-05T08:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: Vertical lines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/vertical-lines/m-p/1198680#M130519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. It seems that this separator | functionality&lt;/P&gt;&lt;P&gt;   u may require in other programs also&lt;/P&gt;&lt;P&gt;   with other internal tables, in near future.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Hence, one way (which i tried and works fantastic - Just as u want)&lt;/P&gt;&lt;P&gt;    is to &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;   a) COPY the fm GUI_DOWNLOAD  to some ZAB_GUI_DOWNLOAD&lt;/P&gt;&lt;P&gt;      Do it thru SE80&lt;/P&gt;&lt;P&gt;      First Copy the Function Group SFES To some ZSFES&lt;/P&gt;&lt;P&gt;      Then the system will ask to copy Function Modules.&lt;/P&gt;&lt;P&gt;      At That time just Select For Copying GUI_DOWNLOAD  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   b) Activate The Whole Function Group ZSFES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   c) In the Code Search For (Select radiobutton Main Program)&lt;/P&gt;&lt;P&gt;      horizontal_tab&lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;P&gt;   d) After Searching, comment the line, and do AS :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   prc_tab_string = cl_abap_char_utilities=&amp;gt;horizontal_tab.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          prc_tab_string = '|'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       Note : Here | can also be given as some IMPORT PARAMETER&lt;/P&gt;&lt;P&gt;              For FLEXIBILITY Purpose in future if required.&lt;/P&gt;&lt;P&gt;              For this, definitly, we need add one more parameter &lt;/P&gt;&lt;P&gt;              in IMPORT for achieving this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   e) ACTIVATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Now in your program while calling the FM ZAB_GUI_DOWNLOAD&lt;/P&gt;&lt;P&gt;   pass parameter :&lt;/P&gt;&lt;P&gt;   WRITE_FIELD_SEPARATOR           = 'X'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. It will work fantastic.&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>Thu, 05 Jan 2006 09:21:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/vertical-lines/m-p/1198680#M130519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-05T09:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: Vertical lines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/vertical-lines/m-p/1198681#M130520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data:begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;     fld(8),&lt;/P&gt;&lt;P&gt;     fld2(8),     &lt;/P&gt;&lt;P&gt;     end of itab.&lt;/P&gt;&lt;P&gt;data:begin of itab2 occurs 0,&lt;/P&gt;&lt;P&gt;     string tpe string,&lt;/P&gt;&lt;P&gt;     end of itab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;  itab2-string+0(8) = itab-fld.&lt;/P&gt;&lt;P&gt;  itab2-string+8(1) = '|'.&lt;/P&gt;&lt;P&gt;  itab2-string+9(8) = itab-fld2.&lt;/P&gt;&lt;P&gt;  itab2-string+17(1)= '|'.&lt;/P&gt;&lt;P&gt;  append itab2.&lt;/P&gt;&lt;P&gt;  clear itab2.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jan 2006 09:21:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/vertical-lines/m-p/1198681#M130520</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-05T09:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: Vertical lines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/vertical-lines/m-p/1198682#M130521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just use pipe operator '|' as a separator&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jan 2006 09:24:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/vertical-lines/m-p/1198682#M130521</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-05T09:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: Vertical lines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/vertical-lines/m-p/1198683#M130522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Madan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the FM get_component_list &lt;/P&gt;&lt;P&gt;to find No of fields lenghts and type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then U can seperate it as our Gurus specified &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;PAVAN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jan 2006 09:31:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/vertical-lines/m-p/1198683#M130522</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-05T09:31:14Z</dc:date>
    </item>
  </channel>
</rss>

