After importing the FCS 3.0, the values of the column Value in table T510J are 100 times too small.
This applies to all clients except client 0.
It is possible that XPRA RPU30009 ran twice in the FCS System
SolutionYou can partially restore the table entries using the following report:
Report chT510j.
tables: t510j.
select * from t510j
client specified
where mandt <> '000'
order by primary key.
t510j-wert1 = t510j-wert1 * 100.
update t510j client specified from t510j.
endselect.
Please remember that the previous division might have rounded values off, and that these cannot, therefore, be restored with the above report. This is always the case if the value is not a whole number. These fractions disappear after the two divisions by 100.
This means that you should check the table entries manually after running the report!
No comments:
Post a Comment