Application Development and Automation 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: 
Read only

About search help!

Former Member
0 Likes
861

i creat a search help,but how can i do the same with select-options?the search help only created by PARAMETERS.CAN ANYONE HELP ME,THANK YOU.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
833

Hi ,

You can use

SELECTION-SCREEN VALUE-REQUEST on s_matnr-low
           perform F4_help_matnr

       SELECTION-SCREEN VALUE-REQUEST ON s_matnr-high
           perform F4_help_matnr
 

Cheers

VJ

i creat a search help,but how can i do the same with select-options?the search help only created by PARAMETERS.CAN ANYONE HELP ME,THANK YOU.

6 REPLIES 6
Read only

Former Member
0 Likes
834

Hi ,

You can use

SELECTION-SCREEN VALUE-REQUEST on s_matnr-low
           perform F4_help_matnr

       SELECTION-SCREEN VALUE-REQUEST ON s_matnr-high
           perform F4_help_matnr
 

Cheers

VJ

Read only

0 Likes
833

oh,i use this.

PARAMETERS:P_AUFNR LIKE AFIH-AUFNR MATCHCODE OBJECT ZORDP.

the ZORDP is search help id.

i want to in the search help creat one option select from ... to...

Read only

0 Likes
833

Hi,

Double click on the selection view from which you get the data there you can specify the Select From and to using operators.

Cheers

VJ

Read only

0 Likes
833
Hi 

  If you want the search help to be activation for 
select-option it can be done the same way.

  select-options: s_aufnr like afih-aufnr 
                        matchcode object zordp.

  But if you want the search criteria with in the search 
help you have created as a range, i guess it can not be 
done.

Kind Regards
Eswar
Read only

Former Member
0 Likes
833

Hi,

Please refer this link :

Best regards,

Prashant

Read only

Former Member
0 Likes
833
Hi

   As you have already created the search help you use 
that in parameter defintion via command matchcode 
object. Below is an example for your understanding.

suppose your search help is 'ZSH'. Use this as:

parameters: p_field like table-field 
                    mactchcode ojbect ZSH.

Kind Regards
Eswar