Application Development 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: 

DUMP Error

Former Member
0 Kudos

Hi Experts,

I am writing a report program using ALV.

I am using FM REUSE_ALV_FIELDCATALOG_MERGE.

when cursor comes to FM it goes to DUMP showing

Runtime Errors READ_REPORT_LINE_TOO_LONG

Except. CX_SY_READ_SRC_LINE_TOO_LONG

can anyone pls tell me why this error is coming.

the line where it is going to dump is inside the FM.

Regards,

Bindu.

1 ACCEPTED SOLUTION

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

Yes, make sure that all of your source code lines are not greater than 72 characters across in the program which you are passing to the function module, this is a known issue when using this function module. Break the ones that are greater than 72 into two lines.

REgards,

Rich Heilman

3 REPLIES 3

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

Yes, make sure that all of your source code lines are not greater than 72 characters across in the program which you are passing to the function module, this is a known issue when using this function module. Break the ones that are greater than 72 into two lines.

REgards,

Rich Heilman

Former Member
0 Kudos

hi

just look into prgm if any of ur lines in the code exceed the length of the size of the report it shows like this...

just chk out...

for ex

ur code line is 75 chacracter long

but the page size could b only 72 chars..

just write the stm in 2 lines....

just chk ...hope it helps u

former_member194669
Active Contributor
0 Kudos

Hi,

Try to use se38> utilities>setting -- editor--> downword compat line length 72

then use pretty print option and activate the program

aRs