<?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 using file concept in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/outbound-interface-using-file-concept/m-p/2994152#M707244</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    Please send me example program for transfering data through application server.&lt;/P&gt;&lt;P&gt;ex: open dataset file for output or input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Ali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Oct 2007 10:26:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-25T10:26:15Z</dc:date>
    <item>
      <title>outbound interface using file concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/outbound-interface-using-file-concept/m-p/2994152#M707244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    Please send me example program for transfering data through application server.&lt;/P&gt;&lt;P&gt;ex: open dataset file for output or input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Ali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 10:26:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/outbound-interface-using-file-concept/m-p/2994152#M707244</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-25T10:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: outbound interface using file concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/outbound-interface-using-file-concept/m-p/2994153#M707245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this the type of thing you mean?  A "real" version would need validations etc, but it should give you the idea of what might be needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;report zlocal_jc_sdn_extract_to_file.                                                                                
parameters:                                                            
  p_fname            like rlgrap-filename obligatory.                                                                                
start-of-selection.                                                    
  perform create_extract.                                                                                
*---------------------------------------------------------------------
* form create_extract.                                                   
*---------------------------------------------------------------------
form create_extract.                                                                                
data:                                                                
    l_text                   like sy-ucomm,                            
    begin of ls_data,                                                  
      matnr                  like makt-matnr,                          
      maktx                  like makt-maktx,                          
    end of ls_data,                                                    
    lt_data                  like ls_data occurs 100.                                                                                
select matnr maktx into corresponding fields of table lt_data        
    from makt                                                          
    where spras = sy-langu.                                                                                
if lt_data[] is initial.                                              
    exit.                                                               
  endif.                                                                                
open dataset p_fname for output in text mode. "encoding default.                                                                                
l_text = 'This is a header'.                                          
  transfer l_text to p_fname.                                                                                
loop at lt_data into ls_data.                                         
    transfer ls_data to p_fname.                                        
  endloop.                                                                                
l_text = 'This is a footer'.                                          
  transfer l_text to p_fname.                                                                                
close dataset p_fname.                                                                                
endform.                                                               &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 01:21:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/outbound-interface-using-file-concept/m-p/2994153#M707245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-26T01:21:22Z</dc:date>
    </item>
  </channel>
</rss>

