‎2008 Apr 19 5:28 AM
Hi, Dear all
DATA: L_STR TYPE CHAR50,
L_FKIMG TYPE FKIMG.
DATA: BEGIN OF LS,
FKIMG TYPE VBRP-FKIMG,
END OF LS.
L_STR = '200'.
CATCH SYSTEM-EXCEPTIONS ARITHMETIC_ERRORS = 4
OTHERS = 8.
LS-FKIMG = L_STR.
ENDCATCH.
When I debug, LS-FKIMG is '0.2', not '200.000'.
But when use it to calculate, system look it as '200.000'.
What funny is that this is not for all program.
Will appreciate it for your reply.
Thanks.
‎2008 Apr 19 5:41 AM
Hi SY
I am afraid
i found
LS-FKIMG = 200.000 while debugging and output also.....
nothing strange in that nothing funny:)
‎2008 Apr 19 5:48 AM
hi,
Thank you for your reply.
That happens when I print out tax invoice, t-code is VF02/VF03 , in printing program.
But if I create customizing report, it will be no issue.
How come?
Thanks.
‎2008 Apr 19 6:04 AM