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: 

ALV report

Former Member
0 Kudos

hi,

1. wht is the function module for placing the buttons on a ALV report.

2. wht r feild symbols and where do we use this .

3. wht is the advantage of LSMW over Batch input.

which method is used mostly and why?

can any one send me one real time ALV report on SD with some

discription about that.

bye

2 REPLIES 2

Former Member
0 Kudos

Hai Amar,

You mean that you want to place buttons on the ALV Toolbar ? If so create a PF-STATUS and load the status in I_CALLBACK_USER_STATUS and trap the function code in I_CALLBACK_USER_COMMAND.

Former Member
0 Kudos

Hi,

1. Copy the standard GUI Status STANDARD in the program SAPLKKBL and add your own buttons..

Check this program for capturing the events when the button is pressed.

http://sap-img.com/abap/an-interactive-alv-report.htm

2. Field-symbols - At runtime, you can assign a concrete field to it using the ASSIGN statement

Example..

FIELD-SYMBOLS <FS>.

DATA: V_VALUE(10) VALUE 'V_DATA'.

DATA: V_DATA(10).

V_DATA = '1234567'.

ASSIGN (V_VALUE) TO <FS>.

write: / <fs>.

3.

http://sap-img.com/general/what-are-the-methods-to-migrate-data-from-a-legacy-system-to-sap.htm

Thanks,

Naren