<?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: to read data from excel layout in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-read-data-from-excel-layout/m-p/2708362#M627621</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use fm ALSM_EXCEL_TO_INTERNAL_TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;rewards point&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Aug 2007 05:29:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-24T05:29:18Z</dc:date>
    <item>
      <title>to read data from excel layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-read-data-from-excel-layout/m-p/2708361#M627620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any functional module to read the data from grid output which is excel layout ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;note..&lt;/P&gt;&lt;P&gt;i want to read data from excel ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 05:25:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-read-data-from-excel-layout/m-p/2708361#M627620</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T05:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: to read data from excel layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-read-data-from-excel-layout/m-p/2708362#M627621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use fm ALSM_EXCEL_TO_INTERNAL_TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;rewards point&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 05:29:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-read-data-from-excel-layout/m-p/2708362#M627621</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T05:29:18Z</dc:date>
    </item>
    <item>
      <title>Re: to read data from excel layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-read-data-from-excel-layout/m-p/2708363#M627622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See the following ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZFI_EXCEL .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Read the data from the locally held spreadsheet&lt;/P&gt;&lt;P&gt;*Once read using this FM, the data will be held like:-&lt;/P&gt;&lt;P&gt;*ROW |COL |VALUE&lt;/P&gt;&lt;P&gt;*--&lt;DEL&gt;-|&lt;/DEL&gt;&lt;DEL&gt;-|&lt;/DEL&gt;---&lt;/P&gt;&lt;P&gt;*0001 |0001 |2&lt;/P&gt;&lt;P&gt;*0001 |0002 |00000000001&lt;/P&gt;&lt;P&gt;*0001 |0003 |1&lt;/P&gt;&lt;P&gt;*0001 |0004 |&lt;/P&gt;&lt;P&gt;*0001 |0005 |2&lt;/P&gt;&lt;P&gt;*0001 |00010|SHORT TEXT for a/c&lt;/P&gt;&lt;P&gt;*0001 |00011|LONG TEXT a/c 0000000001&lt;/P&gt;&lt;P&gt;*.&lt;/P&gt;&lt;P&gt;*.&lt;/P&gt;&lt;P&gt;*0002 |0001 |2&lt;/P&gt;&lt;P&gt;*0002 |0002 |00000000002&lt;/P&gt;&lt;P&gt;*0002 |0003 |1&lt;/P&gt;&lt;P&gt;*0002 |0004 |&lt;/P&gt;&lt;P&gt;*0002 |0005 |2&lt;/P&gt;&lt;P&gt;*0002 |00010|SHORT TEXT for a/c&lt;/P&gt;&lt;P&gt;*0001 |00011|LONG TEXT a/c 0000000002&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;*etc........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of excel_tab occurs 0.&lt;/P&gt;&lt;P&gt;include structure alsmex_tabline.&lt;/P&gt;&lt;P&gt;data: end of excel_tab .&lt;/P&gt;&lt;P&gt;data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;bldat like bkpf-bldat,&lt;/P&gt;&lt;P&gt;blart like bkpf-blart,&lt;/P&gt;&lt;P&gt;bukrs like bkpf-bukrs,&lt;/P&gt;&lt;P&gt;budat like bkpf-budat,&lt;/P&gt;&lt;P&gt;waers like bkpf-waers,&lt;/P&gt;&lt;P&gt;bschl like bseg-bschl,&lt;/P&gt;&lt;P&gt;hkont like bseg-hkont,&lt;/P&gt;&lt;P&gt;sgtxt like bseg-sgtxt,&lt;/P&gt;&lt;P&gt;end of itab.&lt;/P&gt;&lt;P&gt;data: process_tab_struct_tmp like itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;fs1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen: begin of block blk.&lt;/P&gt;&lt;P&gt;parameters: fname type rlgrap-filename.&lt;/P&gt;&lt;P&gt;selection-screen: end of block blk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen on value-request for fname.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4_FILENAME'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;PROGRAM_NAME = 'ZFI_EXCEL'&lt;/P&gt;&lt;P&gt;DYNPRO_NUMBER = '1000'&lt;/P&gt;&lt;P&gt;FIELD_NAME = 'FNAME'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;FILE_NAME = FNAME.&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;/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;CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;filename = FNAME&lt;/P&gt;&lt;P&gt;i_begin_col = 1&lt;/P&gt;&lt;P&gt;i_begin_row = 1&lt;/P&gt;&lt;P&gt;i_end_col = 24&lt;/P&gt;&lt;P&gt;i_end_row = 60000&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;intern = EXCEL_TAB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT EXCEL_TAB.&lt;/P&gt;&lt;P&gt;assign component excel_tab-col of structure&lt;/P&gt;&lt;P&gt;process_tab_struct_tmp to &amp;lt;fs1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;fs1&amp;gt; = excel_tab-value.&lt;/P&gt;&lt;P&gt;at end of row.&lt;/P&gt;&lt;P&gt;move-corresponding: process_tab_struct_tmp to itab. &amp;#147;Move values to itab&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;endat.&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;LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;WRITE:/2 ITAB-BLDAT,14(8) ITAB-BLART,20(10) ITAB-BUDAT.&lt;/P&gt;&lt;P&gt;ENDLOOP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;rewards point.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 05:29:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-read-data-from-excel-layout/m-p/2708363#M627622</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T05:29:44Z</dc:date>
    </item>
    <item>
      <title>Re: to read data from excel layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-read-data-from-excel-layout/m-p/2708364#M627623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U can also this one:-&lt;/P&gt;&lt;P&gt;Use the FM ALSM_EXCEL_TO_INTERNAL_TABLE this will read your exel file and convert it into an internal table , you then need to map this to your internal tablw which you will use to modify the database table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;rewards point.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 05:30:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-read-data-from-excel-layout/m-p/2708364#M627623</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T05:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: to read data from excel layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-read-data-from-excel-layout/m-p/2708365#M627624</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;if you want to upload the data from EXCEL sheet to internal table then use this 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;&lt;/P&gt;&lt;P&gt;reward if usefull&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 05:32:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-read-data-from-excel-layout/m-p/2708365#M627624</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T05:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: to read data from excel layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-read-data-from-excel-layout/m-p/2708366#M627625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;here check this program i am spliting the record depend upon ',' and dont use ws_upload etc fm's are obsolete....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of itab_string occurs 0,&lt;/P&gt;&lt;P&gt;record type char255,&lt;/P&gt;&lt;P&gt;end of itab_string.&lt;/P&gt;&lt;P&gt;data: L_FILETABLE TYPE FILETABLE,&lt;/P&gt;&lt;P&gt;L_FILETAB_H TYPE FILETABLE WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: p_file1 type string.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;selection screen .&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;PARAMETERS: P_FILE TYPE LOCALFILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization.&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;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IF THE USER SELECT EXTENTION BUTTON IT WILL OPEN THE LOCAL DIRECTORY FOR SELECTING THE FILE LOCATION.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CALL METHOD CL_GUI_FRONTEND_SERVICES=&amp;gt;FILE_OPEN_DIALOG&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;WINDOW_TITLE =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;DEFAULT_EXTENSION = 'CSV'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;DEFAULT_FILENAME = 'C:\Documents and Settings\196093\Desktop\STATUS.csv'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FILE_FILTER =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;INITIAL_DIRECTORY = 'C:\Documents and Settings\196093\Desktop\'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MULTISELECTION =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;WITH_ENCODING =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CHANGING&lt;/P&gt;&lt;P&gt;FILE_TABLE = L_FILETABLE&lt;/P&gt;&lt;P&gt;RC = RC&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;USER_ACTION =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FILE_ENCODING =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;FILE_OPEN_DIALOG_FAILED = 1&lt;/P&gt;&lt;P&gt;CNTL_ERROR = 2&lt;/P&gt;&lt;P&gt;ERROR_NO_GUI = 3&lt;/P&gt;&lt;P&gt;NOT_SUPPORTED_BY_GUI = 4&lt;/P&gt;&lt;P&gt;others = 5&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT l_filetable INTO L_FILETAB_H.&lt;/P&gt;&lt;P&gt;P_FILE = L_FILETAB_H-FILENAME.&lt;/P&gt;&lt;P&gt;move p_file to p_file1.&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&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;passing the selected file name to gui_upload for loading the data&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;into internal table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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 = p_file1&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FILETYPE = 'ASC'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;HAS_FIELD_SEPARATOR = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;HEADER_LENGTH = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;READ_BY_LINE = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;DAT_MODE = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CODEPAGE = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IGNORE_CERR = ABAP_TRUE&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;REPLACEMENT = '#'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CHECK_BOM = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;NO_AUTH_CHECK = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FILELENGTH =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;HEADER =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;DATA_TAB = itab_string&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;.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;MESSAGE I000(Z00) WITH 'PLEASE PROVIDE CORRECT FILE NAME'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab_string.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;now split the statuses&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;split itab_string at ',' into itab_status-aufnr itab_status-asttx itab_status-asttx1.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;and move one internal table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;append itab_status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear itab_status.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if it is helpful,&lt;/P&gt;&lt;P&gt;kiran.M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 05:36:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-read-data-from-excel-layout/m-p/2708366#M627625</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T05:36:16Z</dc:date>
    </item>
    <item>
      <title>Re: to read data from excel layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-read-data-from-excel-layout/m-p/2708367#M627626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi abay..&lt;/P&gt;&lt;P&gt;thanks 4 ur effort on my queries..&lt;/P&gt;&lt;P&gt;my problem is&lt;/P&gt;&lt;P&gt;at runtime i change the layout from abap grid to excel layout.&lt;/P&gt;&lt;P&gt;in excel layout i edit data for some calculation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i want to move the edited data in excel to internal table. for that i want to save the data from excel to internal table at run time..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for that what to do ? can you please&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 05:42:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-read-data-from-excel-layout/m-p/2708367#M627626</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T05:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: to read data from excel layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-read-data-from-excel-layout/m-p/2708368#M627627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi abay..&lt;/P&gt;&lt;P&gt;thanks 4 ur effort on my queries..&lt;/P&gt;&lt;P&gt;my problem is&lt;/P&gt;&lt;P&gt;at runtime i change the layout from abap grid to excel layout.&lt;/P&gt;&lt;P&gt;in excel layout i edit data for some calculation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i want to move the edited data in excel to internal table. for that i want to save the data from excel to internal table at run time..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for that what to do ? can you please&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 05:50:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-read-data-from-excel-layout/m-p/2708368#M627627</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T05:50:23Z</dc:date>
    </item>
  </channel>
</rss>

