Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

string problem

Former Member
0 Likes
676

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
657

CONCATENATE those this into a final variable............

and display...

Regards

Anbu

Edited by: Anbu B on Jun 11, 2008 8:47 AM

5 REPLIES 5
Read only

Former Member
0 Likes
658

CONCATENATE those this into a final variable............

and display...

Regards

Anbu

Edited by: Anbu B on Jun 11, 2008 8:47 AM

Read only

Former Member
0 Likes
657

At the end add.

Concatenate 'S$' G_AMT_IN_TXT 'CENTS' into G_FINAL_AMT separated by ' '.

Best regards,

Prashant

Read only

Former Member
0 Likes
657

Hi,

Concatenate 'S$' G_AMT_IN_TXT 'CENTS' into lv_string separated by space.

Thanks,

Anon

Read only

Former Member
0 Likes
657

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

Read only

Former Member
0 Likes
657

thanks to all