cancel
Showing results for 
Search instead for 
Did you mean: 

script

Former Member
0 Kudos

HI,

my form is display the one hundred Oman Rials and not one hundred OMR.

how can dispaly the payment forms. could you tellme suggestion.

THanks and regards.

Srinivas.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

If your form is script:

If your print program a custom one then before passing it to the form layout do the following:

constant: lc_label type char3 value 'OMR'.

v1 = 'one hundred Oman Rials'.

split v1 at 'Oman Rials' into v2.

concatenate v2 lc_label into v3.

Now pass this V3 and display V3.

Smartforms:

Apply logic in the programming lines:

constant: lc_label type char3 value 'OMR'.

v1 = 'one hundred Oman Rials'.

split v1 at 'Oman Rials' into v2.

concatenate v2 lc_label into v3.

Br,

Laxmi