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

Getting the header as first record while uploading excel file using bdc

Former Member
0 Likes
525

Hi all,

I am new to abap. I have created a bdc program to upload an excel file for updating esi no in pa30. The excel sheet has the header as first row(like eno,esino,etc). Whlle debugging i c that the first record takes the heading values. How can this be rectified.

I am using ALSM_EXCEL_TO_INTERNAL_TABLE function for uploading the excel file.

Please help me resolving this issue otherwise the program is working fine.

Thanks in regards,

Ashok

1 ACCEPTED SOLUTION
Read only

JoffyJohn
Active Contributor
0 Likes
433

set i_begin_row = 2

in function module

to read from second row of excel

2 REPLIES 2
Read only

JoffyJohn
Active Contributor
0 Likes
434

set i_begin_row = 2

in function module

to read from second row of excel

Read only

Former Member
0 Likes
433

Hi Ashok ,

You can set the paramater I_BEGIN_ROW in the FM as 2.

Regards,

Arun