2010 Sep 22 5:09 AM
Hi friends,
data: v_test type char14.
i want to add the value of '*' and payr-rwbtr.
Ex: payr-rwbtr contain 4568.24.
rwbtr field length-13.
my reqrmnt is *4568.24.
in smartforms how can i add the * with payr rwbtr
Thanks in advance.
2010 Sep 22 6:40 AM
Hi,
In smartforms you can edit the field as &'*'payr-rwbtr(CIZ)&.
By putting the * there, you will get the desired format, like *4568.24.
Thanks&Regards
Hi friends,
data: v_test type char14.
i want to add the value of '*' and payr-rwbtr.
Ex: payr-rwbtr contain 4568.24.
rwbtr field length-13.
my reqrmnt is *4568.24.
in smartforms how can i add the * with payr rwbtr
Thanks in advance.
2010 Sep 22 6:05 AM
data: temp type string value '*'.
concatenate payr-rwbtr into temp.
2010 Sep 22 6:37 AM
Hi,
DATA:TEMP TYPE C VALUE '*',
V_VALUE TYPE STRING.
CONCATENATE TEMP PAYR-RWBTR INTO V_VALUE.Use v_value to display that data wherever necessary in smartforms.
If you need to display this inside table then create PROGRAM LINES , write the concatenate code over there and display wherever u need to.
Declare those two variables in GLOBAL DATA tab.
Regards,
Vanitha P
2010 Sep 22 6:40 AM
Hi,
In smartforms you can edit the field as &'*'payr-rwbtr(CIZ)&.
By putting the * there, you will get the desired format, like *4568.24.
Thanks&Regards
2010 Sep 22 6:55 AM