on 2025 Feb 07 8:12 AM
Here is my below code :
DATA : lv_sum_wrbtr TYPE dmbtr.
lv_sum_wrbtr = lv_sum_wrbtr + lv_wrbtr.
APPEND VALUE #( vendor = 'TOTAL'
txbhw = lv_sum_txbhw
gst = lv_sum_wrbtr
tot_inv_value = lv_sum_tot_inv_value ) TO lt_mail_mails.
CALL FUNCTION 'WWW_ITAB_TO_HTML'
EXPORTING
table_header = wa_header
TABLES
html = t_html_x
fields = t_fields
row_header = t_header
itable = lt_mail_mails.
ls_html_x-line
= '<P>' && 'Please be adviced that, until the issue is resolved, above mentioned GST amount <b>INR. '
&& lv_sum_wrbtr &&' </b> will be temporarily put on hold in your account. We will make the payment as soon as ITC appears in GSTR 2B.' && '<br>'.
APPEND ls_html_x TO t_html_x.
While using in the above HTML code lv_sum_wrbtr is not displaying with comma separator.
my output displayed like this :
Kindly help me with the code suggestion to resolve this issue...
Request clarification before answering.
Please check format options of string templates.
For you most relevant is most likely CURRENCY formatting option.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.