<?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: DATA TRANSFER ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer/m-p/1215439#M134661</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shree,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are concerned only with the data in the flat file.&lt;/P&gt;&lt;P&gt;You can use FM GUI_UPLOAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Else If you need the data based on row and column in the excel sheet. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use FM KCD_EXCEL_OLE_TO_INT_CONVERT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'KCD_EXCEL_OLE_TO_INT_CONVERT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      filename                = p_loc&lt;/P&gt;&lt;P&gt;      i_begin_col             = lc_start_col&lt;/P&gt;&lt;P&gt;      i_begin_row             = lc_start_row&lt;/P&gt;&lt;P&gt;      i_end_col               = lc_end_col&lt;/P&gt;&lt;P&gt;      i_end_row               = lc_end_row&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      intern                  = li_intern&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      inconsistent_parameters = 1&lt;/P&gt;&lt;P&gt;      upload_ole              = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF NOT sy-subrc IS INITIAL.&lt;/P&gt;&lt;P&gt;    MESSAGE e002(fb) WITH p_loc.&lt;/P&gt;&lt;P&gt;  ENDIF.                     " IF NOT SY-SUBRC IS INITIAL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/excel_upload_alternative-kcd-excel-ole-to-int-convert.htm" target="test_blank"&gt;http://www.sap-img.com/abap/excel_upload_alternative-kcd-excel-ole-to-int-convert.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you found the solution of your query,If yes please reward point and close the thread.If you still have doubt please post it in the group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Mayank.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Apr 2006 11:56:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-04-17T11:56:32Z</dc:date>
    <item>
      <title>DATA TRANSFER ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer/m-p/1215433#M134655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HOW CAN  A TEXT FROM XL SHEET (FLAT FILE) BE TRANSFERRED INTO INTERNAL TABLE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 10:35:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer/m-p/1215433#M134655</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T10:35:34Z</dc:date>
    </item>
    <item>
      <title>Re: DATA TRANSFER ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer/m-p/1215434#M134656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use the fm GUI_UPLOAD.&lt;/P&gt;&lt;P&gt;or ALSM_EXCEL_TO_INTERNAL_TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample code:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/upload-direct-excel.htm" target="test_blank"&gt;http://www.sap-img.com/abap/upload-direct-excel.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 10:36:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer/m-p/1215434#M134656</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T10:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: DATA TRANSFER ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer/m-p/1215435#M134657</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;use GUI_UPLOAD FM and transafer the flat file to Internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;decalre your internal table in such a way that it can hold your text from the flat file&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;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 10:38:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer/m-p/1215435#M134657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T10:38:40Z</dc:date>
    </item>
    <item>
      <title>Re: DATA TRANSFER ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer/m-p/1215436#M134658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;use FM GUI_UPLOAD or ALSM_EXCEL_TO_INTERNAL_TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HOPE THIS HELPS,&lt;/P&gt;&lt;P&gt;PRIYA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 10:40:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer/m-p/1215436#M134658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T10:40:39Z</dc:date>
    </item>
    <item>
      <title>Re: DATA TRANSFER ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer/m-p/1215437#M134659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gun.&lt;/P&gt;&lt;P&gt;Welcome to SDN.&lt;/P&gt;&lt;P&gt;use GUI_UPLOAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Abdul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 10:46:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer/m-p/1215437#M134659</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2006-04-17T10:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: DATA TRANSFER ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer/m-p/1215438#M134660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shree,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can download data stored in an excel sheet to internal table using GUI_UPLOAD Function Module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can save the file as "Tab delimited Text file". Then use the FM GUI_UPLOAD .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See this example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: itab like table of zshail_tab1 with header line.&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 = 'C:\Documents and Settings\sylendr\Desktop\shailu.txt'&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;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&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;After this step , you can access ITAB to get the respective values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope your query is solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 10:50:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer/m-p/1215438#M134660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T10:50:06Z</dc:date>
    </item>
    <item>
      <title>Re: DATA TRANSFER ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer/m-p/1215439#M134661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shree,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are concerned only with the data in the flat file.&lt;/P&gt;&lt;P&gt;You can use FM GUI_UPLOAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Else If you need the data based on row and column in the excel sheet. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use FM KCD_EXCEL_OLE_TO_INT_CONVERT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'KCD_EXCEL_OLE_TO_INT_CONVERT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      filename                = p_loc&lt;/P&gt;&lt;P&gt;      i_begin_col             = lc_start_col&lt;/P&gt;&lt;P&gt;      i_begin_row             = lc_start_row&lt;/P&gt;&lt;P&gt;      i_end_col               = lc_end_col&lt;/P&gt;&lt;P&gt;      i_end_row               = lc_end_row&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      intern                  = li_intern&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      inconsistent_parameters = 1&lt;/P&gt;&lt;P&gt;      upload_ole              = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF NOT sy-subrc IS INITIAL.&lt;/P&gt;&lt;P&gt;    MESSAGE e002(fb) WITH p_loc.&lt;/P&gt;&lt;P&gt;  ENDIF.                     " IF NOT SY-SUBRC IS INITIAL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/excel_upload_alternative-kcd-excel-ole-to-int-convert.htm" target="test_blank"&gt;http://www.sap-img.com/abap/excel_upload_alternative-kcd-excel-ole-to-int-convert.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you found the solution of your query,If yes please reward point and close the thread.If you still have doubt please post it in the group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Mayank.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 11:56:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer/m-p/1215439#M134661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T11:56:32Z</dc:date>
    </item>
  </channel>
</rss>

