cancel
Showing results for 
Search instead for 
Did you mean: 

Attribute PURCH_ORGX is defined as having a single value

Former Member
0 Kudos

Dear Friends,

I am getting the following erro message in SRM (Browser).

Attribute PURCH_ORGX is defined as having a single value .

What can cause this problem.

Need your help.

Thx

Marco

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

See if this could help you

Go to SM30 , maintain table T770MATTR. Look for Attribute PURCH_ORGX in Scenario BBP. Set the indicator Invisible to X if you are not using this attribute. This attribute is INvisible in standard system as I see it at my end..

Regards

Virender Singh

Former Member
0 Kudos

I do not understand the context of your question with my answer

Answers (3)

Answers (3)

Former Member
0 Kudos

I have ask for OSS Support

Former Member
0 Kudos

Hi,

Go to t.code SM 30 and enter table T77OMATTR. Then check for the field 'Multi-val' for an attribute PURCH_ORGX. Tick the check box against this field to allow multiple values for this attribute.

Regards,

Krishna.

Former Member
0 Kudos

this problem is still existing. I seems to be a common problem with the attributes.

former_member183819
Active Contributor
0 Kudos

Hi marco

you need debug with technical resource and why this is coming for all ?

Muthu

former_member183819
Active Contributor
0 Kudos

RH_OM_ATTRIBUTES_VALUE_CHECK

  • check multiple

CLEAR last_attrib.

LOOP AT check_tab WHERE multiple IS INITIAL.

IF check_tab-attrib = last_attrib.

MESSAGE e107(5at) WITH check_tab-attrib INTO dummy.

  • Attribut ist einwertig

PERFORM write_message USING loghandle errorlevel.

ENDIF.

last_attrib = check_tab-attrib.

ENDLOOP.

or

MP122220

IF multiple IS INITIAL AND NOT i1222-attrib IS INITIAL.

LOOP AT dyn_tab INTO it1222.

IF it1222-attrib = i1222-attrib AND dyn_tab_index NE sy-tabix.

CLEAR: i1222-attrib, i1222-low, i1222-high.

MESSAGE e107(5at) WITH it1222-attrib.

E 5AT 107 Attribute &1 is defined as having a single valu

when and what situatio this erorr comes.

is your purchase group assigned to purchase organisation.

Muthu

Former Member
0 Kudos

Hi Muthuraman,

do you mean it is mandatory

to assign purchase group to purchase organisation ???

If so, do you mean my own or the whole organization's

Regards

MArco

former_member183819
Active Contributor
0 Kudos

Hi '

In SRM , your purchase group must assigned to one purchase organisation.

Uneder one purchase organisation , you can assign many many purchase group.

in ECC , purchase group and purchase organisaton there is no link

Muthu

Former Member
0 Kudos

Muthu is correct.

at one of my client we have configured a custom attribute PURCH_GRP in org structure and implemented a BADI to derive the PGRP from user attributes unlike the traditional way of letting system determine the PORG/PGRP. if this helps!