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

Search Help Issue

Former Member
0 Likes
1,061

Hi all,

We have a requirement to create a search help with material type field and the default value should be set to NOT EQUAL to ‘DIEN’.

I have set the default value to 'DIEN' in default value column in search help. In the result its coming with an EQUAL sign where as the requirement is to make it NOT EQUAL.

Thanks,

JM

7 REPLIES 7
Read only

Former Member
0 Likes
906

Hi,

just do like this to solve your problem,

in the search help for the default value u set message type 'DIEN' now,

instead of that u can set another message type at the default value except 'DIEN' , then save and activate then u dont get defualt value as DIEN.

seshu.

Read only

0 Likes
906

Hi seshu,

You din't get my question,

I have declared default value as 'DIEN' but in the selection screen its coming with an EQUAL(=) sign, and i want it to be as NOT EQUAL sign

Thanks,

JM

Read only

0 Likes
906

HI

SELECT-OPTIONS: S_MTART FOR MARA-MTART.

INITIALIZATION.

S_MTART-SIGN = 'E'.

S_MTART-OPTION = 'NE'.

S_MTART-LOW = 'DIEN'.

APPEND S_MTART.

Regards

Shiva

Read only

0 Likes
906

Hi Siva,

Can we write this code in Search help?

Note: I am creating a Search help using transaction code SE11.

Thanks,

JM

Read only

Former Member
0 Likes
906

Hello,

Do like this:


Tables: MARA.
SELECT-OPTIONS: S_MTART FOR MARA-MTART.
INITIALIZATION.
    S_MTART-SIGN   = 'E'.
    S_MTART-OPTION = 'EQ'.
    S_MTART-LOW    = 'DIEN'.
    APPEND S_MTART.

Hope this will solve ur issue.

Regards,

Vasanth

Read only

Former Member
0 Likes
906

Hi Jitu,

May be u try this one.

SELECT-OPTIONS: S_MTART FOR MARA-MTART default ' val1' option 'NE' .

Reward points for useful answer

Thanks,

Jey

Read only

Former Member
0 Likes
906

Hi Guys,

Issue is solved by using following step

- By using Search Help Exit.

- Modifying the EQUAL sign with NOT EQUAL at PRESEL timepoints for MTART field.

Thanks,

JM