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

ABAP/Support

Former Member
0 Likes
386

Hi SAP experts,

I am new to SAP support project . I got issue regarding material creation through MM01 while creating a material it gives the message like "Impossible to use S price for plant".

Pls help me in this regard and give me some directions to resolve it.

Thanks in advance.

cheers,

Vasu.

2 REPLIES 2
Read only

former_member156446
Active Contributor
0 Likes
364

hi Vasu

That materials say its getting created in plant 'A' , might not be alowing to use standard price....

generally materials can be created with prices S or V.. standard price and moving avg price... give a try with V

check with the FC, how is that plant configured... and is there any thing spl with that plant...

Read only

0 Likes
364

Hi ,

Thanks for your prompt reply..

Actually i found an enhancement which related to the message .Pls check the code and suggest me how to resolve it..?

IF wmbew-bwkey NE space.

  • check s v

TABLES:t001k.

SELECT SINGLE * FROM t001k WHERE bwkey EQ wmbew-bwkey.

IF t001k-bukrs EQ '0015'

*CA added Canada company code Begin.

OR t001k-bukrs EQ 'CA01'

  • CA added company code End.

added by erp-zengyin for speed II project, on 2007/05/17-------begin

OR t001k-bukrs EQ '0011'

-end*

*Insertion by zhouhm_cn for SOH project on 20070215 begin ***

OR t001k-bukrs EQ 'SG01'.

Insertion by zhouhm_cn for SOH project on 20070215 end

IF wmbew-vprsv EQ 'S'. " 0015

MESSAGE e002(zhk).

ENDIF.

ELSE.

IF wmbew-vprsv EQ 'V' .

MESSAGE e003(zhk).

ENDIF.

ENDIF.

cheers,

vasu.