<?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 create in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-create/m-p/2299288#M502368</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the condition failed then collect the error record in another internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to create the error file in thepresentation server then download that table in to presentation server by the following function module:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        filename                = l_ofile1
        filetype                = 'ASC'
      TABLES
        data_tab                = p_local_table
      EXCEPTIONS
        file_write_error        = 1
        no_batch                = 2
        gui_refuse_filetransfer = 3
        invalid_type            = 4
        no_authority            = 5
        unknown_error           = 6
        header_not_allowed      = 7
        separator_not_allowed   = 8
        filesize_not_allowed    = 9
        header_too_long         = 10
        dp_error_create         = 11
        dp_error_send           = 12
        dp_error_write          = 13
        unknown_dp_error        = 14
        access_denied           = 15
        dp_out_of_memory        = 16
        disk_full               = 17
        dp_timeout              = 18
        file_not_found          = 19
        dataprovider_exception  = 20
        control_flush_error     = 21
        OTHERS                  = 22.
    IF sy-subrc &amp;lt;&amp;gt; 0.
      MESSAGE e000 WITH text-036.
    ENDIF.
  ENDIF.
ENDFORM.                    " download_audit_file&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here l_ofile1 is presentation file path and p_local_table is the internal table where you collected the error data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to create the error file in application server then first:&lt;/P&gt;&lt;P&gt;1. Collecet the error records in a internal table.&lt;/P&gt;&lt;P&gt;2. Create a internal table containing only one column as string.]&lt;/P&gt;&lt;P&gt;3. concatenate each records for first internal table and append to the second table]&lt;/P&gt;&lt;P&gt;4. Open a dataset into the application server and write the error records into it.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: l_string TYPE string.
  l_string = p_value_audit.

  CONCATENATE p_level l_string
               INTO wa_local-string SEPARATED BY c_tab.
  APPEND wa_local TO p_locl_tab.
  CLEAR: l_string, wa_local.
    


OPEN DATASET p_path_ofile FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    IF sy-subrc = 0.
      CLEAR: wa_local.
      LOOP AT p_local_table INTO wa_local.
        TRANSFER wa_local TO p_path_ofile.
      ENDLOOP.
      CLOSE DATASET p_path_ofile.
    ELSE.
      MESSAGE e000 WITH text-035.
    ENDIF.


 OPEN DATASET p_path_ofile FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    IF sy-subrc = 0.
      CLEAR: wa_local.
      LOOP AT p_local_table INTO wa_local.
        TRANSFER wa_local TO p_path_ofile.
      ENDLOOP.
      CLOSE DATASET p_path_ofile.
    ELSE.
      MESSAGE e000 WITH text-035.
    ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 May 2007 03:19:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-22T03:19:17Z</dc:date>
    <item>
      <title>file create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-create/m-p/2299283#M502363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello abap gurus,&lt;/P&gt;&lt;P&gt;in my scenario, i have to check if an entry in afield in an itab is less than 0,&lt;/P&gt;&lt;P&gt;i need to write the entire record into an error file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i can check if the field value is less than zero,&lt;/P&gt;&lt;P&gt;but how to create and write in the error log file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 02:55:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-create/m-p/2299283#M502363</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T02:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: file create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-create/m-p/2299284#M502364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sarita,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab and itab_error has same structure --declare both of them same&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab where quantity le 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab_error = itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append itab_error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear itab_error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at itab_error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write : /itab_error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aWARD POINTS IF HELPFUL&lt;/P&gt;&lt;P&gt;Thansk&lt;/P&gt;&lt;P&gt;VENKI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 03:01:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-create/m-p/2299284#M502364</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T03:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: file create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-create/m-p/2299285#M502365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI saritha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can create a z table by refering t100 table and catch that error messages and append it to that z table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u are using call transaction then u should use BDCMSGCOLL Structure to catch the error logs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Need ur reward points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 03:01:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-create/m-p/2299285#M502365</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T03:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: file create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-create/m-p/2299286#M502366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is simple one,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declare one internal table which will have text field..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of i_error occurs 0,&lt;/P&gt;&lt;P&gt;         text(255) type c,&lt;/P&gt;&lt;P&gt;         end of i_error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use describe command for ur internal table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if v_lines = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pass ur values into internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use gui_download FM to download the data into file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not clear what is ur req ,if you need any more information,please let me know&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 03:09:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-create/m-p/2299286#M502366</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T03:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: file create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-create/m-p/2299287#M502367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Save your formatted error messages to internal table and use EXCEL_OLE_STANDARD_DAT to save the error to an excel file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 03:10:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-create/m-p/2299287#M502367</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T03:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: file create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-create/m-p/2299288#M502368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the condition failed then collect the error record in another internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to create the error file in thepresentation server then download that table in to presentation server by the following function module:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        filename                = l_ofile1
        filetype                = 'ASC'
      TABLES
        data_tab                = p_local_table
      EXCEPTIONS
        file_write_error        = 1
        no_batch                = 2
        gui_refuse_filetransfer = 3
        invalid_type            = 4
        no_authority            = 5
        unknown_error           = 6
        header_not_allowed      = 7
        separator_not_allowed   = 8
        filesize_not_allowed    = 9
        header_too_long         = 10
        dp_error_create         = 11
        dp_error_send           = 12
        dp_error_write          = 13
        unknown_dp_error        = 14
        access_denied           = 15
        dp_out_of_memory        = 16
        disk_full               = 17
        dp_timeout              = 18
        file_not_found          = 19
        dataprovider_exception  = 20
        control_flush_error     = 21
        OTHERS                  = 22.
    IF sy-subrc &amp;lt;&amp;gt; 0.
      MESSAGE e000 WITH text-036.
    ENDIF.
  ENDIF.
ENDFORM.                    " download_audit_file&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here l_ofile1 is presentation file path and p_local_table is the internal table where you collected the error data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to create the error file in application server then first:&lt;/P&gt;&lt;P&gt;1. Collecet the error records in a internal table.&lt;/P&gt;&lt;P&gt;2. Create a internal table containing only one column as string.]&lt;/P&gt;&lt;P&gt;3. concatenate each records for first internal table and append to the second table]&lt;/P&gt;&lt;P&gt;4. Open a dataset into the application server and write the error records into it.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: l_string TYPE string.
  l_string = p_value_audit.

  CONCATENATE p_level l_string
               INTO wa_local-string SEPARATED BY c_tab.
  APPEND wa_local TO p_locl_tab.
  CLEAR: l_string, wa_local.
    


OPEN DATASET p_path_ofile FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    IF sy-subrc = 0.
      CLEAR: wa_local.
      LOOP AT p_local_table INTO wa_local.
        TRANSFER wa_local TO p_path_ofile.
      ENDLOOP.
      CLOSE DATASET p_path_ofile.
    ELSE.
      MESSAGE e000 WITH text-035.
    ENDIF.


 OPEN DATASET p_path_ofile FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    IF sy-subrc = 0.
      CLEAR: wa_local.
      LOOP AT p_local_table INTO wa_local.
        TRANSFER wa_local TO p_path_ofile.
      ENDLOOP.
      CLOSE DATASET p_path_ofile.
    ELSE.
      MESSAGE e000 WITH text-035.
    ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 03:19:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-create/m-p/2299288#M502368</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T03:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: file create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-create/m-p/2299289#M502369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you very much for  all of your responses.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my scenario, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have to write scentences, that so and so field has so and so error.&lt;/P&gt;&lt;P&gt;in the second line , i should display, the error record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think seshu is near to solution for this, but, &lt;/P&gt;&lt;P&gt;i didnot understand many thing in your solution, what is describe and all,&lt;/P&gt;&lt;P&gt;can u be more clear plz.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 03:20:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-create/m-p/2299289#M502369</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T03:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: file create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-create/m-p/2299290#M502370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks abhishek.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 03:22:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-create/m-p/2299290#M502370</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T03:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: file create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-create/m-p/2299291#M502371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;see the example to update custom tables and if any error then it will display report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Program    : ZFFII002 (Load 821 Freight Charge Information)&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Type       : Update&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Author     : Seshu Maramreddy&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Date       : 05/02/2005&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Transport  : DV3K919411&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Transaction: None&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Description: This program will upload the data into&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;             ZFREIGHT table from Flat file&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZFFII002 LINE-SIZE 90&lt;/P&gt;&lt;P&gt;                LINE-COUNT 40&lt;/P&gt;&lt;P&gt;                no standard page heading.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Tables&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;tables : zfreight. " Freight Charge data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Constants&lt;/P&gt;&lt;P&gt;Constants : c_x(1) type c value 'X',&lt;/P&gt;&lt;P&gt;            TAB TYPE X VALUE '09'. " Delimter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Variables&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;data : flag_error type c . " Flag variable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Internal tables&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Internal table for zfreight&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;data : t_zfreight like zfreight occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Internal table for Flat file&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;data : begin of t_text occurs 0,&lt;/P&gt;&lt;P&gt;       text(1024) type c,&lt;/P&gt;&lt;P&gt;       end of t_text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Internal table for Format Internal table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;data : begin of t_upload occurs 0,&lt;/P&gt;&lt;P&gt;       BUDAT(8) type c, " Post Date&lt;/P&gt;&lt;P&gt;       BELNR like zfreight-belnr," Account # / Cost Center&lt;/P&gt;&lt;P&gt;       tknum like zfreight-tknum," Bill of Lading&lt;/P&gt;&lt;P&gt;       caref like zfreight-caref," Carrier Ref&lt;/P&gt;&lt;P&gt;       carid like zfreight-carid," Carrier ID&lt;/P&gt;&lt;P&gt;       frchg(11) type c," like zfreight-frchg," Freight Charge&lt;/P&gt;&lt;P&gt;       stdat(8) type c,          " Date Settled&lt;/P&gt;&lt;P&gt;       stcod like zfreight-stcod," Status Code&lt;/P&gt;&lt;P&gt;       end of t_upload.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Internal table for Simulation Message&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA: BEGIN OF t_msgs OCCURS 0,&lt;/P&gt;&lt;P&gt;        text LIKE t100-text," Message text&lt;/P&gt;&lt;P&gt;      END OF t_msgs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**************************************************************&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="17" type="ul"&gt;&lt;P&gt; Selection-Screen  *************************&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;**************************************************************&lt;/P&gt;&lt;P&gt;selection-screen : begin of block blk with frame title text-001.&lt;/P&gt;&lt;P&gt;PARAMETERS: P_file(128) type c LOWER CASE." File name&lt;/P&gt;&lt;P&gt;selection-screen : skip 1.&lt;/P&gt;&lt;P&gt;parameters : p_siml as checkbox default c_x." Simulation&lt;/P&gt;&lt;P&gt;selection-screen : end of block blk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**************************************************************&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="17" type="ul"&gt;&lt;P&gt; Start-of-Selection ************************&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;**************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  refresh t_msgs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF p_siml IS INITIAL.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  'SIMULATION ===&amp;gt;  OFF'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    MESSAGE i099(zz) INTO t_msgs-text.&lt;/P&gt;&lt;P&gt;    APPEND t_msgs.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  'SIMULATION ===&amp;gt;  ON'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    MESSAGE i100(zz) INTO t_msgs-text.&lt;/P&gt;&lt;P&gt;    APPEND t_msgs.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Open the file at Application Server.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  perform open_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Read the file into internal table.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  perform read_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Close the file&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  PERFORM close_file .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Count the data from File&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  PERFORM data_get_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Read the data from internal table as proper format&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  perform read_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Coverted as date format in ZFREIGHT Table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  perform format_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if p_siml is initial.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Inserting the records to ZFREIGHT Table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    perform modify_table.&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    perform nochange_table.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Displays Log message&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  PERFORM write_log.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'Z_HEADER'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FLEX_TEXT1       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FLEX_TEXT2       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FLEX_TEXT3       =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  data_get_file&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      Count the records from Flat file&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM data_get_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: l_count TYPE i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  describe table t_text lines l_count.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0 OR&lt;/P&gt;&lt;P&gt;     ( sy-subrc NE 0 AND l_count LE 0 ).&lt;/P&gt;&lt;P&gt;    MESSAGE i124(zz) WITH l_count INTO t_msgs-text.&lt;/P&gt;&lt;P&gt;    APPEND t_msgs.&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    flag_error = 'Y'.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " data_get_file&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  open_file&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      Open the file at application Server&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM open_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Open dataset p_file for input in text mode .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;    message i123(ZZ).&lt;/P&gt;&lt;P&gt;    stop.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " open_file&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  read_file&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      Read the file into internal table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM read_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DO.&lt;/P&gt;&lt;P&gt;    CLEAR t_text.&lt;/P&gt;&lt;P&gt;    READ DATASET P_FILE INTO t_TEXT.&lt;/P&gt;&lt;P&gt;    IF SYST-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      EXIT.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    APPEND T_TEXT.&lt;/P&gt;&lt;P&gt;  ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " read_file&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  close_file&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      Close the file&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM close_file.&lt;/P&gt;&lt;P&gt;  CLOSE DATASET P_FILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " close_file&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  write_log&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      Displays Log message&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM write_log.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SKIP 3.&lt;/P&gt;&lt;P&gt;  LOOP AT t_msgs.&lt;/P&gt;&lt;P&gt;    WRITE: /15 t_msgs-text.&lt;/P&gt;&lt;P&gt;    SKIP 2.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " write_log&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  read_data&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      Delimter&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM read_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at t_text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    split t_text-text at tab into t_upload-budat&lt;/P&gt;&lt;P&gt;                                  t_upload-belnr&lt;/P&gt;&lt;P&gt;                                  t_upload-tknum&lt;/P&gt;&lt;P&gt;                                  t_upload-caref&lt;/P&gt;&lt;P&gt;                                  t_upload-carid&lt;/P&gt;&lt;P&gt;                                  t_upload-frchg&lt;/P&gt;&lt;P&gt;                                  t_upload-stdat&lt;/P&gt;&lt;P&gt;                                  t_upload-stcod.&lt;/P&gt;&lt;P&gt;    append t_upload.&lt;/P&gt;&lt;P&gt;    clear t_upload.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " read_data&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  format_table&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      Assign the data to Zfreight table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM format_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at t_upload.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Assign sy-mandt to zfreight-mandt.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    t_zfreight-mandt = sy-mandt.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Assign the data as per ZFREIGHT Table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    t_zfreight-budat = t_upload-budat.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Account # / Cost Center&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    t_zfreight-belnr = t_upload-belnr.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Bill of Lading&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    t_zfreight-tknum = t_upload-tknum.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Carrier Ref&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    t_zfreight-caref = t_upload-caref.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Carrier ID&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    t_zfreight-carid = t_upload-carid.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Freight Charge&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    t_zfreight-frchg = t_upload-frchg.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Assign date as per ZFREIGHT table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    t_zfreight-stdat = t_upload-stdat.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Status Code&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    t_zfreight-stcod = t_upload-stcod.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;User name&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    t_zfreight-ERNAM = sy-uname.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Current Date&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    t_zfreight-ERDAT = sy-datum.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Current Time&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    t_zfreight-ERZET = sy-uzeit.&lt;/P&gt;&lt;P&gt;*Program name&lt;/P&gt;&lt;P&gt;    t_zfreight-ERPGM = sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    append t_zfreight.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    clear : t_zfreight.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " format_table&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  modify_table&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      Inserting the records to ZFREIGHT Table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM modify_table.&lt;/P&gt;&lt;P&gt;   commit work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  modify zfreight from table t_zfreight.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;    MESSAGE i125(zz) INTO t_msgs-text.&lt;/P&gt;&lt;P&gt;    APPEND t_msgs.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " modify_table&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  nochange_table&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; --&amp;gt;  p1        text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; &amp;lt;--  p2        text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM nochange_table.&lt;/P&gt;&lt;P&gt;  rollback WORK.&lt;/P&gt;&lt;P&gt;  MESSAGE i109(zz) INTO t_msgs-text.&lt;/P&gt;&lt;P&gt;  APPEND t_msgs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " nochange_table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 03:26:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-create/m-p/2299291#M502371</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T03:26:00Z</dc:date>
    </item>
  </channel>
</rss>

