‎2008 Jun 11 7:45 AM
hi
am working on smart forms
i used spell_amount function module ater tht
CONCATENATE l_spell-WORD l_spell-DECWORD INTO G_AMT_IN_TXT
SEPARATED BY ' AND '.
in the output it will showup as
ONE HUNDRED AND THIRTY THREE
fine till tht point.
now i had to show S$ and atlast CENTS
like S$ ONE HUNDERED AND THIRTY THREE CENTS
how to do it
thanks in advance
uday
‎2008 Jun 11 7:46 AM
CONCATENATE those this into a final variable............
and display...
Regards
Anbu
Edited by: Anbu B on Jun 11, 2008 8:47 AM
‎2008 Jun 11 7:46 AM
CONCATENATE those this into a final variable............
and display...
Regards
Anbu
Edited by: Anbu B on Jun 11, 2008 8:47 AM
‎2008 Jun 11 7:47 AM
At the end add.
Concatenate 'S$' G_AMT_IN_TXT 'CENTS' into G_FINAL_AMT separated by ' '.Best regards,
Prashant
‎2008 Jun 11 7:48 AM
Hi,
Concatenate 'S$' G_AMT_IN_TXT 'CENTS' into lv_string separated by space.
Thanks,
Anon
‎2008 Jun 11 8:06 AM
Hi ,
You can do this by the same way using concatenate statement.
Concatenate 'S$' G_AMT_IN_TXT 'CENTS' into w_string separated by space.
Reward pts if helpfull,
Regards,
Dhan
‎2008 Jun 11 8:26 AM