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

Blank Lines

Former Member
0 Likes
676

i am creating BDC ERROR FILE. here whatever i am tranfering error file by using function module "DOWNLOAD".In that output screen first second files are coming blanks ,after that error record is showing.i want to delete that blank lines,please give me any idea.

one more question is here if there is two error then there is 2 blank lines,if there is 4 error first 4 line are blank,so what shall i will do ?

Message was edited by:

pinkuna misra.m

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
630

before downloading delete the first 2 lines

do 2 times.
  delete itab index 1.
enddo.

4 REPLIES 4
Read only

Former Member
0 Likes
631

before downloading delete the first 2 lines

do 2 times.
  delete itab index 1.
enddo.

Read only

Former Member
0 Likes
630

Hi ,

Do like this..

Describe itab line l_count.

bl_lines = l_count / 2.

do bl_lines.

delete itab index 1.

enddo.

Hope it may solve your problem.

Regards,

Jayaram...

Read only

0 Likes
630

could you please send the XI material <b>TBIT 41, 42, 43, 44</b> to jwelit@yahoo.com...

thanks in advance..

Read only

Former Member
0 Likes
630

Hi,

Please check while appending the error records in the internal table, any blank line has been added by using APPEND statement.....Try to find out the APPEND statement which is adding the blank line....

Thanks,

Aditya......