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: 

SHLP-SELOPT is Empty

Former Member
0 Kudos

Hi,

I made a table in SE11 and attached a search help to a NUMC field. I wanted to filter values of this NUMC field within the search help exit depending on other selection criteria. I'm checking for the selection value that would be of type DATS in SHLP-SELOPT but it's empty. Why would this be empty?

Thanks.

1 ACCEPTED SOLUTION

former_member585060
Active Contributor
0 Kudos

Hi,

The search help exit will be similar to <name>_SHLP_EXIT. Just got to SE37 and give *_SHLP_EXIT, it will list out search help exits.

Check the entries in RECORD_TAB, add the logic to filter in the statement

  IF CALLCONTROL-STEP = 'DISP'.

*   Add ur code here to filter..

    EXIT.

  ENDIF.

3 REPLIES 3

0 Kudos

Hi Victoria,

It seems you have given wrong Search help name. normally search help will be SHLP_XXX . You have given hifen in between the name space. Kindly correct or please provide a detail scenario about your table and search help with screen shot.

Please Reward if my answer useful to you.

Thanks,

Anand

Former Member
0 Kudos

Hi Victoria,

If you have entered any values for the fields of serach help then only shlp-selopt will have the field name, sign option and the values entered.

Thanks and Regards,

Vinay Mutt

former_member585060
Active Contributor
0 Kudos

Hi,

The search help exit will be similar to <name>_SHLP_EXIT. Just got to SE37 and give *_SHLP_EXIT, it will list out search help exits.

Check the entries in RECORD_TAB, add the logic to filter in the statement

  IF CALLCONTROL-STEP = 'DISP'.

*   Add ur code here to filter..

    EXIT.

  ENDIF.