2009 Dec 17 6:12 AM
select-options s_curr FOR tcurr-tcurr
at selection screen i enter ADP to ZRN
but i want to delete where currency is EUR this check is only for EUR .
Please suggest some code .
select-options s_curr FOR tcurr-tcurr
at selection screen i enter ADP to ZRN
but i want to delete where currency is EUR this check is only for EUR .
Please suggest some code .
2009 Dec 17 6:15 AM
Hi,
try like this
delete s_curr where s_curr-low = 'EUR'.
Regards,
Prashant
2009 Dec 17 6:15 AM
Hi,
try like this
delete s_curr where s_curr-low = 'EUR'.
Regards,
Prashant
2009 Dec 17 6:39 AM
2009 Dec 17 6:44 AM
Hi,
1. One option is that inside the code where you are selecting some records from database,
you do not select EUR and proceed further.
2. One option is that by code,
you MODIFY the select option
so that it EXCLUDES the value EUR.
eg.
s_curr-sign = 'E'.
s_curr-option = 'EQ'.
s_curr-low = 'EUR'
append s_curr.
The above value will come in EXCLUDE tab (red colured tab) of the select option, and it fundamentally means to exclude EUR.
Hope this helps.
regards,
amit m.
2009 Dec 17 7:04 AM
Hi Gaurav,
You can use Exclude function of Select-option..
If it's static everytime then you can write a code like below...
S_CURR-SIGN = 'E'. " Exclude
S_CURR-OPTION = 'EQ'.
S_CURR-LOW = 'EUR'
APPEND S_CURR.But if value EUR is not static then Select-Option is having this functionality...
Press the Right Side Arrow Button..
Then use Tabs
Exclude Single values
Exclude Range..
You/User can specify the values you want to exclude here..
Hope it will solve your problem..
Thanks & Regards
ilesh 24x7
ilesh Nandaniya
2009 Dec 21 10:19 AM
2009 Dec 21 10:21 AM
2009 Dec 21 10:21 AM
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |