Hello,
Can anyone tell me how to keep the zebra ZM4 from printing a duplicate label when I run my ABAP to print a bar code label it prints two. Thanks.
Post the sapscript code, and the print program code.
We use the same printers here. We didn't use Barone to generate the sapscript, we directly typed the ZPII code into the sapscript form.
Regards,
Rich Heilman
You already have an active moderator alert for this content.
Hi,
Your solution of adding a text element in SAP script worked well for me. Thanks a lot.
Regards
Damodhar
Hello -
Two ways to get Duplicate.
If you are using Barone, You can give a command for No. of Labels to be printed.
Other way, before OPEN_FORM fm, Give the Parameter "OPTIONS"
ITCPO-TDCOPIES = 2
Hi Rashid,
I can't locate my ZPL Programming reference but I faced a similar problem and ^PQ command was the reason. Check the syntax of this command or simply try changing this -
from - ^PQ1,0,1,N
to - ^PQ1,0,1,1
Sanjeev
Add comment