<?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 BACK GROUND FILE CREATION in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-ground-file-creation/m-p/3435863#M825141</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IF SY-BATCH = ' X'&lt;/P&gt;&lt;P&gt;IF NOT i_down[] IS INITIAL.&lt;/P&gt;&lt;P&gt;        OPEN DATASET p_pf_01 FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.&lt;/P&gt;&lt;P&gt;        LOOP AT i_down.&lt;/P&gt;&lt;P&gt;          v_down-co_name = i_down-co_name.&lt;/P&gt;&lt;P&gt;          v_down-plant   = i_down-plant.&lt;/P&gt;&lt;P&gt;          v_down-d_adr   = i_down-d_adr.&lt;/P&gt;&lt;P&gt;          v_down-matnr   = i_down-matnr.&lt;/P&gt;&lt;P&gt;          v_down-maktx   = i_down-maktx.&lt;/P&gt;&lt;P&gt;          v_down-mat_typ = i_down-mat_typ.&lt;/P&gt;&lt;P&gt;          v_down-str_loc = i_down-str_loc.&lt;/P&gt;&lt;P&gt;          v_down-d_sotxt = i_down-d_sotxt.&lt;/P&gt;&lt;P&gt;          v_down-lifnr   = i_down-lifnr.&lt;/P&gt;&lt;P&gt;          v_down-name1   = i_down-name1.&lt;/P&gt;&lt;P&gt;          v_down-kunnr   = i_down-kunnr.&lt;/P&gt;&lt;P&gt;          v_down-pspnr   = i_down-pspnr.&lt;/P&gt;&lt;P&gt;          v_down-vbeln   = i_down-vbeln.&lt;/P&gt;&lt;P&gt;          v_down-posnr   = i_down-posnr.&lt;/P&gt;&lt;P&gt;          v_down-d_taxid = i_down-d_taxid.&lt;/P&gt;&lt;P&gt;          v_down-meins   = i_down-meins.&lt;/P&gt;&lt;P&gt;          v_down-budat   = i_down-budat.&lt;/P&gt;&lt;P&gt;          v_down-xblnr   = i_down-xblnr.&lt;/P&gt;&lt;P&gt;          v_down-rmenge  = i_down-rmenge.&lt;/P&gt;&lt;P&gt;          v_down-imenge  = i_down-imenge.&lt;/P&gt;&lt;P&gt;          v_down-bwart   = i_down-bwart.&lt;/P&gt;&lt;P&gt;          v_down-bmenge  = i_down-bmenge.&lt;/P&gt;&lt;P&gt;          v_down-mblnr   = i_down-mblnr.&lt;/P&gt;&lt;P&gt;          v_down-remak   = i_down-remak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          CONCATENATE  v_down-co_name&lt;/P&gt;&lt;P&gt;                       v_down-plant&lt;/P&gt;&lt;P&gt;                       v_down-d_adr&lt;/P&gt;&lt;P&gt;                       v_down-matnr&lt;/P&gt;&lt;P&gt;                       v_down-maktx&lt;/P&gt;&lt;P&gt;                       v_down-mat_typ&lt;/P&gt;&lt;P&gt;                       v_down-str_loc&lt;/P&gt;&lt;P&gt;                       v_down-d_sotxt&lt;/P&gt;&lt;P&gt;                       v_down-lifnr&lt;/P&gt;&lt;P&gt;                       v_down-name1&lt;/P&gt;&lt;P&gt;                       v_down-kunnr&lt;/P&gt;&lt;P&gt;                       v_down-pspnr&lt;/P&gt;&lt;P&gt;                       v_down-vbeln&lt;/P&gt;&lt;P&gt;                       v_down-posnr&lt;/P&gt;&lt;P&gt;                       v_down-d_taxid&lt;/P&gt;&lt;P&gt;                       v_down-meins&lt;/P&gt;&lt;P&gt;                       v_down-budat&lt;/P&gt;&lt;P&gt;                       v_down-xblnr&lt;/P&gt;&lt;P&gt;                       v_down-rmenge&lt;/P&gt;&lt;P&gt;                       v_down-imenge&lt;/P&gt;&lt;P&gt;                       v_down-bwart&lt;/P&gt;&lt;P&gt;                       v_down-bmenge&lt;/P&gt;&lt;P&gt;                       v_down-mblnr&lt;/P&gt;&lt;P&gt;                       v_down-remak&lt;/P&gt;&lt;P&gt;                 INTO&lt;/P&gt;&lt;P&gt;                     i_csv_file-csv_record&lt;/P&gt;&lt;P&gt;                 SEPARATED BY c_coma.&lt;/P&gt;&lt;P&gt;          IF p_pf_01 IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;            TRANSFER i_csv_file-csv_record TO p_pf_01.&lt;/P&gt;&lt;P&gt;            IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;              l_flag1 = 'X'.&lt;/P&gt;&lt;P&gt;            ENDIF.&lt;/P&gt;&lt;P&gt;          ELSE.&lt;/P&gt;&lt;P&gt;            MESSAGE s045(zz) WITH text-039.&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;P&gt;        ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        CLOSE DATASET p_pf_01.     &lt;/P&gt;&lt;P&gt;ENDUIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i execute that Logic in Back Ground , i am not getting file in APP server&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could any one help on this pls&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Feb 2008 11:20:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-14T11:20:03Z</dc:date>
    <item>
      <title>BACK GROUND FILE CREATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-ground-file-creation/m-p/3435863#M825141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IF SY-BATCH = ' X'&lt;/P&gt;&lt;P&gt;IF NOT i_down[] IS INITIAL.&lt;/P&gt;&lt;P&gt;        OPEN DATASET p_pf_01 FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.&lt;/P&gt;&lt;P&gt;        LOOP AT i_down.&lt;/P&gt;&lt;P&gt;          v_down-co_name = i_down-co_name.&lt;/P&gt;&lt;P&gt;          v_down-plant   = i_down-plant.&lt;/P&gt;&lt;P&gt;          v_down-d_adr   = i_down-d_adr.&lt;/P&gt;&lt;P&gt;          v_down-matnr   = i_down-matnr.&lt;/P&gt;&lt;P&gt;          v_down-maktx   = i_down-maktx.&lt;/P&gt;&lt;P&gt;          v_down-mat_typ = i_down-mat_typ.&lt;/P&gt;&lt;P&gt;          v_down-str_loc = i_down-str_loc.&lt;/P&gt;&lt;P&gt;          v_down-d_sotxt = i_down-d_sotxt.&lt;/P&gt;&lt;P&gt;          v_down-lifnr   = i_down-lifnr.&lt;/P&gt;&lt;P&gt;          v_down-name1   = i_down-name1.&lt;/P&gt;&lt;P&gt;          v_down-kunnr   = i_down-kunnr.&lt;/P&gt;&lt;P&gt;          v_down-pspnr   = i_down-pspnr.&lt;/P&gt;&lt;P&gt;          v_down-vbeln   = i_down-vbeln.&lt;/P&gt;&lt;P&gt;          v_down-posnr   = i_down-posnr.&lt;/P&gt;&lt;P&gt;          v_down-d_taxid = i_down-d_taxid.&lt;/P&gt;&lt;P&gt;          v_down-meins   = i_down-meins.&lt;/P&gt;&lt;P&gt;          v_down-budat   = i_down-budat.&lt;/P&gt;&lt;P&gt;          v_down-xblnr   = i_down-xblnr.&lt;/P&gt;&lt;P&gt;          v_down-rmenge  = i_down-rmenge.&lt;/P&gt;&lt;P&gt;          v_down-imenge  = i_down-imenge.&lt;/P&gt;&lt;P&gt;          v_down-bwart   = i_down-bwart.&lt;/P&gt;&lt;P&gt;          v_down-bmenge  = i_down-bmenge.&lt;/P&gt;&lt;P&gt;          v_down-mblnr   = i_down-mblnr.&lt;/P&gt;&lt;P&gt;          v_down-remak   = i_down-remak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          CONCATENATE  v_down-co_name&lt;/P&gt;&lt;P&gt;                       v_down-plant&lt;/P&gt;&lt;P&gt;                       v_down-d_adr&lt;/P&gt;&lt;P&gt;                       v_down-matnr&lt;/P&gt;&lt;P&gt;                       v_down-maktx&lt;/P&gt;&lt;P&gt;                       v_down-mat_typ&lt;/P&gt;&lt;P&gt;                       v_down-str_loc&lt;/P&gt;&lt;P&gt;                       v_down-d_sotxt&lt;/P&gt;&lt;P&gt;                       v_down-lifnr&lt;/P&gt;&lt;P&gt;                       v_down-name1&lt;/P&gt;&lt;P&gt;                       v_down-kunnr&lt;/P&gt;&lt;P&gt;                       v_down-pspnr&lt;/P&gt;&lt;P&gt;                       v_down-vbeln&lt;/P&gt;&lt;P&gt;                       v_down-posnr&lt;/P&gt;&lt;P&gt;                       v_down-d_taxid&lt;/P&gt;&lt;P&gt;                       v_down-meins&lt;/P&gt;&lt;P&gt;                       v_down-budat&lt;/P&gt;&lt;P&gt;                       v_down-xblnr&lt;/P&gt;&lt;P&gt;                       v_down-rmenge&lt;/P&gt;&lt;P&gt;                       v_down-imenge&lt;/P&gt;&lt;P&gt;                       v_down-bwart&lt;/P&gt;&lt;P&gt;                       v_down-bmenge&lt;/P&gt;&lt;P&gt;                       v_down-mblnr&lt;/P&gt;&lt;P&gt;                       v_down-remak&lt;/P&gt;&lt;P&gt;                 INTO&lt;/P&gt;&lt;P&gt;                     i_csv_file-csv_record&lt;/P&gt;&lt;P&gt;                 SEPARATED BY c_coma.&lt;/P&gt;&lt;P&gt;          IF p_pf_01 IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;            TRANSFER i_csv_file-csv_record TO p_pf_01.&lt;/P&gt;&lt;P&gt;            IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;              l_flag1 = 'X'.&lt;/P&gt;&lt;P&gt;            ENDIF.&lt;/P&gt;&lt;P&gt;          ELSE.&lt;/P&gt;&lt;P&gt;            MESSAGE s045(zz) WITH text-039.&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;P&gt;        ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        CLOSE DATASET p_pf_01.     &lt;/P&gt;&lt;P&gt;ENDUIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i execute that Logic in Back Ground , i am not getting file in APP server&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could any one help on this pls&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2008 11:20:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-ground-file-creation/m-p/3435863#M825141</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-14T11:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: BACK GROUND FILE CREATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-ground-file-creation/m-p/3435864#M825142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Are you giving any value to field  p_pf_01 or not? May this field is used for Presentation server file.&lt;/P&gt;&lt;P&gt;Put a break-point at Open Dataset statement and debug.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ashok&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2008 14:52:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-ground-file-creation/m-p/3435864#M825142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-14T14:52:25Z</dc:date>
    </item>
  </channel>
</rss>

