Problem in printing copies through vf31

Dear Gurus
I have copied a program
RLB_INVOICE
and change it with my requirement.
created a smartform
and inserted this code in a window of type  "COPIES WIINDOW"
if sfsy-copycount = 001.
text = 'ORIGINAL'.
elseif sfsy-copycount = 002.
text = 'TRIPLICATE'.
elseif sfsy-copycount = 003.
text = 'DUPLICATE'.
endif.
the problem im facing is that
when i execute transaction vf31 and select the document that  i want to print and give criteria for number of messages as 3.
and print the document.
it print 3 documents but it doesnot change the text on copies.
where im going wrong
please help
regards
Saad Nisar.

i  think now  problem is  from ur  printer  side.
contect  ur  basis person  and  check  all printer  setting  may  be  ur  problem   solved or  wait  for  more reply....
or  just  check  ur  text element for  barcode...

Similar Messages

  • Problem Pushing Printer Preferences through Group Policy

    Most of the time, networked printers that we push through group policy preferences show up just fine on our clients (Windows 7). About 1 in 10 computers fail however, and it's driving me up the wall! The computer that fails is not consistent, meaning I can
    reboot a computer and the printer then shows up correctly. It may not, however, a week later. Fairly random. Looking through the application event log, I uncovered this:
    The user 'myprinter' preference item in the 'mygrouppolicy {7EDE8A14-773C-4E43-93AE-050240E0B204}' Group Policy object did not apply because it failed with error code '0x800706ba The RPC server is unavailable.' This error was suppressed.
    Again, this error does not occur all the time, though if I reboot a large group of computers, it will definitely show up on 1 or 2 of them. At this point, I'm looking for any suggestions for a next step. Thanks!
    -Peter

    Hello Modab,
    If you reboot server the printer is redeployed properly. It is possible that when the printer is deployed the network is still not prepared properly so the RPC error
    is popped up.  Please try the following suggestions:
    1. Disable Fast Logon feature
    Enable the
    [Computer Configuration \ Administrative Templates \ System \ Logon \ Always wait for the network at computer startup and logon]
    group policy.
    Logon Optimization
    http://msdn.microsoft.com/en-us/library/aa374350(VS.85).aspx
    Description of the Windows XP Professional Fast Logon Optimization feature
    http://support.microsoft.com/kb/305293/en-us
    2. Group policy application issue may occur because of Gigabit NIC. Please try the suggestions in the following steps and KB.
    a.      
    To prevent your network adapter from detecting the link state(For Windows Vista/7):
    Run the following commands one by one:
    netsh interface ipv4 set global dhcpmediasense=disabled
    netsh interface ipv6 set global dhcpmediasense=disabled
    For Windows XP, you can see
    http://support.microsoft.com/kb/239924
    b.     
    Contact the vendor of the network card or visit their web site to obtain updated drivers for the Gigabit NIC.
    Examples of NICs known to exhibit this issue:
    - Broadcom Gigabit Adapter
    - Intel Gigabit Ethernet PRO Adapter, Intel Pro/1000
    - Intel 82544EI-based XT Gigabit Adapter (82540EM chipse)
    - Compaq/HP NIC dual interface 10/100/1000 doing teaming (HP NC7170)
    - Dell Inspiron laptops using an on-board Broadcom BCM4401 NIC
    c.      
    A sever may have a Dual Port NIC or multiple NIC's with one port or NIC set to Disabled. The disabled port or NIC should not be at the top of the binding order in the Network
    Advance Properties.
    1.      
    Click Start, point to Settings, and then click "Network and Dial-up Connection".
    2.      
    On the Advanced menu, click "Advanced Settings".
    3.      
    On the "Adapters and Bindings" tab, in the connections list, select the NIC that the clients use to connect to the server and move it to the top of the list.
    d.     
    Turning off STP can cause issues in your network if a loop ever develops. If you are running a Cisco Series switch or any other switch that runs Spanning Tree, it is best to
    leave spanning tree turned on, but enable PORTFAST on all the ports except uplink and fiber trunks.
    326152 Cannot connect to domain controller and cannot apply Group Policy with Gigabit Ethernet devices
    http://support.microsoft.com/default.aspx?scid=kb;EN-US;326152
    3.
     Remove all of 3rd-party software such as firewall software.
    4.  Set a registry value to delay the application of Group Policy.
    http://support.microsoft.com/kb/2421599
          http://support.microsoft.com/kb/840669
    Brent Hu,
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • Problem while printing through citrix

    Dear Gurus ,
    We are facing the problem during printing through citrix .
    When we print locally without using citrix  were able to get the proper print as it displayed in the spool .
    But When we try to take the printout of  document having say 12 colum , only 10 colums r coming asthe print out .
    Please suggest as the views on this issue are valuable
    Thanks in advance .
    Chirag Kohli .

    Hi
    I am facing same problem
    Please let me know if you get any solution
    Thanks
    Rakesh Patel
    [email protected]

  • Problem in printing to LPT1 through applet?

    Hello everyone,
    I am having problem in printing through Applet in LPT1 of remote client machine using "gridDoubleClicked" method of customized "GridPanel" which is third party component. The class structure is given below:
    public class GridPanel extends Panel implements GridPanelInterface, AdjustmentListener, KeyListener, FocusListener, Serializable
    }I am using above class to populate data in table and perform "double click" action. I am using JDK 1.5 and a self signed jar to access from remote machines through applet.The code, I am using is given below:
    public class testApplet extends Applet {
        printToLPT1 lpanel =new printToLPT1();
        public void init() {
          this.setLayout(new BorderLayout());
          this.add(lpanel, BorderLayout.CENTER);
          this.setSize(380, 250);
    public class printToLPT1 extends Frame{
    GridPanel grid;
    public printToLPT1() throws Exception {
    grid.addGridListener(new GridAdapter() {
                public void gridDoubleClicked(GridEvent ge) {               
                    testPrint();
    public static void testPrint() throws Exception {
            try {
                BufferedOutputStream pos = new BufferedOutputStream(new FileOutputStream("LPT1"));
                String str = "\n\n\n\n\n\n\n\n\n\n\n";
                pos.write(str.getBytes());
                pos.flush();
                pos.close();
            } catch (Exception fnfe) {
                throw new Exception("PRINTER SETUP IS NOT PROPER");
    }For applet, I have used following script in login.html:
    <APPLET
         height="200px"
         archive="testprinter.jar,jbcl.jar,grid.jar,plugin.jar" 
         width="390px"
         align="top"
         code="test.testApplet.class"
         name="Testing"
        ALT="<P>This applet requires Java to be enabled!  Check the browser options or see your SysAdmin." MAYSCRIPT>
        <P>This page requires Java!  Get it free from <A HREF='http://www.java.com/'>www.java.com</A>.</P>
    </APPLET>
    ------------------- If signed jar file of application is run using command line in client machine then "double clicked" of GridPanel method works fine and send signal to printer at LPT1 port but when same application is called using applet and accessed from remote machine with printer in LPT1 port, in that time also "double clicked" of GridPanel method works fine but printer could not be found and Exception is thrown java.lang.Exception:"PRINTER SETUP IS NOT PROPER" . Why is this happening? Can anyone suggest me the solution for this problem?
    Thanks in advance.
    -Ritesh
    Edited by: ritesh163 on Apr 15, 2010 2:56 PM

    The SSCCE for this problem is given below:
    //Applet class
    package test;
    import java.awt.BorderLayout;
    import javax.swing.JApplet;
    public class testApplet extends JApplet {
        testPrint lpanel =new testPrint();
        public void init() {
          this.setLayout(new BorderLayout());
          this.add(lpanel, BorderLayout.CENTER);    
          this.setSize(380, 250);    
    // Printing class...
    package test;
    import com.borland.jbcl.layout.XYConstraints;
    import java.awt.Color;
    import java.awt.event.KeyAdapter;
    import java.awt.event.KeyEvent;
    import java.io.BufferedOutputStream;
    import java.io.FileOutputStream;
    import wdn.grid.GridAdapter;
    import wdn.grid.GridData;
    import wdn.grid.GridEvent;
    import wdn.grid.GridPanel;
    public class testPrint extends javax.swing.JFrame {
        // Variables declaration - do not modify                    
        private javax.swing.JButton btnPrint;
        private javax.swing.JPanel jPanel1;
        // End of variables declaration     
        GridPanel grid;
        GridData gdata;
        String[] gridCols = {
            "Receipt No", "Name"};
        public testPrint() {
            grid = new GridPanel(0, 8);
            gdata = new GridData(0, 8);
            grid.setRowHeaderWidth(0);
            grid.setGridData(gdata);
            grid.setMultipleSelection(false);
            grid.setColWidths("100,60");
            grid.setColHeaders(gridCols);
            setGridProperties(grid);
            grid.setColSelection(false);
            this.setVisible(true);
            grid.addGridListener(new GridAdapter() {
                public void gridDoubleClicked(GridEvent ge) {
                   //This event works fine...
                    System.out.println("Press Re-Print button...");
                    try{
            stringToPrinter("testing by grid \n\n\n\n\n\n\n\n\n\n\n\n\n");
            }catch(Exception ex){
                ex.printStackTrace();
                public void gridCellsClicked(GridEvent ge) {
                    btnPrint.setEnabled(true);
            initComponents();
            jPanel1.add(grid, new XYConstraints(52, 60, 100, 150));
            grid.deleteRows(1, grid.getNumRows());
            grid.insertRow(1);
                        grid.setCellText(1, 1, "12134", false);
                        grid.setCellText(2, 1, "test" + "", false);
                        grid.repaintGrid();
        private void initComponents() {
            jPanel1 = new javax.swing.JPanel();
            btnPrint = new javax.swing.JButton();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            btnPrint.setText("Print");
            btnPrint.setToolTipText("to Print");
            btnPrint.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    btnPrintActionPerformed(evt);
            org.jdesktop.layout.GroupLayout jPanel1Layout = new org.jdesktop.layout.GroupLayout(jPanel1);
            jPanel1.setLayout(jPanel1Layout);
            jPanel1Layout.setHorizontalGroup(
                jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(jPanel1Layout.createSequentialGroup()
                    .add(36, 36, 36)
                    .add(btnPrint)
                    .addContainerGap(287, Short.MAX_VALUE))
            jPanel1Layout.setVerticalGroup(
                jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(org.jdesktop.layout.GroupLayout.TRAILING, jPanel1Layout.createSequentialGroup()
                    .addContainerGap(198, Short.MAX_VALUE)
                    .add(btnPrint)
                    .add(57, 57, 57))
            org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(layout.createSequentialGroup()
                    .addContainerGap()
                    .add(jPanel1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                    .addContainerGap())
            layout.setVerticalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(layout.createSequentialGroup()
                    .addContainerGap()
                    .add(jPanel1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                    .addContainerGap())
            pack();
        }// </editor-fold>                       
        private void btnPrintActionPerformed(java.awt.event.ActionEvent evt) {                                        
            try{
            stringToPrinter("testing \n\n\n\n\n\n\n\n\n\n\n\n\n");
            }catch(Exception ex){
                ex.printStackTrace();
        public static void setGridProperties(GridPanel grid) {
            grid.setRowHeaderWidth(0);
            grid.setAutoResizeColumns(true);
            grid.setRowNumbers(true);
            grid.setCellSelection(false);
            grid.setRowSelection(true);
            grid.setHighlightColor(Color.blue);
            grid.setHighlightTextColor(Color.white);
            grid.setAutoResizeRows(true);
            grid.addKeyListener(new KeyAdapter() {
                public void keyTyped(KeyEvent e) {
                public void keyPressed(KeyEvent e) {
                    if (e.getKeyChar() == KeyEvent.VK_SPACE) {
                public void keyReleased(KeyEvent e) {
        public static void stringToPrinter(String str) throws Exception {
            try {
                System.out.println("inside stringToPrinter...");
                BufferedOutputStream pos = new BufferedOutputStream(new FileOutputStream("LPT1"));
                System.out.println("inside stringToPrinter...1-pos::"+pos);
                pos.write(str.getBytes());
                pos.flush();
                pos.close();
            } catch (Exception fnfe) {
                throw new Exception("PRINTER SETUP IS NOT PROPER");
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new testPrint().setVisible(true);
    }

  • Problem with printing through SAP

    Hi All,
    We have problem with printing, only one person through SAP can only print the documents successfully and the remaining are getting incomplete print output. This is happening only for transactions GD23 and FB03 (FI related transactions). We have tried with removing Saplpd folder and installing Sprint as suggested by SAP from note 894444. Still problem persists. Please suggest me in this regards.
    Veerendra Kumar.

    Hi Ardhian,
    We are using Front end printing and already installed SAP GUI new version i.e. 7.10.
    Only one user is able to print the document correctly from SAP, and other are getting incorrect print and getting error message "System cannot print the last 80 columns of the report" on one system.
    SAP version we are using is 4.7EE.
    Let me know if any more information needed for analysing the issue.
    VeerendraKumar.
    Edited by: Veerendra Kumar Mutyala on Feb 20, 2009 5:35 AM
    Edited by: Veerendra Kumar Mutyala on Feb 20, 2009 5:37 AM

  • I have a Problem in print the long description data through EDI.

    I have a Problem in print the long description data through EDI:Actually we want to print the long description data through EDI, but it not handling our huge long description data. Here is the example of that>We can print the first two lines into EDI output, but it is failing to print the below text: 
    <B>EPSON, TM-U590 Series: </B> Reliable 88 column slip printer. Operator friendly dot matrix impact printing. Ideal for hotel, bank, restaurant and many more applications .<br><BR> Includes: Printer, Black ribbon & a Connect-It Interface. Power Supply & interface cable sold separately. All printers are RoHS compliant & have a standard 1 year depot warranty. <BR> <BR>
       -------------------------------------Failing to print this lines------------------------------------------------------------------
    <b>COLORS:</b> Epson Cool White (ECW) Only<BR><BR><B><FONT COLOR=#FF0000#>Click links below for helpful Information</FONT><b><br><table border="0" bordercolor="" style="" width="100%" cellpadding="5" cellspacing="5"><tr><td><FONT SIZE="2"><CENTER><A HREF="www.sample.com"f.2605" target="_blank"><b>Spec Sheet</b></a></CENTER></FONT></td><td><FONT SIZE="2"><CENTER><A HREF="www.sample.com"f.2606" target="_blank"><b>MSRP Price List</b></a></CENTER></FONT></td><TD><FONT SIZE="2"><CENTER><A HREF="www.sample.com"f.2868" target="_blank"><b>Product Information Guide</b></a></CENTER></FONT></TD></TR><TR><td><FONT SIZE="2" COLOR=#0000FF><B>Warranty Information</B></FONT></td></tr><Tr><td><FONT SIZE="2"><CENTER><A HREF="www.sample.com"f.2554" target="_blank"><b>Depot Warranty</b></a></CENTER></FONT></td><td><FONT SIZE="2"><CENTER><A HREF="www.sample.com"f.2555" target="_blank"><b>Spare In the Air Warranty</b></a></CENTER></FONT></td><td></td></tr></table><br>
    Please provide some useful thoughts on this EDI issue.
    Thanks
    Ameer

    Try using the FM:
    ENQUE_READ2
    Passing the follwing values:
    GNAME --> VBAK (Sales Order header table)
    GARG   --> The lock argument
                       (This will be a combination of client number anb Sales Order No.
                        Eg: '3001210000054' where the first three digit i,e 300 is the client No
                       and 1210000054 is the sales order no.)
    Regards,
    Firoz.

  • Problem in Print Out of Excise register RG1

    Dear all,
    We have a business scenario as follows:
    1.Production Order Confirmation-101, 261 for receipt
    2. Scrap Receipt-262.
    For Scrap Sales:
    The entry in RG1 should be Scrap receipt (262) and then despatch of scrap i.e issue(601).
    During updation we do the following:
    We receive  scrap in RG1 register through RMA classification. Then we issue the scrap in RG1 register through IDH Classification. The register also get updated and extracted successfully.
    Problem: While printing of RG1 register there is no entry for  Receipt (262) and issue(601) of scrap.
    Regards,

    Can anyone pls suggest how to capture Scrap sale in RG1.

  • ORARRP doesn't print to a printer configured through TCP/IP.

    Could any one using ORARRP pls. help ? I am pasting the TAR contents I opened with Oracle Support.
    Oracle Support doesn't support ORARRP. They referred me back to discussion forum.
    Thanks,
    RK
    Resolution History
    22-MAY-02 19:25:05 GMT
    Can you easily recover from, bypass or work around the problem? = NO
    Does your system or application continue normally after the problem occurs? =
    YES
    Are the standard features of the system or application still available; is the
    loss of service minor? = YES
    ### Problem Description: ###
    I am using windows 2000. I found an article which said there is a new release
    of ORARRP for windows 2000. Can I obtain the latest release of ORARRP.exe ?.
    I am having trouble printing with ORARRP. I select the output file from the web
    by clicking it. and it opens the printer dialog.. I hit O.K and nothing is sent
    to the printer.
    Need help.
    ### Upgrade or New Install?:###
    Neither
    ### Error numbers/messages:###
    no error messages.
    ###Log files faxed/emailed or uploaded ###
    Uploaded
    ###Any workarounds ###
    none
    ###Name & Version Details ###
    none
    ### Were you able to complete this process previously? When? ###
    no
    ### Can you duplicate the issue? What is the navigation path? ###
    yes
    ###Is the problem in all environments? If not what's the difference?:###
    Not Sure. Need to check with some one else who uses windows 2000.
    ###Any patches applied recently?:###
    none
    Contact me via : E-mail -> [email protected]
    23-MAY-02 00:09:27 GMT
    Issue needs to be addressed with Oracle Reports Developer. XFR->TOOLSREP
    23-MAY-02 01:06:04 GMT
    New info : Hi Oracle Support,
    I found that the ORARRP works fine and submits report to the Printer if the
    printer is defined through Novell Netware Network.
    But if the same printer is defined through I.P address directly as a local
    Printer it doesn't work. ( Add new port , Standard TCP/IP port method in
    Windows 2000).
    Does it give us any clue to solve this issue ?.
    Pls. Help.
    Thanks,
    RK
    23-MAY-02 13:19:58 GMT
    Investigating this issue...
    23-MAY-02 13:32:25 GMT
    Hi,
    My understanding is that you where trying to print using ORARRP utility on the web
    Since you are trying on an muti-tiered server(that is web is 3-tier)
    by default this report will be printed out to the default printer assigned to
    the application server machine , NOT to the client machines default
    printer.
    For example,
    Machine 1 - the application server machine
    Machine 2 - the client machine
    Machine 2 submits a request to run a report to the multi-tier server with
    DESTYPE set to PRINTER; DESNAME is left blank.
    Printing will be on the default printer of Machine 1(Application server)
    and not on Machine 2(Client PC)
    If I am wrong inmy understanding, please eloborate
    Best rehards
    Chandru
    23-MAY-02 13:32:44 GMT
    Email Update button has been pressed -- Sending email.
    23-MAY-02 15:08:03 GMT
    New info : A Big No. We are running the 10.7 version of Oracle applications and
    there is no middle tier per se.
    All we have done is to define a new printer called "LOCAL_PRINTER" and when
    users select this printer the initiaization string which the Print command
    sends to the printer before sending the file gets added to the output file and
    the output file is stored in a directory which is accessible through a web
    server.
    Users invoke the browser and point to the website where the output files are
    avaiable. and then click on their request ids. Since the extension of the file
    is .rrpt the ORARRP utility brings the Printer dialog where we have select the
    printer.
    This setup was working sucessfully till so far. ( Past 1 year).
    Now it suddenly didn't work for a user's printer which was connected to her PC.
    Since I had windows 2000 on my laptop and I tried the same and found that the I
    select a PC which is defined through I.P Address then it is not working. But
    if I select the same printer defined through Novell Netware it is working.
    Please let me know if you are getting the picture. if not may be we can do a
    webex session or something like that.
    Thanks,
    RK
    916-630-3508
    23-MAY-02 15:51:40 GMT
    Hi,
    Sorry, I do not find any related notes on this issue
    Possibly the PDF by name orarrp1.3.4.pdf in the ZIP file [downloadale at http://otn.oracle.com/sample_code/products/reports/files/Orarrp_1_3_4.zip] could show some pointers on this issue.
    This PDF about this utility and is the only document I could find on this issue
    ORARRP is a sample supllied "AS IS" to customers and is currently not supported by Oracle Support
    Users facing any issues with this utility are encouraged to share their experiences in OTN forum at http://otn.oracle.com
    This forum is being monitored by Product Management who can help customers as well as provide fixes for this utility
    Please close the tar and post in OTN forum
    Thanks
    Chandru
    23-MAY-02 15:51:51 GMT
    Email Update button has been pressed -- Sending email.
    23-MAY-02 10:24:13 : CHANGES MADE VIA MetaLink
    NOT YET FORWARDED TO OUR INTERNAL SYSTEMS :
    Closed by customer
    Closing the TAR

    Hi Radhakrishnan,
    ORARRP doesn't actually do any printing itself. Via COM/Active-X, it calls the appropriate program that corresponds to the type of output, and then this program does the actual printing. For PDF, it calls Acrobat Reader to print the document. Acrobat Reader displays the printer dialog to let you choose which printer to use, and then when you click OK, Acrobat Reader prints the document and sends it to the printer.
    I expect that you'll find that when you use Acrobat Reader yourself on this machine it has exactly the same problems with this particular printer configuration. If so, you'll need to contact Adobe for further assistance.
    regards,
    Stewart

  • HP Officejet Pro 8600 "Problem with Printer or Ink System'

    A gander at this forum suggests I am one ofa multitude of people perplexed by this issue. There is a notation beside one enquiry which says 'Problem Solved'.... well it isn't for me. My printer (typical!) is one month out of warranty. I had to replace the black cartridge and, when I did, it came up with this error prompt. I then replaced all the other cartridges. HP suggests removing the printhead and following that they say place it 'upside down on a clean sheet of paper'... NO instructions for cleaning it!! When it is replaced in the printer they suggest you 'rock the printhead left and right to make sure that the printhead fully seats in the carriage' and if THIS doesn't fix things 'try reseating the printhead up to 3 times'... This in itself is an admission of an 'issue' with this product. It doesn't sound like a very scientific engineering 'fix' to me!
    A new printhead costs almost what we paid for the printer a year ago. I hate consigning anything to landfill that I can avoid... unfortunately it looks like that is where this unit belongs...

    Hi @Robin_Perth,
    Welcome to the HP Forums!
    I am sorry to hear about you getting the problem with printer or ink system error, with your HP Officejet 8600, but I am happy to look into this for you!
    I am assuming you have already been through this guide, A 'Problem with Ink System' Error Message Displays on the Control Panel or Computer During Setup.
    If this guide does not resolve the issue, please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region. Country-language selector.
    This guide, Limited Warranty for HP Ink Cartridges and Customer-Replaceable Printheads for HP Inkjet Supplies, will help you to determine if your printhead is still in warranty or not.
    Hope this helps!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • Problem with Printer Margins

    I am working from a Dell Optiplex 755 with Windows XP, Illustrator CS2, Acrobat 8 Pro and an HP 4345 printer.
    The problem is summarized in the below paragraphed points:
    We print on an 8.5x11 sheet of paper, with artwork sized for 8.5 x 11 exactly. The artwork contains 4 quarter page images to be cut into flyers, which each have 1/4" margins all the way around them. There is a back side as well, created with the same specifications. We wish to print these flyers duplex from high quality PDF files that we created in Illustrator.
    When the print comes out, the right hand margin of the sheet is larger than the top, bottom, and left margins.
    The top, bottom, left margins= 0.166"; this doesn't effect the top, bottom, and left sides of the artwork, as the .25" margin we setup on the artwork is greater than the .166" margin of the print area.
    However, the right hand margin= 0.306"; this means that the right side of the artwork gets cut off by .056" (.306-.25")
    In order to fit all of the artwork on the page, we can either shift the Page Tiling Print Area over slightly, or we can select the print option "Shrink to Fit". However this is a problem because we are printing the two sides as a duplex (printed both sides), and the tiled artwork on the front won't line up what is printed on the back because of the larger right margin. Therefore if the sides don't line up when we go to cut, the information is going to be cut off on the opposite side to the one we are cutting.
    The printer setting for 8.5x11" paper "Letter" is what we believe to be creating the offset margin. (We checked the specifications for a Letter print, and the standard margins were identical to the ones we see exhibited in the print outs, 0.166" vs. 0.306")
    We understand that there might be a way to set up your own custom print setting through Adobe Acrobat/ Photoshop/ Illustrator for a specfic type of print job, allowing you to control the print margins, but we are not familiar with the process.
    Can you think of any other possible causes and/or solutions for the problems that are described?

    As is detailed above, I am working with Illustrator CS2. The graphic is setup on an 8.5x11" artboard with guides set to have a 1/4" margin on all sides.
    To create the PDF file, I just do a Save As>Adobe PDF through Illustrator. So to answer your question, no, I do not have Adobe PDF selected as the printer. I have the HP 4345 printer selected and set to 'Letter' for printing on 8.5x11" page.

  • Problem with printing a PDF

    Hi All,
    I'm developing a web application written in J2EE that uses Java Reporting Component (JRC) to display crystal reports from some filters recovered from a jsp and passed to a report .rpt previously designed and invoked just at runtime.
    I have a problem with printing a PDF:
    I want, after entering the filters in a jsp, to print a report in PDF format (WORD) without opening it
    with Adobe Reader (Microsoft Word). The class of API JRC used for export is ReportExportControl.
    Can anyone help me?
    I wish a great day to You all.

    Hi Ted Ueda,
    sorry for the delay of my answer.
    I understand very well the problems related to security.
    With the following code that I used to produce a report (PDF) at runtime,
    is the PDF created on the server and then sent to the client, or is it directly created on the client as PDF
    from RTF previously realized?
    ReportExportControl exportControl = new ReportExportControl();
    String report = report path;
    ReportClientDocument reportClientDoc = new ReportClientDocument();
    reportClientDoc.open(report, OpenReportOptions._openAsReadOnly);
    Object reportSource = null;
    reportSource = reportClientDoc.getReportSource();
    //The method setConnectionProperties() stores all the connection parameters in the collection
    //ConnectioInfos
    ConnectionInfos connInfos = setConnectionProperties(request, reportClientDoc);
    exportControl.setEnableLogonPrompt(false);
    exportControl.setEnableParameterPrompt(false);
    exportControl.setReportSource(reportSource);
    exportControl.setDatabaseLogonInfos(connInfos);
    //Single method to pass parameters to Crystal Reports. Using classes ParameterFieldController and
    //ParameterFieldDiscreteValue
    setReportParametersValue(reportClientDoc, reportParameters, subReportParameters);
    ExportOptions exportOptions = new ExportOptions();
    //Set the export format (PDF)
    exportOptions.setExportFormatType(ReportExportFormat.PDF);
    PDFExportFormatOptions PDFExpOpts = new PDFExportFormatOptions();
    exportOptions.setFormatOptions(PDFExpOpts);
    exportControl.setExportOptions(exportOptions);
    exportControl.setExportAsAttachment(true);
    try {
          exportControl.getHtmlContent(request, response, getServletConfig().getServletContext());
    } catch (ReportSDKExceptionBase e) {
    throw new ApplicationException("error code", ": error message"); }               
    As, however, I predicted in my previous message about the direct printing on the client,
    I read about ActiveX, but I don't know how to use them.
    I read this information in the 'Crystal Reports for Eclipse Developer Guide' about "printMode" attribute:
    "In ActiveX print mode, an ActiveX control is downloaded to the client machine and the report is send directly to the printer...."
    The ActiveX alternative is a java applet that runs on the client and takes the pdf from the server and prints directly onto the clients through the commands that I used in the DOS command line:
    1)     AcroRd32.exe /p /h FILENAME
    where
    /p = print
    /h = hide window
    to print the report and
    2)     tkill AcroRd32
    to close Adobe Reader, because it doesn't end automatically after printing and the command  /h  is used just to minimize the process.
    I hope you can give me advice because I need to print directly on the client. Thank you

  • Problem with printing generated pdf.

    Hello!
    I need to print pdf file, that was generated by my application. I am using Apache FOP to generate pdf (xml+xslt). For printing I am using Maxatec MT-150 receipt printer. Seems, that pdf is generated successfully, because I can open it and I also can print it using Windows interface. However, when I am sending it to printer in my JAVA application, printed file is just set of unreadable characters and black lines. I was trying to use different DocFlavors, like DocFlavor.INPUT_STREAM.AUTOSENSE, DocFlavor.URL.AUTOSENSE, but neither had a luck. My code looks like this:
    PrintService receiptPrintService = getReceiptPrinterService(printerName);
    DocPrintJob printJob = receiptPrintService.createPrintJob();
    FileInputStream fis = new FileInputStream(new File("StatusReport.pdf"));
    Doc doc = new SimpleDoc(fis, DocFlavor.INPUT_STREAM.AUTOSENSE, null);
    printJob.print(doc, null);
    private static PrintService getReceiptPrinterService(String printerName) {
              PrintService[] services = PrintServiceLookup.lookupPrintServices(null, null);
              for (PrintService printService : services) {
                   if (printerName.equals(printService.getName())) {
                        return printService;
              return null;
         }For some reason I cannot set DocFlavor.INPUT_STREAM.PDF, as it throws following exception: sun.print.PrintJobFlavorException: invalid flavor. (despite the fact that I can pdf using the same printer, but through Windows interface)
    So, I really don't see what is the problem. Should I use something in my xslt template to specify content type? currently I have:
    <xsl:output method="xml" version="1.0" omit-xml-declaration="no" indent="yes"/>Any help would be appreciated.
    Alexander.

    @Dick_Adams
    I am sorry, but what error message are you talking about? The only error I get is "sun.print.PrintJobFlavorException: invalid flavor" and as far as I understand it depends on printer, what is supported and what is not supported. Or am I wrong? I am using standard java.awt.print library.
    @AndrewThompson64, thanks for the tip!)) It does print correctly, but in this case I am not sure I have enough possibilities to control printing. For instance, my pdf was printed as landscape, but I need portrait.

  • Problem in Printing of mutiple form on single click

    Hi all
    I m wrking on AFS and i had created a page for printing multiple invoice print on single click.
    A range of invoice is given as input and get out in the form of print preivew or print wat v choose .
    I mean a print pop is open for multiple invoice in a single click.
    Problem in printing of multiple form is speed .its going to be slow when click for printing .OR
    v can say that creation of multiple page in printing gets more time .Is ther  any way to solve  this .
    Plz suggest me some solution for that .
    Regards,
    Ravi

    Hi
    Check if Note 353518 - Selection of outputs takes much time and Note 910976 - Selection of output from billing (VF31) are relevants.
    Other suggestion. Do a trace with ST05 and check if you have any bottleneck in the coding that you can have in your Smartform or in your SAPscript, so check in tcode V/40 what form you are using . Also see Note 185530 - Performance: Customer developments in SD.
    I hope this helps you
    Regards
    Eduardo

  • Photoshop suddenly does not print to Epson 3880 - PROBLEM: Cannot print from Photoshop  After restart error message appears:  - "There was an error opening your printer. Printing functions will not be available until you have selected a printer and reopen

    PROBLEM: Cannot print from Photoshop
    After restart error message appears:
    — “There was an error opening your printer. Printing functions will not be available until you have selected a printer and reopened any documents.”
    • All print commands are greyed out and unavailable — even to call up the printer commands cannot be done.
    The printer printed fine until about 2 weeks ago when this error message appeared.  Printing continues from Pages, I-photo, preview etc. —  only Photoshop fails.
    The printer has been turned on and off, as have open documents been closed and open etc..   Preferences reset.  Repeatedly I have read through blogs and forums and attempted to contact Adobe — all without results
    Epson support struggled to find reason and several solutions were tried and they assume this is an Adobe problem.
    Running Mac Powerbook X 10.10.2 / Photoshop CS6 13.0.6.x64
    Attempting unsuccessfully to print to Epson 3880
    What Adobe support will be of help.
    Robert Darling —  2/19, 20, 21,22,23/2015

    Probably best to ask in Photoshop General Discussion
    This forum is about the Cloud as a delivery process, not about using individual programs
    If you start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • I had a problem with print preview of billing document.

    HI all,
    I had a problem with print preview of billing document which contains two output types ZR1 ZR2..
    For the footer text of billing document I maintained the font size as 7,5 pts, But when i go for print preview from output type ZR1 the font size of footer text is very small and looks good for output type ZR2.
    If i change the print options-->logical destination of output type ZR1 same as Output type ZR2, the footer text looks good.
    I think there is some issue with logical destination in print options for the output type ZR1, how can i resolve  it.

    hi,
    for both the output types , r u using same sapscript or smartform?
    if yes then, u can control it in output options of smartform and also in sapscript , you can control through if condition.
    and if differect sapscript or smartform then you should not get such problem.
    you can check the sapscript or smartfrom in TNAPR table.

Maybe you are looking for

  • Can I parse an ASCII charater variable that is included in the data string from my device?

    Here is the RS232 data from the device. "R,2.306 MPa a,0.011 MPa/s,97.000 kPa a"                                OR "NR,2.306 MPa a,0.011 MPa/s,97.000 kPa a" Channels 0,1, and 2 take care of the 3 numerical values and write them to a file no prob.. Th

  • Photoshop win32 Error!

    Hello my name is Brandon,     I have been trying to use photoshop for some artwork for class and it keeps crashing on me.  I am running windows 7, PS CS6.  Only after about a minute or less of working on my piece it will crash and an unhandled win32

  • Webi limitations on SAP BW

    Hi Experts, I am working on a project using BO XI 3.1 and SAP BI 7.1. We want to use SAP BW Infocubes, BW Queries as data source to WebI reports. We know there are some limitations on the WebI side and all the features won't be availble like relation

  • No imessage option on my iphone4

    I have an iPhone 4 and for imessage you're supposed to go to settings and it should be under messages, right? But I can't find it anywhere. Help please!

  • SCSM 2012 Moving Reporting to new Reporting Server

    is there any step by step procedure to move the scsm reporting to a new report server? Georges Mouawad Jreij12