SAP Development

Help and Information for SAP/ABAP development professionals around the world

Hi ! how to list out values from tranparent tables using listbox in the reports

Share

Reply to This

Replies to This Discussion

Hi there,

the following code will select entries from table EKKO and display them as a listbox.

REPORT ZLISTBOX.
types: begin of t_ekko,
ebeln type ekko-ebeln,
end of t_ekko.
data: it_ekko TYPE STANDARD TABLE OF t_ekko,
wa_ekko like line of it_ekko.

TYPE-POOLS: VRM.
DATA: NAME TYPE VRM_ID,
LIST TYPE VRM_VALUES,
VALUE LIKE LINE OF LIST.

PARAMETERS: P_PARM(10) AS LISTBOX VISIBLE LENGTH 10.

*********************************************************
*AT SELECTION-SCREEN OUTPUT.
AT SELECTION-SCREEN OUTPUT.

SELECT ebeln
up to 10 rows
from ekko
into table it_ekko.

loop at it_ekko into wa_ekko.
VALUE-KEY = wa_ekko-ebeln.
VALUE-TEXT = wa_ekko-ebeln.
APPEND VALUE TO LIST.
endloop.

NAME = 'P_PARM'.
CALL FUNCTION 'VRM_SET_VALUES'
EXPORTING
ID = NAME
VALUES = LIST.

********************************************************
*START-OF-SELECTION.
START-OF-SELECTION.
WRITE: / 'SELECTED VALUE KEY:', P_PARM.

Regards
Mart

Reply to This

RSS

About

sapdev sapdev created this social network on Ning.

Create your own social network!

© 2009   Created by sapdev on Ning.   Create Your Own Social Network

Badges  |  Report an Issue  |  Privacy  |  Terms of Service