‎2005 Nov 02 3:04 PM
I need to print quotation no(vbdka-vbeln) by adjusting it by zeros to 10 characters. i know that &symbol(F0)& should work. But this does not fill the field.Any suggestions?
Thanks
‎2005 Nov 02 3:19 PM
Hi,
Try using &vbdka-vbeln(F0)& for printing quotation # with leading zeros.
Vamsi.
‎2005 Nov 02 3:09 PM
Hi,
Declare a variable of type N length 10 in u r print program. Assign the value of vbdka-vbeln to it and use the same field in the layout for printing.
data:v_num(10) tyne n.
v_num = vbdka-vbeln .
use &v_num& in the layout for printing with leading zeros.
plz reward points.
Thanks,
Vamsi.
‎2005 Nov 02 3:18 PM
Hi
you can use a variable (long 10 char) type c to print the number.
The field VBDKA-VBELN is associate to conversion routine ALPHA to remove the zero at the left.
Max
‎2005 Nov 02 3:19 PM
Hi,
Try using &vbdka-vbeln(F0)& for printing quotation # with leading zeros.
Vamsi.