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

need help on materialgetlist

Former Member
0 Likes
761

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
717

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

6 REPLIES 6
Read only

Former Member
0 Likes
717

Hi,

CP stands for "Contains pattern" while EQ stands for "Equals".

BR,

Disha.

Read only

Former Member
0 Likes
717

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

Read only

Former Member
0 Likes
717

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

Read only

Former Member
0 Likes
718

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

Read only

0 Likes
717

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

Read only

0 Likes
717

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