2011 Jan 21 8:58 PM
Hi;
i need a field to get a range of values for MATKL field y a DYNPRO, as SELECT-OPTIONS...NO INTERVALS does.
i actually use help H_T023 for MATKL field in the DYNPRO, but it just let me choose one item
I´ve create my own help and now appears "SELECT-OPTIONS" option, but it just let me select a range of values to pick one of them.
What do i need to get a range of values .
Thanks on advance.
2011 Jan 22 1:30 PM
Hi David,
in your screen, define a subscreen area. Then, in the TOP include/global data area, define the select-options
SELECTION-SCREEN BEGIN OF SCREEN dynnr AS SUBSCREEN .
SELECT-OPTIONS S_MATKL FOR MARA-MATKL.
SELECTION-SCREEN END OF SCREEN dynnr.Then, in PBO of your base screen, you need
CALL SUBSCREEN sub_area INCLUDING prog dynnr.
and in PAI
CALL SUBSCREEN sub_area.
Regards,
Clemens
2011 Jan 22 12:01 AM
If you want to pick multiple values from a help list, you can either use POV and function F4IF_INT_TABLE_VALUE_REQUEST with MULTIPLE_CHOICE turned on or you can use a search help exit and set the value of CALLCONTROL-MULTISEL at PRESEL.
2011 Jan 22 1:30 PM
Hi David,
in your screen, define a subscreen area. Then, in the TOP include/global data area, define the select-options
SELECTION-SCREEN BEGIN OF SCREEN dynnr AS SUBSCREEN .
SELECT-OPTIONS S_MATKL FOR MARA-MATKL.
SELECTION-SCREEN END OF SCREEN dynnr.Then, in PBO of your base screen, you need
CALL SUBSCREEN sub_area INCLUDING prog dynnr.
and in PAI
CALL SUBSCREEN sub_area.
Regards,
Clemens