cancel
Showing results for 
Search instead for 
Did you mean: 

Consignment stock transfer without accounting document

former_member225044
Active Participant
0 Kudos

Hello,

There is One Company code 1000, this is having two plants 1000 and 2000, Now this company code is aquring one more plant , so for this we are doing rollout for that plant.

That plant has named as 3000,

Created Plant 3000 is situated some 10 km from there existing location.In old location some consignment stock is there, we need to transfer that stock to 3000 New created plant.

But suppose we transfer the stock from Consignment to Unrestricted then, accounting document is generated,(so that old owner of the plant is not agree for this.).

And it is not possible to scrap , bcz we need to transfer material physicaly form one old location to new location..Plant 3000

how to map this scenarion...without affecting to Vendor and old owner ( old owner does not want acccounting document).

How to map this scenario,

Regards

Sapman man

View Entire Topic
Former Member
0 Kudos

hi,

It can be achieved using ABAP changes . If you want copy mvt type 411K to another mvt type so that account posting is not stopped for all consginemt to own stock conversion ......and use that mvt type for conversion....or else without copying also u can achieve :

in the badi MB_DOCUMENT_BADI

method : MB_DOCUMENT_BEFORE_UPDATE

Put all necesaary checks like for mvt type 411 K , any specific material type

stop account posting...

to stop account posting just write one line : ( ) its pretty simple )

*Field name to be cleared to stop account posting

c_fieldname(16) TYPE c VALUE '(SAPMM07M)UPD_RW',

*For reading field name to stop account posting

g_fieldname TYPE fieldname,

g_fieldname = c_fieldname.

ASSIGN (g_fieldname) TO <updrw>.

CLEAR: <updrw>.

This worked in SAP 4.7C