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: 

abap qeries

Former Member
0 Kudos

1.. i have created one table for that i have one change request. i have created one report program. for that i have one change request? which request is released first? and why?

2.. in interactive report we have 20 secondary list? how we wiil move dynamically from one list to another list? like from 10 th list to 5th list ? if any code is there please send that code?

3. please send some real time scenarios related to internal table and reports? iam new to abap . i want to expertise in these two areas. if u have any material and links and documents send it as soon as possible.

1 REPLY 1

0 Kudos

Hi,

1) You need to release request that has the DDIC stuff first, since you are using that in the Report program, and after the request transport when the system tries to activate the report it will get syntax error if the required DDIC stuff is missing so you should release the DDIC stuff first.

2)You can mov eby changing the system variable sy-lsind.

case sy-lsind.

when 10.

sy-lsind = 5.

endcase.

3) Goto transaction ABAPDOCU there you will get lot of example programs.

Check the link

http://help.sap.com/saphelp_47x200/helpdata/en/fc/eb2c46358411d1829f0000e829fbfe/content.htm

Regards,

Sesh