<?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: File storage on the Application Server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434132#M1647852</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so what is the user doing? changing the billing document and saving .. right? this case why does he have to print again? the output by itself will take care of the print.. if your scenario is not this(explain a bit about what he is going exactly), then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for VF02 you need to restrict the output if the billing document is not changed. you need to create a VOFM routine and attach it to the output in nace. inside this routine you need to compare the runtime values with database values. if these are same then keep sy-subrc =4. the output will be ignored in this case.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Jan 2012 05:44:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-01-10T05:44:37Z</dc:date>
    <item>
      <title>File storage on the Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434123#M1647843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to transfer the a file to the application server . I have noticed a peculiar behavior , &lt;/P&gt;&lt;P&gt;when i try to send the Invoice to the application server using the Normal  route VF03 and print it , it goes thru fine but when i try to do the same using VF02 , i can see that the each invoice is doubled( stores 2 times).  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can't figure out why?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with rgds&lt;/P&gt;&lt;P&gt;Ranjith Singh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2012 09:05:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434123#M1647843</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-09T09:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: File storage on the Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434124#M1647844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how are you saving the file to app server?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2012 09:14:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434124#M1647844</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-09T09:14:19Z</dc:date>
    </item>
    <item>
      <title>Re: File storage on the Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434125#M1647845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using the below code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE '/abc/test/' NAST-PARNR '_'&lt;/P&gt;&lt;P&gt;                         xxxxxx '_' SY-DATUM '_' SY-UZEIT '.pdf'&lt;/P&gt;&lt;P&gt;                         INTO LV_FILE1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Convert to xstring&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  LOOP AT OUT_TAB INTO LS_PDF.&lt;/P&gt;&lt;P&gt;    ASSIGN LS_PDF TO &amp;lt;X&amp;gt; CASTING TYPE X.&lt;/P&gt;&lt;P&gt;    CONCATENATE LV_PDF &amp;lt;X&amp;gt; INTO LV_PDF IN BYTE MODE.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; TRANSLATE LV_FILE1 TO LOWER CASE.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  OPEN DATASET LV_FILE1 FOR OUTPUT IN BINARY MODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LV_PDF = LV_PDF+0(BYTECOUNT).&lt;/P&gt;&lt;P&gt;  TRANSFER LV_PDF TO LV_FILE1.&lt;/P&gt;&lt;P&gt;  CLOSE DATASET LV_FILE1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2012 09:34:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434125#M1647845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-09T09:34:28Z</dc:date>
    </item>
    <item>
      <title>Re: File storage on the Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434126#M1647846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;and where are u calling the code from?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2012 09:59:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434126#M1647846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-09T09:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: File storage on the Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434127#M1647847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is being called in the Print Driver program for the defined O/P type.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2012 10:07:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434127#M1647847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-09T10:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: File storage on the Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434128#M1647848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in VF02 you are creating a new output message or just clicking issue output to?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see, in VF02 if you are saving the billing document, its possible that the output is repeating. you need to restrict the output not triggering in that case... so 1 for new output message and another is your issue output to functionality&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or in VF02, just use issue output to. that would do..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2012 10:29:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434128#M1647848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-09T10:29:12Z</dc:date>
    </item>
    <item>
      <title>Re: File storage on the Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434129#M1647849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check if on change you are also triggering the output and via config of condition records also the output is getting triggered...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Secondly after output has been triggered in vf02 check in Message log do you see one output type or two output types getting triggered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nabheet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2012 10:55:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434129#M1647849</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2012-01-09T10:55:10Z</dc:date>
    </item>
    <item>
      <title>Re: File storage on the Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434130#M1647850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Soumyaprakash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What u said is true , o/p is repeating. &lt;/P&gt;&lt;P&gt;But the user is not ready send the file via  VF03 print o/p.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2012 05:19:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434130#M1647850</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-10T05:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: File storage on the Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434131#M1647851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to create a VOFM routine to restrict your output type from triggering.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nabheet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2012 05:21:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434131#M1647851</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2012-01-10T05:21:30Z</dc:date>
    </item>
    <item>
      <title>Re: File storage on the Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434132#M1647852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so what is the user doing? changing the billing document and saving .. right? this case why does he have to print again? the output by itself will take care of the print.. if your scenario is not this(explain a bit about what he is going exactly), then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for VF02 you need to restrict the output if the billing document is not changed. you need to create a VOFM routine and attach it to the output in nace. inside this routine you need to compare the runtime values with database values. if these are same then keep sy-subrc =4. the output will be ignored in this case.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2012 05:44:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434132#M1647852</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-10T05:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: File storage on the Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434133#M1647853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear both,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx for the support. I have found out the problem. The problem was with the Include "RVADOPFO" every time when user send the file to the application server , the spool generated was being over written. So a statement was to be inserted where in the spool generated never appends to the original one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE : 'X' TO LVS_ITCPO-TDNEWID has to inserted before the   'OPEN_FORM'  CALL FUNCTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with rgds&lt;/P&gt;&lt;P&gt;Ranjith Singh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2012 06:18:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-storage-on-the-application-server/m-p/8434133#M1647853</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-10T06:18:07Z</dc:date>
    </item>
  </channel>
</rss>

