2013 Apr 09 8:05 AM
|
|
2013 Apr 09 9:27 AM
Hello,
Use function module STRING_REPLACE to convert the decimal notation.
CALL FUNCTION 'STRING_REPLACE'
EXPORTING
pattern = ','
substitute = space
changing
text = lv_text
EXCEPTIONS
WRONG_STRING_LENGTH = 1
OTHERS = 2.
And also check
report zrich_0004.
data: c(100) type c.
data: length type i.
data: offset type i.
c = '1223,54'.
length = strlen( c ).
offset = length - 3.
translate c+offset(1) using ',.'.
write:/ c.
Or use replace all occurrences of statements
Thanks,
Abhijit
2013 Apr 09 9:33 AM
Thanks for the reply Abhijit.
I can use that code, but the thing is the emails display correct format in our Development and Quality clients, only in Production this format is displayed.
Could this be some setting?
Thanks and Regards,
Ashu
2013 Apr 09 9:58 AM
Check the requestor decimal notation in SU01, also check the company code decimal notation in OY01.
2013 Apr 09 10:51 AM
Thanks everyone for the replies.
Just found out the setting of the Workflow background user that is responsible for sending emails was incorrect.
I corrected the same and problem is resolved.
Thanks again.
Regards,
Ashu