ganesh_kapase
11th April 2006, 13:11
Hi
How to print * marks as prefix to numeric fig. Suppose print length of a particular domain is 12 and fig is of 8 digits as 12345678 then I need to print value as ****12345678
Let me know what print format I should use in the report fields.
Thanks & Regards,
pellus
11th April 2006, 13:24
Ganesh, look in the the manual on edit$ -command. I think your reqmt is covered there. If not, try the descr of the sprintf-command. If nothing helps , you can consider some programming in the script or report script. Or a combination of all.
norwim
11th April 2006, 13:54
Hit there,
sprintf("%@*ZZZZZZZZZZZZ@",variable) should do the trick, according to the sprintf section of the tools manual.
hth
Norbert
ganesh_kapase
11th April 2006, 13:59
Pellus / Norwin
How to use edit$ or sprint$ commands in the Maintain Report Layout fields (ttadv3134s000). For more info. plz see the attachment.
norwim
11th April 2006, 16:14
Have you tried to fill the field 'print format'?
Try either
*ZZZZZZZZZZZZ
or
%@*ZZZZZZZZZZZZ@
The first variant should be correct, as ZZZ9VD99 would be a correct value for example.
Good luck
Norbert