<?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 Regarding i tab in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-i-tab/m-p/3202402#M763289</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;We need to download an internal table to the Presentation Server(local workstation). Whenever we run the program, the &lt;/P&gt;&lt;P&gt;same file has to be saved as a separate file in sequential order. Ex: 0001.txt, 0002.txt etc. Where can we store the last file &lt;/P&gt;&lt;P&gt;number? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Rachita.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Dec 2007 13:31:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-26T13:31:05Z</dc:date>
    <item>
      <title>Regarding i tab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-i-tab/m-p/3202402#M763289</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;We need to download an internal table to the Presentation Server(local workstation). Whenever we run the program, the &lt;/P&gt;&lt;P&gt;same file has to be saved as a separate file in sequential order. Ex: 0001.txt, 0002.txt etc. Where can we store the last file &lt;/P&gt;&lt;P&gt;number? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Rachita.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2007 13:31:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-i-tab/m-p/3202402#M763289</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-26T13:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding i tab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-i-tab/m-p/3202403#M763290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use these function modules to download&lt;/P&gt;&lt;P&gt;the files and store where ever you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4_FILENAME'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      program_name  = syst-cprog&lt;/P&gt;&lt;P&gt;      dynpro_number = syst-dynnr&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      file_name     = g_fname.&lt;/P&gt;&lt;P&gt;  IF g_fname IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;    p_efile = g_fname.&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;P&gt;FILENAME = 'C:\test.xls'&lt;/P&gt;&lt;P&gt;FILETYPE = 'ASC'&lt;/P&gt;&lt;P&gt;WRITE_FIELD_SEPARATOR = 'X'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;DATA_TAB = itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if usefuol.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2007 13:38:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-i-tab/m-p/3202403#M763290</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-26T13:38:41Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding i tab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-i-tab/m-p/3202404#M763291</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;SAP has a table TVARV for storing the variants. &lt;/P&gt;&lt;P&gt;A record may be created in TVARV for all the programs that require this kind of incremental records. &lt;/P&gt;&lt;P&gt;For Ex: the record could be 100Zmm10001 MM sequence rec where first part consists of client code and the program being &lt;/P&gt;&lt;P&gt;run. Client code is required because TVARV does not has a field for client code. The second part is the description indicating &lt;/P&gt;&lt;P&gt;the purpose what the record is created. This entire string may be posted in the Name field (char - 30). &lt;/P&gt;&lt;P&gt;The Type field ( char- 1) may be populated with P or S (Parameter or Selection) &lt;/P&gt;&lt;P&gt;Low field (char- 45) may be populated with '0001' when run first time and increment it by one in your program for &lt;/P&gt;&lt;P&gt;downloading of the internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward points if found helpful...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Cheers,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Siva Ramakrishna.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2007 13:59:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-i-tab/m-p/3202404#M763291</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-26T13:59:54Z</dc:date>
    </item>
  </channel>
</rss>

