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: 

select-options in Module pool

Former Member
0 Kudos

Hi all,

Can I create select-options in Module Pool?

Thanks in advance,

Goutam.

4 REPLIES 4

Former Member
0 Kudos

Hi Goutam,

The same topic has been discussed in the following thread:

Regards,

Chandra Sekhar

Former Member
0 Kudos

u can creat at any screen

declair to vatiable for same field

top

data V_VBELN1 LIKE VBAK-VBELN,

V_VBELN2 LIKE VBAK-VBELN,

create at screen painter both the input field

pai

SELECT VBELN ERDAT ERNAM AUART KUNNR

INTO CORRESPONDING FIELDS OF TABLE I_VBAK FROM VBAK

WHERE VBELN BETWEEN V_VBELN1 AND V_VBELN2.

Former Member
0 Kudos

LIKE THIS

INCLUDE zdefinition.

TABLES T001.

zdefinition:

"9000 IS A SUBSCREEN NUMBER

SELECTION-SCREEN BEGIN OF SCREEN 9000 AS SUBSCREEN.

SELECT-OPTIOMS S_BUKRS FOR T001-BUKRS.

SELECTION-SCREEN END OF SCREEN 9000.

INCLUDE zimp.

CALL SCREEN 9001.

PBO:

CALL SUBSCREEN area INCLUDING SY-REPID '9000'.

PAI:

CALL SUBSCREEN area.

area: YOU CAN definition SUBSCREEN AREA IN SCREEN 9001.

Edited by: jeffpan jeffpan on Sep 11, 2008 10:43 AM

0 Kudos

Thanks to all.