cancel
Showing results for 
Search instead for 
Did you mean: 

Item category not changeable in sales order

Former Member
0 Kudos

Hi

I have a material where the item category is not changeable in the sales order after you have pressed 'enter' after the material number. It is a bundle material number, with a BOM (structure scope 'A') - does this mean that the item category is greyed out for change?

It is causing a problem because to select the manual item category in item category assignment, you have to change it before you press enter (and when you do that it only gives you a full list of item categories rather than the ones you can select for the assignment table).

Jon

Accepted Solutions (0)

Answers (1)

Answers (1)

rmazzali
Active Contributor
0 Kudos

this is standard sap !

the reason is that if you change something that has relations with other object then problems can raise.

You cannot do anything for this but you can make a user exit at your own risk that 'opens' up the field:

the exit looks like this:

MV45AFZZ

FORM userexit_field_modification.

CASE screen-group2.

WHEN 'LOO'.

IF screen-name = YourItemCategory AND xvbup-gbsta = ' '.

screen-input = 1.

MODIFY SCREEN.

ENDIF.

ENDCASE.

ENDFORM. "USEREXIT_FIELD_MODIFICATION

ROberto