2.2.11

SAP Note 21582 - Goods issue for delivery on CO order

Symptom:

The following error message is displayed when posting a goods issue delivery: 'BS027: Business transaction RMWL is not permitted for order 123456'.

Cause and prerequisites

A cost element is assigned to the material in question for which an internal CO order was entered as a target account assignment via the automatic account determination. However, the business transaction in question 'RMWL' (Goods Issue for Delivery) is defined as not being relevant in the status management of CO.

Solution
See also note 8695.

Run the following report in your system. This report causes that the business transaction 'Goods Issue for Delivery' is dealt with exactly the same way in the status management as the business transaction 'G/L Account Posting' (RFBU).
REPORT ZBSVRFIG .

TABLES: TJ01,
TJ05,
TJ07,
TJ31,
TKAVG.

UPDATE TJ01 SET VRGSV = 'X'
WHERE VRGNG = 'RMWL'.

SELECT * FROM TJ05 WHERE VRGNG = 'RFBU'.
TJ05-VRGNG = 'RMWL'.
INSERT TJ05.
ENDSELECT.

SELECT * FROM TJ07 WHERE VRGNG = 'RFBU'.
TJ07-VRGNG = 'RMWL'.
INSERT TJ07.
ENDSELECT.

SELECT * FROM TJ31 CLIENT SPECIFIED
WHERE VRGNG = 'RFBU'.
TJ31-VRGNG = 'RMWL'.
INSERT TJ31 CLIENT SPECIFIED.
ENDSELECT.

SELECT * FROM TKAVG CLIENT SPECIFIED
WHERE ACTIVITY = 'RFBU'.
TKAVG-ACTIVITY = 'RMWL'.
INSERT TKAVG CLIENT SPECIFIED.
ENDSELECT.

No comments:

Post a Comment