<?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 Outbound Interface in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/outbound-interface/m-p/2480377#M558745</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 am fetching data froM sap system and storing them into an internal table,but to store this data on application server i have to create &amp;lt;b&amp;gt;Header and Trailer&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Can anybody send me any sample code as how to create &amp;lt;b&amp;gt;header&amp;lt;/b&amp;gt; and &amp;lt;b&amp;gt;trailer&amp;lt;/b&amp;gt; record for an outbound interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reply soon&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ANIL RAINA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Jun 2007 06:23:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-29T06:23:13Z</dc:date>
    <item>
      <title>Outbound Interface</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/outbound-interface/m-p/2480377#M558745</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 am fetching data froM sap system and storing them into an internal table,but to store this data on application server i have to create &amp;lt;b&amp;gt;Header and Trailer&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Can anybody send me any sample code as how to create &amp;lt;b&amp;gt;header&amp;lt;/b&amp;gt; and &amp;lt;b&amp;gt;trailer&amp;lt;/b&amp;gt; record for an outbound interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reply soon&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ANIL RAINA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2007 06:23:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/outbound-interface/m-p/2480377#M558745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-29T06:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: Outbound Interface</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/outbound-interface/m-p/2480378#M558746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi create a variable of type l_v_filename_temp  TYPE draw-filep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    OPEN DATASET l_v_filename_temp FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create work areas withe required data&lt;/P&gt;&lt;P&gt;l_wa_header   TYPE ty_header,  "table for header data&lt;/P&gt;&lt;P&gt;         l_wa_record   TYPE ty_record.  "table for record data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pass the data  to these structures.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for header only once  fill header workk area and pass it&lt;/P&gt;&lt;P&gt;TRANSFER l_wa_header TO l_v_filename_temp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop the item record table and pass the data to the structure&lt;/P&gt;&lt;P&gt;l_wa_record   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the loop keep on transfering to&lt;/P&gt;&lt;P&gt;TRANSFER l_wa_record TO l_v_filename_temp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you wnat to send soem trailer datta use the same method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and at the end&lt;/P&gt;&lt;P&gt;CLOSE DATASET l_v_filename_temp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you have any doubts reply me back.&lt;/P&gt;&lt;P&gt;Reward points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2007 06:39:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/outbound-interface/m-p/2480378#M558746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-29T06:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: Outbound Interface</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/outbound-interface/m-p/2480379#M558747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Header &amp;amp; Trailer records are nothing but the columns need to be appended in the starting and end of the downloadng internal table.&lt;/P&gt;&lt;P&gt;There formats depend on the client requirement so check the formats with the existing sample files or the functional consultant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward all helpful replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2007 06:40:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/outbound-interface/m-p/2480379#M558747</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2007-06-29T06:40:49Z</dc:date>
    </item>
    <item>
      <title>Re: Outbound Interface</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/outbound-interface/m-p/2480380#M558748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks guys u people gave me an exact idea hw to approach the interface............&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;one more thing i want to ask is the method of placing data in application server -&lt;/P&gt;&lt;HR originaltext="------" /&gt;&lt;P&gt; is &amp;lt;b&amp;gt;OPEN DATASET&amp;lt;/b&amp;gt;. as written by &amp;lt;b&amp;gt;sasidhar&amp;lt;/b&amp;gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then where does &amp;lt;b&amp;gt;FTP&amp;lt;/b&amp;gt; COME INTO EXISTENCE....................&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CAN I TRANSFER DAT USING FTP ALSO TO APPLICATION SERVER.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2007 11:07:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/outbound-interface/m-p/2480380#M558748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-29T11:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: Outbound Interface</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/outbound-interface/m-p/2480381#M558749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Normally FTP is used to get data from other systems.Here there is no need of this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2007 12:01:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/outbound-interface/m-p/2480381#M558749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-29T12:01:47Z</dc:date>
    </item>
  </channel>
</rss>

