While printig in j1ia101 default Number of copies showing as 5.

When I go for printing in j1ia101, on printer selection screen 'Number of copies   5' is coming. user have to change it to 1 every time he gives printout. I want to set that value to 1. Please guide me.
Thanks.

Hello Henry ,
Thanks for your prompt response . Initially the server indeed had critical Visual C++ patches missing ;which we have rectified to some extent and also installed Visual C++ 2008 MFC security patch .
Initial Patch level
Current Patch level
I am going ahead with the suggestion provided in SAP Note 1902990 and will keep everyone posted on this. I had an impression that perhaps the 2008 MFC security patch will do the trick for me .
Thanks !

Similar Messages

  • Default number of copies

    I have an app on my Galaxy Tab 2 7in that prints using ePrint. Can I set ePrint to print 2 copies automatically? Either through some info the app sends or in the ePrint app?

    Hi Beachcombers,
    I understand that you want to print multiple copies of an ePrint job. 
    If you've downloaded the Hp ePrint mobile app once you select print in the top right corner you can select number of copies to print under settings.
    Hope this helps.

  • 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

  • While create inbound delviery Material number is not showing

    Hi All,
    I am trying to create inbound delivery with reference to Purchase Order.
    While using BBP_INB_DELIVERY_CREATE to create inbound deliveries, the material number is not showing up in the VL33N screen but Material Description is coming.
    As you have also faced same problem,can you please suggest how to resolve this issue?Your help will be highly appreciated.
    Thanks
    Santhu
    Edited by: santosh jajur on Sep 24, 2010 12:48 PM

    Hi,
    This function module doesn't pass Material number while creating the inbound delivery.  Instead you can use the function module GN_DELIVERY_CREATE along with NUMBER_GET_NEXT function module.
    See line number 631 to 656 of include LBBP_SIC_40F02 (Called from Line no 18 of BBP_INB_DELIVERY_CREATE) for more details.
    While using the function module BBP_INB_DELIVERY_CREATE, material number is not passed to the function module (GN_DELIVERY_CREATE) structure field XKOMDLGN-MATNR.
    Regards
    Vinod

  • Changing the Default No.of Copies in Print Window

    HI All,
    How to change the default number of copies while printing in Print POP Up box for Standard Transactions for some specific users.
    Regards,
    Sudhir

    Hi Neeraj,
    Thanks very much for the info! Unfortunately, when I get to the "MemberSelectionRowsPerPage" tab, I'm not able to change the default from 20. The "20" appears in blue numbers, and while I am able to modify the field, as soon as I click away from it, or click enter, or click refresh, it reverts back to "20". I've also tried modifying the number, and closing out the screen, but when I go back to the tab to check, it has reverted back to "20".
    Is there a way to save this setting that I'm missing? Has anyone else seen this before?
    Thanks in advance!
    -Jim

  • How do I change default no of copies on printer

    Every-time I print the default number of copies is set to three. I have to change it if I only want to print a single copy of a doc. I would be grateful on information on how to change this.
    Regards

    Hi Gerard, and a warm welcome to the forums!
    When the Print Dialog comes up, change Copies to one, then go up to the Presets: drop down above the Copies item & Save.

  • Number of copies by default in a printer?

    Hi everybody.
    I've a simple problem, but I don't know how to solve it.
    If I go to TC SP01 with a specific user and I see the details of a spool request (double click on it), if I go to output attributes, at No. Of Copies I see a 2, and all documents printed with this printer has it... I want to fix it to 1 by default for all documents, but I can't find where...
    Thanks in advance,
    Oscar

    Hi Oscar,
    I don't know of any way to default the number of copies at a printer level.  It is posible for the user to set it as a default, but it's quite complex so they must REALLY have been tinkering to set this.
    Here goes,
    As the logged on user print something (anything)
    In the print pop-up choose Properties
    In the next pop-up choose Specification
    In the field name drop-down choose 'Number of copies'
    Under this the default value will be shown.
    If this is set to 2 you can change it back to 1.
    Feels like a long-shot, but worth checking.
    Regards,
    Nick

  • 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.

  • How to ask for a number of copies in Finder Print?

    How to ask for a number of copies in Print Finder Items? Thanks.
    iBook G3 700   Mac OS X (10.4.8)   Still running a paperless office on my iBook! 120gig, 640RAM, 1440 x 900 2nd monitor! 500gig FW-HD!

    Here is a script that will create a "Run AppleScript" action in Automater that should do what you want. Just click on the link and hit the Run button in Script Editor.
    I wanted to get this too you fast so there is no error checking on the text entered into the dialog. Let me know if you want it added.
    click here to open this script in your editor<pre style="font-family: 'Monaco', 'Courier New', Courier, monospace; overflow:auto; color: #222; background: #DDD; padding: 0.2em; font-size: 10px; width:400px">
    tell application "Automator"
    make new workflow
    -- Action 1
    add Automator action "Run AppleScript" to workflow 1
    set value of setting 1 of Automator action 1 of workflow 1 to "on run {input, parameters}
    tell application \"Finder\"
    activate
    set theFiles to input
    display dialog \"How many copies do you want\" default answer \"1\"
    set NumberOfCopies to text returned of the result as integer
    end tell
    repeat with aFile in theFiles
    repeat with j from 1 to NumberOfCopies
    tell application \"Finder\" to display dialog \"Printing copy \" & j & return & aFile giving up after 2
    tell application \"Finder\" to print aFile
    end repeat
    end repeat
    return input
    end run"
    end tell</pre>
    PowerBook 12"   Mac OS X (10.4.8)  

  • SMARTFORMS number of copies

    Hello.
    I'm producing a simple smartform from MIGO (good receipt).
    In the initialization of the smartform I'm setting the fields output_options-tdcopies to 2 in some cases.
    I can see in debug mode that this value is being perfomed correctly.
    Although - when the print windows appears, it shows the default value for number of copies "1".
    How come ?
    Thanks.

    Hi,
    Do you use Frontend printing?
    If so, ensure that the option "use_copies" is set to '0' in the resgistry of the Frontend PC as described in SAP Note #1149136.
    Regards,
    Aidan

  • Printer changes number of copies

    hp officejet J4680 - printer wants to change the number of copies I request - I only want one and it changes that instruction to 6 or 8 or 7 - whatever it feels like - anyone had this problem?

    Typically, for the number of Copies, you can set it to what you want as default by going to Copy>Settings>Set and New defaults.
    If you want to reset this setting, you can go to Setup>Tools>Restore Factory Defaults.
    Hope this helps.
    I work for HP.

  • Number of Copies is always 6

    Hi I have a G4 iBook and printing works fine except for the fact that in the print dialogue under number of copies the default value every time is 6 copies...I have to change it each time I print...was wondering if anyone had any idea how to get it back to being 1.
    iBook   Mac OS X (10.4)  

    Thanks, by doing what you recomended I noticed that my printing was set to use a different preset than the standard one and it was in this other preset that the 6 page thing was set. I deleted the offending preset and was left with only the Standard one which defaults to 1 copy per print.

  • Error While entering GR/GI slip number in MIGO (Message no. NR751 )

    Hi Experts,
    While entering GR/GI slip number in MIGO,system throws an error
    "For object XABBELEGNR , number range interval does not exist OMJ6"
    Message no. NR751
    Diagnosis
    The database table NRIV has the delivery class 'C', i.e. the SAP default settings are only in client 000.
    Procedure
    Create the missing number range interval in customizing.
    Transaction code: OMJ6
    Configuration settings are already done in OMC1.
    external number range already maintained for this plant and year 2010 in  OMC1  OMJ6 .but still this error comes.
    would appreciate the help.

    Check these links:
    Posting a "goods issue" msg NR751
    Re: GR posting problem
    Check in OMR4 - document types in IV - document type assigned to Tcode MR11 (say KP) and then check document type tab in same Tcode for number range series assigned to doc type KP - maintain series in FBN1. You can check in NRIV database table with object RF_BELEG for number range series maintained.

  • Nokia E52 - Default number not working on Firmware...

    Hi,
    Just bought Nokia E52. When I select  default number among some number for a contact, it still asks me to choose number while calling or sending a message. Sometime it asks, and sometime it does not.
    When will we get a fix for this ?
    Regards,
    Tamour

    This is a classic problem on these new FP2 phones. I had the same problem with my N96.
    You'll need to have a memory card inserted for this and you'll have to re-populate your contact groups afterwards, but the solution is to go into your contacts and then:
    Options > Mark/Unmark > Mark all
    Options > Copy business card > To other memory > memory card
    This exports a bunch of VCF files to the memory card.
    Next, delete all the contacts from your address book
    Options > Mark/Unmark > Mark all
    Press 'C' and confirm.
    Now re-import the contacts from the memory card:
    Options > Copy business card > From other memory > memory card
    This will re-import all your contacts and it will now be possible to assign defaults.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • Printer default number

    Hi:
    How to set a user's printer default page number to 1.
    An user said:
    "Once she is ready to print where it says "Print the Output to:" the number of copies should always be set to 1 but it keeps defaulting back to 0. Client goes into settings to change the number of copies but it keeps changing back to 0. Client states that all the buyers in her department have the default set to 1 and it was set by IT."
    Thanks.
    Edited by: user13610526 on Sep 27, 2011 9:00 AM

    Check the profile option value of "Concurrent:Report Copies" for this user -- How to setup Printer Arguments Within Oracle Applications [ID 73804.1]
    Thanks,
    Hussein

Maybe you are looking for

  • SQL if/else help

    Can somebody help me with a query. select name, isdefault, display_value  from v$parameter where name in ( 'memory_target' , 'sga_target', 'statistics_level') order by name; If memory_target is set non-zero, print AMM Else if sga_target is set non-ze

  • No Rear Speaker Sound, not possible to change setting to

    Hey, I hope anyone of you can help me please. A week ago the sound from my to rear speakers stoped working. I can still hear sound from the center, sub, and the two fronts. I've tried to change the settings in my AudioHQ but i can't switch to 5. nor

  • How can I track my Mac book if I don't have the serial number ?

    I got robbed 2 days ago & I need to track my mac book but don't know how please help me

  • SRM Certification requirements & documents

    What are the eligibilities for attending SRM certification? Can anyone please provide me with the documentation/manuals for the SRM 5.0 certification? Thanks in advance. You will receive the points for sure.

  • Sound blaster Audigy 2zs platinum setup with creative inspire 5.1 digital 5

    what should the setup be for the sound blaster Audigy 2zs platinum and the reati've inspire 5. digital 5500 because with the decoder in i only get center fl fr on games. i dont get sound from the rear speakers.but when i take the decoder out and just