Skip to Content
0
Jan 02, 2023 at 11:53 AM

How to add search help in standard subscr in module pool?

152 Views

Hi Guys,

I have a requirement to add a custom search help in module pool for select options field. So I created a code like below to create a select option.
In Top include I declare.
SELECTION-SCREEN BEGIN OF SCREEN 9004 AS SUBSCREEN .

SELECT-OPTIONS : s_ebelp FOR ekpo-ebelp.

SELECTION-SCREEN END OF SCREEN 9004.
I created a subscreen area(subscr) in screen 200 .
and In PBO and PAI of 200 I called this subcreen area like this
CALL SUBSCREEN subscr INCLUDING sy-repid '9004'.(PBO)
CALL SUBSCREEN subscr.(PAI)
SO the 9004 screen created dynamically.Now I want search help with custom fields on select option but as 9004 is standard not able change that one,Can anyone help me to build search help for that?

thanks in advance.