Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

UPLOAD

Former Member
0 Likes
398

Hi Gurus,

I need to upload Text DATA at each line item level of the Quotation (VA21 From an excel sheet .Tere r around 500 Line items and each will be loaded with text from excel sheet

Thank you very much in advance

2 REPLIES 2
Read only

former_member609120
Contributor
0 Likes
380

FORM UPLOAD_EXCEL_FILE .

CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'

EXPORTING

FILENAME = P_FNAME " File Name

I_BEGIN_COL = 1 " start Column

I_BEGIN_ROW = 2 " start row

I_END_COL = 22 " total columns

I_END_ROW = 9999 " max rows

TABLES

INTERN = IT_FILE_UPLOAD. " internal table

ENDFORM.

Use the above FM to upload data from excel sheet

Read only

Former Member
0 Likes
380

TEXT_CONVERT_XLS_TO_SAP

ALSM_EXCEL_TO_INTERNAL_TABLE

Reward if useful