2006 Sep 04 10:31 AM
hi,
what is differnce between sign="I" and "E"
what is differnce between option="CP" and "EQ"
can u tell me clearly in ur words
regards
Guru
2006 Sep 04 10:40 AM
Hi,
select-options: s_matnr for mara-matnr.
select matnr from mara where matnr in s_matnr.
what is differnce between sign="I" and "E"?
Sign 'I' means inclusive of selction criteria.
It read materials only between the s_matnr-low and s_matnr-high.
Sign 'E' means exclusive of selction criteria.
It read materials only not between the s_matnr-low and s_matnr-high.
what is differnce between option="CP" and "EQ"?
parameters: p_matnr type matnr.
select matnr from mara where matnr CP p_matnr.
it means matnr value contains in the p_matnr value.
for ex: p_matnr = '234567'.
matnr = '456'.
the above matnr Contains pattern in P_matnr.
EQ: it means matnr obsalutely same as p_matnr.
rewards if helpfull.
regards,
Subbarao
hi,
what is differnce between sign="I" and "E"
what is differnce between option="CP" and "EQ"
can u tell me clearly in ur words
regards
Guru
2006 Sep 04 10:35 AM
Hi,
CP stands for "Contains pattern" while EQ stands for "Equals".
BR,
Disha.
2006 Sep 04 10:37 AM
Hi,
I - inclusive.
E - Exclusive.
CP - Contains pattern
EQ - Equal
Example 1:
select between 1 to 100 includeing 1 and 100.
select between 1 to 100 excludeing 1 and 100.
Regards,
Senthil
2006 Sep 04 10:38 AM
Hi Guruvule,
I = inclusive Intervall
E = exclusive Intervall
*
CP = contains Pattern (f. Example 123* )
EQ = equal that mean exactly the Value.
You can see it i this case:
Select-options s_matnr for mara-matnr
degugg your Report and look at table s_matnr.
Regards, Dieter
2006 Sep 04 10:40 AM
Hi,
select-options: s_matnr for mara-matnr.
select matnr from mara where matnr in s_matnr.
what is differnce between sign="I" and "E"?
Sign 'I' means inclusive of selction criteria.
It read materials only between the s_matnr-low and s_matnr-high.
Sign 'E' means exclusive of selction criteria.
It read materials only not between the s_matnr-low and s_matnr-high.
what is differnce between option="CP" and "EQ"?
parameters: p_matnr type matnr.
select matnr from mara where matnr CP p_matnr.
it means matnr value contains in the p_matnr value.
for ex: p_matnr = '234567'.
matnr = '456'.
the above matnr Contains pattern in P_matnr.
EQ: it means matnr obsalutely same as p_matnr.
rewards if helpfull.
regards,
Subbarao
2006 Sep 04 11:21 AM
hi,
in salesorgselection for material getlist i am setting sing as "I" ,option as "EQ",low="1000",hihg="1000"
in distchanselection for material getlist i am setting sing as "I" ,option as "EQ",low="10",hihg="10"
<b>i am getting materialgetlist size as 386</b>
in salesorgselection for material getlist i am setting sing as "E" ,option as "CP",low="1000",hihg="1000"
in distchanselection for material getlist i am setting sing as "E" ,option as "CP",low="10",hihg="10"
<b>i am getting materialgetlist size as 999</b>
regards
Guru
2006 Sep 04 12:00 PM
Are you trying to say in the above that both should be same and you getting different result..BTW, they are different in terms of what it is trying to fetch and count would depend on the number of records in your system.
If you check the CP option with Sign as I ..it would nearly fetch the same result or more but surely not less than EQ.
Regards
Anurag