24.1.11

SAP Note 18809 - Pur. req. Customizing release: Decimal amnts ignored

Symptom:

Purchase requisition Customizing: Release strategy determination (transaction OME6):
If you create a new entry, the purchase requisition value is rounded to a full amount, for example, from 678,80 DEM to 679,00 DEM.

Cause and prerequisites

Program error.

Solution
See the correction numbers listed in this note.
The following advance correction is possible:
Program L0ME1I30, module BWERT:

IF V_161I-WAERS EQ SPACE.
MESSAGE E049(ME).
* Bitte entweder Werk oder Währung eingeben
ENDIF.
ENDIF.

DATA: H_BWERT LIKE ROLMG1-BWERT. "<--- insert
* MOVE ROLMG1-BWERT TO V_161I-BWERT. "<--- delete or star
* COMPUTE V_161I-BWERT = V_161I-BWERT * 100. "<--- delete or star
H_BWERT = ROLMG1-BWERT * 100. "<--- insert
V_161I-BWERT = H_BWERT. "<--- insert
* Bei eingeschalteter Festpunktarithmetik muß mit der Anzahl der Dezi-
* malstellen multipliziert werden, um in N die richtige Zahl aus P zu
* erhalten.
ENDMODULE.

No comments:

Post a Comment