Again about t.code MN05: number of copies of MM documents printed

Hi all,
by t.code MN05 I can set the number of copies of the MM documents printed the FIRST TIME. I can do it for doc.type or vendor.
In particular, setting for document type, it doesn't work for all range of vendors.
Setting for document type, in the field "PartF" I've put in "OA". Could it depend on it?
Thanks
Gandalf

Hi,
Please select VN and check
Select Key combination as document type and co code
regards
suresh

Similar Messages

  • GR slip - Number of copies to vary based on Country key

    Hi,
    We are a multinational company and we have a requirement related to GR slips. The number of copies of GR slip printed should vary based on the country key, where the user is printing the GR slip....for e.g. if it is US then it should be 3 copies, Germany should be 5 and so on.
    So the same form has to be printed, only the number of copies varies....based on the country where it is printed.
    How to accomplish this. We are using Inventory Management Output determination, with Output type WE03. Please help.
    Thanks !

    Hi,
    See if country key can be added to the condition table and insert it in the access sequence.  Define exclusion check box by maintaining this access as the first in your access sequence.  When you maintain condition record for country as one of the parameters, make your number of copied in its communication data as you wish.  It should print based on country key, the number of copies...
    Regards

  • Passing Number of copies / Duplex into print presets

    I need to pass the servers simplex/duplex and number of copies settings into the print presets so the user doesn't have to remember each forms setting.
    Can I pass these through the xfdf?

    No, but the simplex/duplex setting can be embedded into the form if you're using XFA forms.

  • How to set default number of copies of labels to be printed in SAP EWM

    hi folks,
    we have configured in such a way that, whenever we maintain the inbound delivery in /scwm/prdi, GR will happen automatically and a GR label will be printed automatically. We have defined condition records to determine the printer and also mentioned the number of copies as 1. Now, we need to have 2 copies of the GR label to be printed automatically. I've changed the no of copies as 2 in the condition records but still only 1 copy is getting printed. i have also maintained spool parameter where in i have specified no of copies as 2. Are there any other places i need to change the no of copies to be printed? if so, could you please sugget me?
    thanks in advance,
    best regards,
    Praveen

    Hi Praveen,
    #No of Copies#  in transaction /SCWM/PRWO6   is not actual number of copies . This is more  an index how the number of copies is determined . Please use F4  on this field and you will see that index 2 means "Number of Copies" = 1.
    In Transaction /SCWM/ 60000431 you need to actual number of copies for your document. But this number  is only taken if you set the index in /SCWM/PRWO6 to "0".
    I hope this information helps you.
    Sabya

  • Unable to print number of copies on label printer

    Hi Everyone,
    I am able to print smartform any number of copies on standard printer.
    But when I change from standard printer name to Label printer name and execute the smartform with number of copies ( greater than 1 ).
    For label printer I am able to print only one copy, irrespective of number of copies specified. However I can able to number of copies specified for standard printer.
    Can anyone help me what could be the reason? Is that any settings should be done for label printer ?
    Thanks.
    From
    Reddy

    Paddy,
    Welcome to Apple Discussions.
    The problem might be a corrupt preference. Does this problem occur with all applications? If not, which application?
    Try Repair Disk Permissions using Disk Utility.

  • Limit the amount of copies that can be printed

    Is there a way to limit the number of copies that can be printed of a pdf from inside the form in LiveCycle? I would like clients to only be able to print  only two copies of a form with Adobe Reader. How can I do this?

    This should be doable, but not very pretty...
    First, put a text-field on the form, and make it hidden with a defaullt value of 0;
    in pre-print, check if the value of the hidden field is >= the limit, if so set
    xfa.event.cancelAction = 1
    that will prevent the print dialog from even showing.
    if the value of the hidden field is < the limit, add one to the value of the field.
    That should do it. If you need a hand with the actual code, just let me know.
    - Scott
    (limitations: if the user doesn't save the changes, the hidden field will remain at 0... as such, you may have to script the docClose event to trigger a save. The issue with this is that the user will be stuck with any changes made, regardless of whether they want to keep changes.. Like I said, it's not pretty. You could go one step further and save the state of all fields on open/save, then restore those values on close, except for the hidden field before triggering a save... As you can see, this can get complicated fast....)

  • I need to print with a number of copies set

    Hi im trying to print with number of copies set but it dosent work.. I tried it on 3 different printers.
    It only print 1 copie when i say 2 or 3 or 4...
    (aset.add(new Copies(2)); )
    Is there something missing in that code...
    thanks
    Here is my code.
    import java.io.*;
    import javax.print.*;
    import javax.print.attribute.HashPrintRequestAttributeSet;
    import javax.print.attribute.PrintRequestAttributeSet;
    import javax.print.attribute.standard.Copies;
        public class Print {
            public static void main(String[] args) {
                try {
                    // Open the image file
                    InputStream inputStream = new BufferedInputStream(new FileInputStream("c:\\coupon.txt"));
                    // Find the default service
                    DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;
                    PrintService service = PrintServiceLookup.lookupDefaultPrintService();
                    PrintRequestAttributeSet aset = new HashPrintRequestAttributeSet();
                    aset.add(new Copies(2)); // Dosent work only 1 copie is printed
                    // Create the print job
                    DocPrintJob job = service.createPrintJob();
                    Doc doc = new SimpleDoc(inputStream, flavor, null);
                    PrintJobWatcher pjDone = new PrintJobWatcher(job);
                    // Print it
                    job.print(doc, aset);
                    // Wait for the print job to be done
                    pjDone.waitForDone();
                    // It is now safe to close the input stream
                    inputStream.close();
                } catch (PrintException e) {
                    System.out.println(e);
                } catch (IOException e) {
                    System.out.println(e);
        }

    Same problem here. I have found hundreds of questions in several places, but no answer.
    Problem is that when I set the copies, PrintServiceLookup.lookupPrintServices returns no results.
    Please help.

  • Number of copies with setCollated does not work if PageRange is not set

    I have a report which results are printed on 2 pages. If i set PrintReportOptions like below:
    PrintReportOptions printOptions = new PrintReportOptions();
    printOptions.setPrinterName( targetPrinter );
    printOptions.setNumberOfCopies( 2 );
    printOptions.setCollated( true );
    printCntrl.printReport( printOptions );
    I get ONLY one copy, other pages are not printed.  So instead of getting 2 x 2 pages with order 1,2 1,2 i am getting only 1,2 so it seems that number of copies is not interpreted.
    When i  add a setup of a page range - everything works as excepted.
    PrintReportOptions printOptions = new PrintReportOptions();
    printOptions.setPrinterName( targetPrinter );
    printOptions.setNumberOfCopies( 2 );
    printOptions.setCollated( true );
    PrintReportOptions.PageRange printPageRange = new PrintReportOptions.PageRange( 1,  2 );
    printOptions.addPrinterPageRange( printPageRange );
    printCntrl.printReport( printOptions );
    But how can i find on how many pages report will be printed? - it's impossible. I thought that maybe i can set 100 as the upper limit of range but this doesn't work. The page range must be less or equal to the number of pages on which report will be printed.
    When I am not using method setCollated or use it with false  report is printed on desired number of pages and with expected amount of copies.  ( in order 1,1 2,2 ) . Here is the code:
    PrintReportOptions printOptions = new PrintReportOptions();
    printOptions.setPrinterName( targetPrinter );
    printOptions.setNumberOfCopies( 2 );
    printOptions.setCollated( false );
    printCntrl.printReport( printOptions );
    I suspect that this is a bug of CR Java runtime. If so, when we may expect that it will be fixed?

    Hello.
    I tested with the latest version of the Crystal Report runtime libraries (version 12.2.211) and it works for me as expected.
    What I would suggest is that you test your application using the latest version 12.2.211 and see if this resolves the problem.  Since it works for me on this latest version, I would expect that it would work for you as well.  The latest version can be found at the following link under the section "Runtime Libraries":
    http://www.businessobjects.com/campaigns/forms/downloads/crystal/eclipse/datasave.asp
    A direct link to the zip file that contains the runtime components can be obtained from the following link:
    http://downloads.businessobjects.com/akdlm/crystalreportsforeclipse/2_0/crjava-runtime_12.2.211.zip
    If you are still experiencing problems after using the 12.2.211 runtime components, then maybe it is the case that your printer driver is causing an issue.  The printer that I printed on is "HP Universal Printing PCL 5 (v5.1)".
    I hope that updating the Crystal Reports runtime version to the latest resolves your problem.
    Best of luck.
    Regards.
    - Robert

  • Setting the number of copies to be printed through crystal reports?

    I posted this in another section and got redirected to this one. 
    So I'm working with some software that utilizes Crystal Reports 10, and am looking for a method where through Crystal Reports I can take a user entered parameter value and set that as the number of copies for the printer to print. This isn't an option in Crystal Reports itself, so I understand I may need to dig a little deeper and write some customization to accomplish this.
    I've been building Crystal Reports for about two years now, all self taught, but have never had to go this far, where/how would I start on this? And I tried searching for a similar question in these forums to see if it's come up before but couldn't find anything. I'm kind of stuck at the moment because I can't alter the software that's using Crystal Reports to set number of copies, so I want to see if I can do anything in Crystal.

    Really, this is actually more of a report design question, though I understand why they's ask you to post here also.
    Anyhow, I think what you are asking is; can I design a report such that it will internally hold how many copies it should print(?).
    Answer to that is no.
    Only way to do multiple copies would be to modify the app you are working with. E.g.; go to the authors of the app and ask them for an enhancement to their product so that you can print multiple copies.
    - Ludek

  • Get number of copies from print dialog

    Hi All,
    I am using javax.print API to display the print dialog, I am also able to successfuly print a document.
    My questions is how can get number of copies from the print dialog.
    I did log of googling, but no sucess...I have been trying from 1 day.
    Please help me.
    Thanks in advance.

    Here is the code:     // TODO Auto-generated constructor stub
              PrintService[] services = PrintServiceLookup.lookupPrintServices(null, null);
              PrintService defaultPrinter = PrintServiceLookup.lookupDefaultPrintService();
              PrintRequestAttributeSet attrs = new HashPrintRequestAttributeSet();          
              selection = ServiceUI.printDialog(
                 null, 100, 100, services, defaultPrinter, null, attrs);           
              if(selection!=null){
                   selectedPrinter = selection.getName();               
              }Now once the printDialog is displayed i want to get the number of copies selected by the user. I tried all different options from Attribute, but not successful.
    Please help...
    Thanks.

  • Hide Number of copies in Print Dialog box

    Hi All,
    I have a requirement in smartform wherein i have to disable the area where we enter number of copies in the Print dialog box, which comes when we execute the program.
    In the print dialog box we usually enter the output device and can choose various options in Spool Control, Number of Copies, etc.
    So here my requirement is that even if user enters more than 1 in Number of copies, in the output it should take only as 1.
    Kindly let me know how to do this..
    Thanks,

    Hi Ashwani,
    You need to do an implicit enhancement for this requirement.
    Program : SAPLSTXBC
    Include : LSTXBCFOP
    Form : PBO_FRONTEND
    Code  :
    LOOP AT SCREEN.
      IF SCREEN-NAME = 'SSFPP-TDCOPIES'.
       SCREEN-INPUT = '0'.
       MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
    Regards,
    Lohit

  • PrintJob - number of copies - can I get?

    Is there any way to get some extra information about the
    selected printer like number of copies set by user on the print
    dialog and on the priner settings panel in the control panel?
    I want to limit the copies to 1!
    So i have to know the settings for the printer and the print
    job to restrict the printing if the number copies greater than
    one.

    not unless this is a projector file with a 3rd party wrapper
    program.

  • SAPScript - number of copies

    Hi all,
    I'm trying to print out a text depending om the number of copies.
    If users selects to print 2 or more copies, I want to write text "<i>ORIGINAL</i>" in the first copy, and for the following copies I want to print "<i>COPY</i>".
    How can I manage this request?
    thanks in advance

    What about reprints? 
    If someone selects 3 copies, and then two days later print another 3 copies.... what should happen?
    Is only the first printout ORIGINAL and the other five COPY?  Or is the first printout of each group ORIGINAL?
    All I can think of is doing a PERFORM in SAPscript. 
    You would pass the document number and output type as a key. 
    The CHANGING parameter could be the text string (COPY or ORIGINAL).
    When the PERFORM is called in the MAIN window (above any text elements), search the NAST table for the key. 
    If you find a successfully printed document with this key, set the string for COPY.  You have to check the status flag in NAST to make sure it is already printed.
    If you do not find an entry in the NAST table, go to a second step.
    IMPORT a value from FROM DATABASE using the key (document number and output type).  If not found, it is the first copy of the first printout.  EXPORT TO DATABASE to capture the status of the second printout in the next IMPORT step.
    Does that make sense?

  • PO messages (Number of copies)

    Hi,
    We have a client in which for a particular plant or pur group alone has to print 2 copies for the PO's. Without changing the output code. Now we are going to each PO and changing the number of messages manually. Is it possible to make it global for this plant or pur grp only. If yes then How to do it.
    Thanks,
    Suresh

    Hi Suresh,
    Create one New Message type for this scenario.
    Create one Condition table by taking the Field Purchasing Group as one of the field. Add this condition table in the Access sequence.
    Maintain thecondition record for this message type, give here the number of copies =2.
    When u'll create PO it will for the same Purchasing group it will take this message type & process the output.
    Award points if useful
    Sangram

  • Number of copies printed upon P.O. change

    How/where do I configure whether changes to a P.O. (ME22N) will be printed to a remote location's laser printer, as they are upon P.O. creation (ME21N).
    In this case, the remote location wants a printed copy upon a P.O. creation but NOT when an existing P.O. is changed.
    I see how to adjust the number of copies via MN05 but not how to turn printing off for just changes.
    Thanks!

    Hi,
    In config, have you tried to un-check all fields relevant for printout of changes ? If this does not work, you could write a custom requirement which will check for PO change and suppress the output.
    Cheers !

Maybe you are looking for

  • Unable to open/run any application in Hyperion 11.1.2 Workspace

    Hi all, I get the below error message when try to open any application in workspace.I'm using Hyperion system 11.1.2 .Please help me out to sort out this error message.I dont find any clue on why this occurring and how can it be rectified. +"There wa

  • How to use variable in :old. variable instead of :old.column name.

    My requirement is to update the audit_update table with the old value and new value when an update statement gets executed. If i use :old.columnname the purpose is getting resolved. My requirement is to loop through the columns taken dynamically and

  • Package class not existing in myclasses

    Hi experts, I'm building a custom project on Jdev where i need to use the com.sun.rowset.internal.row class to utilise the current createRow and insertRow methods. When i import this package into my source and compile it giver the following errors: E

  • Can't install CS4 extended UPGRADE.

    Hoping someone here has a solution. I have a retail boxed CS4 Photoshop extended upgrade. When I try to install the upgrade it accepts the CS4 serial then asks for a CS3 extended serial. CS3 Extended is the ONLY program in the drop down box. I don't

  • Why is my google suggestion auto fill doesn't auto fill

    why is my google suggestion auto fill doesn't auto fill