2008 Feb 22 7:33 AM
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
2008 Feb 22 9:52 AM
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.
2008 Feb 22 11:06 AM
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
2008 Feb 22 11:18 AM
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
2008 Feb 22 11:21 AM
Hi Siva,
Can we write this code in Search help?
Note: I am creating a Search help using transaction code SE11.
Thanks,
JM
2008 Feb 22 9:55 AM
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
2008 Feb 22 11:22 AM
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
2008 Feb 25 8:30 AM
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