‎2010 Feb 17 1:50 PM
Hi Gurs
when i executed program , it go to dump, show this error .
Short text
The ABAP program lines are wider than the internal table.
Error in the ABAP Application Program
The current ABAP program "SAPLSKBH" had to be terminated because it has
come across a statement that unfortunately cannot be executed.
it show this lines.
-
read report l_prog_tab_local into l_abap_source.
366 * catch cx_sy_read_src_line_too_long into ex_too_long.
367 * endtry.
368 check sy-subrc eq 0.
Edited by: Rob Burbank on Feb 17, 2010 2:54 PM
‎2010 Feb 17 1:56 PM
Hi,
It happens one or more of your program code lines has exceed to 72 characters.
Please split your program code lines withinj 72 characters.
Thanks,
Abhijit
‎2010 Feb 17 1:57 PM
‎2010 Feb 17 2:05 PM
In lower version ABAP editor's, the max. no. of characters are restricted to 72 in 1 line.
With the READ REPORT statement, you have more than 72 characters in a line...Check it out manually, and divide that line into two.
‎2010 Feb 17 3:03 PM
Hi
I had the faced the same problem recently. I was trying to create ALV report and in the FM REUSE_ALV_FIELDCATALOG_MERGE, I was giving the include name wrong. But was still getting this error. I would suggest you to check it from that perspective also. I corrected the include name and it worked fine.
‎2010 Feb 17 7:10 PM
Hi,
In SE38, Go to Utilities -> Settings -> on the editor's tab, Make sure that Check box "Downwards-Comp. Line lentgh (72)" is unchecked.
Regards,
Chandravadan
‎2010 Feb 18 7:17 PM
‎2010 Apr 23 1:18 PM
Hi Chowdary,
I am also getting the same dump " The ABAP program lines are wider than the internal table"
Can i know what solution you applied for the above problem.
Thanks in advance
Kavya
‎2010 Feb 18 6:00 AM
d022s length is only 72 char
so u have to copy D022S Structure to ZD022S Structure and
and define like LINE CHAR(data type) 1500(length)
then u define internal table like
data: begin of itab occurs 0.
include structure Zd022s.
data: end of itab.
‎2010 Feb 18 6:46 PM
Hi
I have tried this method, it's not working. Iam getting . please give me . ur vlaueble sugession.
ThankQ.
‎2010 Feb 18 6:51 PM
iam getting Same dump. I have copyed D022S to zdo22 structure ,
I have Declared like this in prog.
data: begin of itab occurs 0.*
include structure Zd022s.
data: end of itab.
But it's going to same dump
‎2010 Feb 18 7:13 PM
Go to Utilities-Settings- make sure the Downward -compatable 72 is checked and then try , if your program exceeds lenght 72 it will throw a pop up that it will split, say yes and continue.