<?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: Function module to upload from excel sheet in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-upload-from-excel-sheet/m-p/844091#M44852</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a look into this sample program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Retrieve data file from presentation server(Upload from PC)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA: i_file like rlgrap-filename value '/usr/sap/tmp/file.txt'.  &lt;/P&gt;&lt;P&gt;DATA: begin of it_datatab occurs 0,&lt;/P&gt;&lt;P&gt;  row(500) type c,&lt;/P&gt;&lt;P&gt; end of it_datatab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'GUI_UPLOAD'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            filename        = i_file&lt;/P&gt;&lt;P&gt;            filetype        = 'ASC'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            data_tab        = it_datatab  "ITBL_IN_RECORD[]&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            file_open_error = 1&lt;/P&gt;&lt;P&gt;            OTHERS          = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;OR&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;*Dynamic manipulation of report programs&lt;/P&gt;&lt;P&gt;*......................................................................&lt;/P&gt;&lt;P&gt;*: Report  ZDYNAMICCODE                                               :&lt;/P&gt;&lt;P&gt;*:.....................................................................&lt;/P&gt;&lt;P&gt;*:   Execute ABAP from a PC file(.txt)                                :&lt;/P&gt;&lt;P&gt;*:   Therefor allowing any abap code to be executed on any client     :&lt;/P&gt;&lt;P&gt;*:   which contains this program                                      :&lt;/P&gt;&lt;P&gt;*:                                                                    :&lt;/P&gt;&lt;P&gt;*.....................................................................:&lt;/P&gt;&lt;P&gt;REPORT  zdynamiccode                                                .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES rlgrap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*selection screen creation&lt;/P&gt;&lt;P&gt;PARAMETER:       p_file(200) TYPE c,&lt;/P&gt;&lt;P&gt;                 p_temp(30)  TYPE c DEFAULT 'Z123TEMP_REPORT_FOR_CODE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*data declaration&lt;/P&gt;&lt;P&gt;DATA: it_tab TYPE filetable,&lt;/P&gt;&lt;P&gt;      gd_subrc TYPE i,&lt;/P&gt;&lt;P&gt;      answer TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF t_abapcode,&lt;/P&gt;&lt;P&gt;  row(72) TYPE c,&lt;/P&gt;&lt;P&gt; END OF t_abapcode.&lt;/P&gt;&lt;P&gt;DATA: it_abapcode TYPE STANDARD TABLE OF t_abapcode INITIAL SIZE 0,&lt;/P&gt;&lt;P&gt;      it_store    TYPE STANDARD TABLE OF t_abapcode INITIAL SIZE 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: filename TYPE  string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;*AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.&lt;/P&gt;&lt;P&gt;*Selecting a File, plus inserting default file extension&lt;/P&gt;&lt;P&gt;  REFRESH: it_tab.&lt;/P&gt;&lt;P&gt;  CALL METHOD cl_gui_frontend_services=&amp;gt;file_open_dialog&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      window_title     = 'Select File'&lt;/P&gt;&lt;P&gt;      default_filename = '*.txt'&lt;/P&gt;&lt;P&gt;      multiselection   = ' '&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      file_table       = it_tab&lt;/P&gt;&lt;P&gt;      rc               = gd_subrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT it_tab INTO p_file.&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;************************************************************************&lt;/P&gt;&lt;P&gt;*START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*move file name into a field with type compatable with FM&lt;/P&gt;&lt;P&gt;  filename = p_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*upload file from PC&lt;/P&gt;&lt;P&gt; &amp;lt;b&amp;gt; CALL FUNCTION 'GUI_UPLOAD'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      filename                = filename&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      data_tab                = it_abapcode&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      file_open_error         = 1&lt;/P&gt;&lt;P&gt;      file_read_error         = 2&lt;/P&gt;&lt;P&gt;      no_batch                = 3&lt;/P&gt;&lt;P&gt;      gui_refuse_filetransfer = 4&lt;/P&gt;&lt;P&gt;      invalid_type            = 5&lt;/P&gt;&lt;P&gt;      no_authority            = 6&lt;/P&gt;&lt;P&gt;      unknown_error           = 7&lt;/P&gt;&lt;P&gt;      bad_data_format         = 8&lt;/P&gt;&lt;P&gt;      header_not_allowed      = 9&lt;/P&gt;&lt;P&gt;      separator_not_allowed   = 10&lt;/P&gt;&lt;P&gt;      header_too_long         = 11&lt;/P&gt;&lt;P&gt;      unknown_dp_error        = 12&lt;/P&gt;&lt;P&gt;      access_denied           = 13&lt;/P&gt;&lt;P&gt;      dp_out_of_memory        = 14&lt;/P&gt;&lt;P&gt;      disk_full               = 15&lt;/P&gt;&lt;P&gt;      dp_timeout              = 16&lt;/P&gt;&lt;P&gt;      OTHERS                  = 17.&lt;/P&gt;&lt;P&gt;  IF sy-subrc EQ 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Check if report name being used fro temorary code already exists as&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  any code will be over written and lost&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    READ REPORT p_temp INTO it_store.&lt;/P&gt;&lt;P&gt;    IF sy-subrc NE 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Please note any existing code in the program will be lost!!!!&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      INSERT REPORT p_temp FROM it_abapcode.&lt;/P&gt;&lt;P&gt;      SUBMIT (p_temp) AND RETURN.&lt;/P&gt;&lt;P&gt;      DELETE REPORT p_temp.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'POPUP_TO_CONFIRM'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;       text_question  = 'Report used to store temporary code already&lt;/P&gt;&lt;P&gt;exists!!! Do you want to overwrite it?'&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;         answer                      = answer.&lt;/P&gt;&lt;P&gt;      IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;        IF answer EQ '1'. "yes&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        Please note any existing code in the program will be lost!!!!&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          INSERT REPORT p_temp FROM it_abapcode.&lt;/P&gt;&lt;P&gt;          SUBMIT (p_temp) AND RETURN.&lt;/P&gt;&lt;P&gt;          DELETE REPORT p_temp.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;Have a look into this link &lt;A href="http://www.sapdevelopment.co.uk/file/file_updown.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/file/file_updown.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Judith.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 May 2005 04:21:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-05-04T04:21:23Z</dc:date>
    <item>
      <title>Function module to upload from excel sheet</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-upload-from-excel-sheet/m-p/844090#M44851</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;Can i use GUI_UPLOAD for uploading data from an excel sheet from the prsentation server into SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any thing important that I should take care of.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Satish.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 May 2005 04:06:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-upload-from-excel-sheet/m-p/844090#M44851</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-04T04:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to upload from excel sheet</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-upload-from-excel-sheet/m-p/844091#M44852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a look into this sample program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Retrieve data file from presentation server(Upload from PC)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA: i_file like rlgrap-filename value '/usr/sap/tmp/file.txt'.  &lt;/P&gt;&lt;P&gt;DATA: begin of it_datatab occurs 0,&lt;/P&gt;&lt;P&gt;  row(500) type c,&lt;/P&gt;&lt;P&gt; end of it_datatab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'GUI_UPLOAD'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            filename        = i_file&lt;/P&gt;&lt;P&gt;            filetype        = 'ASC'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            data_tab        = it_datatab  "ITBL_IN_RECORD[]&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            file_open_error = 1&lt;/P&gt;&lt;P&gt;            OTHERS          = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;OR&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;*Dynamic manipulation of report programs&lt;/P&gt;&lt;P&gt;*......................................................................&lt;/P&gt;&lt;P&gt;*: Report  ZDYNAMICCODE                                               :&lt;/P&gt;&lt;P&gt;*:.....................................................................&lt;/P&gt;&lt;P&gt;*:   Execute ABAP from a PC file(.txt)                                :&lt;/P&gt;&lt;P&gt;*:   Therefor allowing any abap code to be executed on any client     :&lt;/P&gt;&lt;P&gt;*:   which contains this program                                      :&lt;/P&gt;&lt;P&gt;*:                                                                    :&lt;/P&gt;&lt;P&gt;*.....................................................................:&lt;/P&gt;&lt;P&gt;REPORT  zdynamiccode                                                .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES rlgrap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*selection screen creation&lt;/P&gt;&lt;P&gt;PARAMETER:       p_file(200) TYPE c,&lt;/P&gt;&lt;P&gt;                 p_temp(30)  TYPE c DEFAULT 'Z123TEMP_REPORT_FOR_CODE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*data declaration&lt;/P&gt;&lt;P&gt;DATA: it_tab TYPE filetable,&lt;/P&gt;&lt;P&gt;      gd_subrc TYPE i,&lt;/P&gt;&lt;P&gt;      answer TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF t_abapcode,&lt;/P&gt;&lt;P&gt;  row(72) TYPE c,&lt;/P&gt;&lt;P&gt; END OF t_abapcode.&lt;/P&gt;&lt;P&gt;DATA: it_abapcode TYPE STANDARD TABLE OF t_abapcode INITIAL SIZE 0,&lt;/P&gt;&lt;P&gt;      it_store    TYPE STANDARD TABLE OF t_abapcode INITIAL SIZE 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: filename TYPE  string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;*AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.&lt;/P&gt;&lt;P&gt;*Selecting a File, plus inserting default file extension&lt;/P&gt;&lt;P&gt;  REFRESH: it_tab.&lt;/P&gt;&lt;P&gt;  CALL METHOD cl_gui_frontend_services=&amp;gt;file_open_dialog&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      window_title     = 'Select File'&lt;/P&gt;&lt;P&gt;      default_filename = '*.txt'&lt;/P&gt;&lt;P&gt;      multiselection   = ' '&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      file_table       = it_tab&lt;/P&gt;&lt;P&gt;      rc               = gd_subrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT it_tab INTO p_file.&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;************************************************************************&lt;/P&gt;&lt;P&gt;*START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*move file name into a field with type compatable with FM&lt;/P&gt;&lt;P&gt;  filename = p_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*upload file from PC&lt;/P&gt;&lt;P&gt; &amp;lt;b&amp;gt; CALL FUNCTION 'GUI_UPLOAD'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      filename                = filename&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      data_tab                = it_abapcode&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      file_open_error         = 1&lt;/P&gt;&lt;P&gt;      file_read_error         = 2&lt;/P&gt;&lt;P&gt;      no_batch                = 3&lt;/P&gt;&lt;P&gt;      gui_refuse_filetransfer = 4&lt;/P&gt;&lt;P&gt;      invalid_type            = 5&lt;/P&gt;&lt;P&gt;      no_authority            = 6&lt;/P&gt;&lt;P&gt;      unknown_error           = 7&lt;/P&gt;&lt;P&gt;      bad_data_format         = 8&lt;/P&gt;&lt;P&gt;      header_not_allowed      = 9&lt;/P&gt;&lt;P&gt;      separator_not_allowed   = 10&lt;/P&gt;&lt;P&gt;      header_too_long         = 11&lt;/P&gt;&lt;P&gt;      unknown_dp_error        = 12&lt;/P&gt;&lt;P&gt;      access_denied           = 13&lt;/P&gt;&lt;P&gt;      dp_out_of_memory        = 14&lt;/P&gt;&lt;P&gt;      disk_full               = 15&lt;/P&gt;&lt;P&gt;      dp_timeout              = 16&lt;/P&gt;&lt;P&gt;      OTHERS                  = 17.&lt;/P&gt;&lt;P&gt;  IF sy-subrc EQ 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Check if report name being used fro temorary code already exists as&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  any code will be over written and lost&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    READ REPORT p_temp INTO it_store.&lt;/P&gt;&lt;P&gt;    IF sy-subrc NE 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Please note any existing code in the program will be lost!!!!&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      INSERT REPORT p_temp FROM it_abapcode.&lt;/P&gt;&lt;P&gt;      SUBMIT (p_temp) AND RETURN.&lt;/P&gt;&lt;P&gt;      DELETE REPORT p_temp.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'POPUP_TO_CONFIRM'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;       text_question  = 'Report used to store temporary code already&lt;/P&gt;&lt;P&gt;exists!!! Do you want to overwrite it?'&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;         answer                      = answer.&lt;/P&gt;&lt;P&gt;      IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;        IF answer EQ '1'. "yes&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        Please note any existing code in the program will be lost!!!!&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          INSERT REPORT p_temp FROM it_abapcode.&lt;/P&gt;&lt;P&gt;          SUBMIT (p_temp) AND RETURN.&lt;/P&gt;&lt;P&gt;          DELETE REPORT p_temp.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;Have a look into this link &lt;A href="http://www.sapdevelopment.co.uk/file/file_updown.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/file/file_updown.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Judith.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 May 2005 04:21:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-upload-from-excel-sheet/m-p/844091#M44852</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-04T04:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to upload from excel sheet</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-upload-from-excel-sheet/m-p/844092#M44853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Satish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can make use of the function module &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"ALSM_EXCEL_TO_INTERNAL_TABLE".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ramesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 May 2005 07:16:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-upload-from-excel-sheet/m-p/844092#M44853</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-04T07:16:47Z</dc:date>
    </item>
  </channel>
</rss>

