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

AT LINE SELECTIOn

Former Member
0 Likes
695

Hi all

Am printing this simple program but when i click on the output it is giving me dump.Please help.

REPORT ZPRE_6.

TABLES:BSEG.

DATA:ITAB LIKE STANDARD TABLE OF BSEG WITH HEADER LINE.

PARAMETERS:p_WERKS TYPE BSEG-WERKS.

Select * From bseg into corresponding fields of table itab up to 10 rows where werks = p_werks .

Loop at itab.

Write:/ itab-werks,itab-wrbtr.

endloop.

AT LINE-SELECTION.

Call transaction 'se38' and skip first screen.

WIth Regards

Vijay

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
672

Hi,

Put SE38 in caps.

Regards,

Jagadish

5 REPLIES 5
Read only

Former Member
0 Likes
673

Hi,

Put SE38 in caps.

Regards,

Jagadish

Read only

0 Likes
672

CALL Transaction 'SE38'.

Read only

GauthamV
Active Contributor
0 Likes
672

hi,

check once again, becse if i execute the same code iam getting the output.first see in the table for data available.if data is huge then also the program can be timed out.

Read only

Former Member
0 Likes
672

Hi

write the se38 in upper case

reward if helpfull

taher

Read only

Former Member
0 Likes
672

hi,

its giving u dump coz its case sensitive so u trying writting

CALL TRANSACTION 'SE38' AND SKIP FIRST SCREEN.

i.e the T-code in caps " SE38" instead "se38"

reward points if useful