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

short dump

Former Member
0 Likes
1,124

READ_REPORT_LINE_TOO_LONG

CX_SY_READ_SRC_LINE_TOO_LONG

I get the following dump at this statement in standard program .

--->read report l_prog_tab_local into l_abap_source.

The termination occurred in the ABAP program "SAPLSKBH" in "K_KKB_FIELDCAT_MERGE".

I can see the include program name in debugging and which is active also.

Can you please help me in this regard..

Regards,

Prashant

<b></b>

1 ACCEPTED SOLUTION
Read only

amit_khare
Active Contributor
0 Likes
981

Hi,

This statement reads the program prog from the database into theinternal table itab. The line length of table itab shouldbe at least 72 characters.

So, try to check out on this..

Amit

7 REPLIES 7
Read only

Former Member
0 Likes
981

Use a longer line length in the definition of

l_abap_source. Perhaps you could even use a string. Look in the documentation. I could aesily find the documetnation.

Read only

amit_khare
Active Contributor
0 Likes
982

Hi,

This statement reads the program prog from the database into theinternal table itab. The line length of table itab shouldbe at least 72 characters.

So, try to check out on this..

Amit

Read only

0 Likes
981

you should apply the following OSS Note to fix the error.

<b>852733</b>

Regards

Raja

Read only

0 Likes
981

Hi ,

As said by Durairaj you can apply the sap note 852733 for permanent solution.

For temp. solution...check the program which has caused the error i.e line length > 72 and make to 72 chars. You can do this setting...in User-specific Setting --> Editor --> check the options "default LIne Length (72)

regards,

Vijay

Read only

Former Member
0 Likes
981

852733 note doesn't exist in sap,

I tried with 72 char default setting in editor but doesn't work.

I can't use more than 72 char length since it is a standard program.

Read only

0 Likes
981

what do you mean by this?

852733 note doesn't exist in sap

Regards

Raja

Read only

Former Member
0 Likes
981

Vijay,solved the problem.

Thanks.

Awarded the points

cheers