Printout always sent to default printer

Hi All,
Every time I select 'LOCL' and send a print.. irrespective of what printer I select the printout is always sent to the windows DEFAULT printer. Can someone plz help me understand the situation?
Thanks in Advance..
-Muktar

Hi ingeneral LOCL is configured as Default Printer in most of the systems. That means LOCL is not itself a printer, but this is what the printer local to the system. that's why print out is always going to defualt printer...
Check with any other printer. Observe the description properly. In description Default pronter will be specifed clearly...

Similar Messages

  • Default printer during printout program

    hi guys,
    how does system get the default printer for report printout if the su01 for default printer field is empty

    HI Balu,
    the program uses FM BP_JOBVARIANT_SCHEDULE to submit background job.
    For user A , it always set the default printer to LPO3 even SU01 sets to NWO5,
    while user B can get the correct printer NWO5 as per its SU01 setting.. how come both users can get different printer from the same program .
    Initially i thought it depends on SU01 , but even user A has changed its default printer to NWO5, still system will take LPO3.. plz advice

  • Mandatory profile: default printer always reverts to last installed printer

    The only constant is: the last installed printer stays as the default printer (user can install it). How is that tracked by the system? I cannot find it anywhere.
    example printer A, then B is installed. Printer B always reverts to being the default on reboot.
    a. not using gpp/gpo to set printers (several thousand pcs, about 800 printers, difference preferences in each department etc)
    b. from what I have read, it is normal for the mandatory profile to revert back on reboot/logoff any changes to the default printer made by the user.
    c. I have tried changing registry keys for .default, the current user, which the current user (mandatory profile autologin) does not pull from .default or anywhere else I can seed.
    d. the mandatory profile itself is clean the common registry keys are empty (changing these keys to your desired printer does not resolve the issue, they revert on reboot to last installed printer)
    ...\Software\Microsoft\Windows NT\CurrentVersion\Devices]
    ....Software\Microsoft\Windows NT\CurrentVersion\PrinterPorts
    ...Software\Microsoft\Windows NT\CurrentVersion\Windows (Device key is blank)
    e. commands do not stick (Tried from powershell, vp, command prompt etc) such as:
    rundll32 printui.dll,PrintUIEntry /dl /n "pritnername" /q
    "ntprint /setdefault name=<printer name>
    ntprint /setdefault name=<printer name>
    Read more :
    http://www.ehow.com/how_7258789_add-default-printer-new-users.html

    Hi,
    Please allow me to clear the current situation:
    1. We are using mandatory profile, and the default printer is not configured into the profile settings;
    2. Every time when installing a new printer, it will change to the default one;
    3. Using command line to set the default printer won't work here;
    If anything misunderstood, please feel free to let me know.
    So how do we install the new printer here? Any settings that we may choose to set the newly installed as the default?
    Might we consider to let the user choose which printer to be set as default using scripts? See if this blog could help:
    How Can I Let Users Choose a Default Printer From a List of Printers?
    If the default printer is not configured into the profile settings, and no GPP configured here, how was the default printer installed?
    Besides, for domain printer issue, we have a better forum to seek help with:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?forum=winserverprint
    Best regards
    Michael Shao
    TechNet Community Support

  • Why do my MAC Microsoft Office printouts always issue me an additional print copy of the Filename,   author, date, minutes, words  etc? It is wasting ink and paper.  What can I do to remove this?

    Why do my MAC Microsoft Office printouts always issue me an additional print copy of the Filename, author, date, minutes, words  etc? What can I do to remove this? It is wasting ink and paper.

    Yes but there's no point doing it here. As the Terms of Use make quite clear this is a User to User forum. It's Users like you talking to other Users. It's not a channel to communicate with Apple.
    Regards
    TD

  • CR XI R2 Sp6 - How do you change the default printer used by the Viewer?

    CR XI R2 Sp6
    .NET
    VS2005, C++
    The app selects printer for the job as m_Report->PrintOptions->PrinterName = ss_Device;
    This works nicely for printouts to the printer, but is ignored by the viewer. There, the machine default printer is always selected when I hit the print button.
    Found this which is sortof similar:
    http://forums.sdn.sap.com/thread.jspa?threadID=1275149
    Is there any way to fix this? If no, then is it fixed in more recent versions of CR?

    All of that above can be changed at runtime, but you'd somehow need to figure out what the default printer driver is on each machine and then assign it to the report.
    Yes,but that is exactly what I do. The app normally uses the Windows default printer just as any C++/MFC app will do. On the file menu there is an option to select printer which calls CWinApp::OnFilePrintSetup(); which sets the application default printer setup.
    In the app there is a function to retrieve the default printer:
    CString CLpApp::GetDefaultPrinter()
         PRINTDLG     pd ;
         CString          printer("Failed") ;
         pd.lStructSize = (DWORD)sizeof(PRINTDLG) ;
         BOOL bRet = GetPrinterDeviceDefaults(&pd) ;
         if (bRet)
              // protect memory handle with ::GlobalLock and ::GlobalUnlock
              DEVMODE *pDevMode = (DEVMODE*)::GlobalLock(m_hDevMode) ;
              printer = pDevMode->dmDeviceName ;
              ::GlobalUnlock(m_hDevMode) ;
         return printer ;
    When I print, I do:
    void CSkrivDlg::StartReport(CLpReportJob^ jobb)
         jobb->SelectPrinter("",theApp.GetDefaultPrinter(),"");
         if(m_tillSkrivare)
              jobb->OutputToPrinter(1);
         else
              jobb->OutputToWindow("Fönsternamn", 0, 0, 200, 200, 0, NULL, NULL);
    This works correctly for OutputToPrinter(1);, but not for OutputToWindow() which are simply wrappers for the CR functions:
    bool CReportJob::OutputToPrinter(int nCopies)
         bool rc = true;
         try
              m_Report->PrintToPrinter(nCopies,true,0,0);
         catch (Exception ^e)
              TRACE("
    %s",e->Message);
              m_LastError = e->Message;
              rc = false;
         return rc;
    // OutputToWindow()
    // a,b,c,d = Fönsterkoordinater eller noll för default
    // style = flaggor för fönsterposition
    // window = fönster efter vilket vi dyker upp
    // child = rapportfönstrets handle om vi vill ha den
    bool CReportJob::OutputToWindow(CString Namn, int a, int b, int c, int d, int style, CWnd* window, CWnd **child)
         bool rc = 0;
         CString title="Dummy1";
         title = m_Report->SummaryInfo->ReportTitle;
         CFloaterDlg *Floater = new CFloaterDlg(NULL);               // TODO: Get window
         Floater->Create(IDD_FLOATER_DLG, NULL);
         if(Floater != NULL)
              m_Report->ExportOptions->ExportFormatType = CrystalDecisions::Shared::ExportFormatType::PortableDocFormat;
              Floater->m_Viewer->ReportSource = m_Report;
              Floater->m_Viewer->Zoom(theApp.m_ScreenZoom);
              // Sätt fönsterrubrik från rapporten
              Floater->SetWindowText(title);
              // Puffa på så att den kan ändra storlek på Crystal-kontrollen
              Floater->Size();
              // Visa fönstret om det är stängt
              if(!Floater->IsWindowVisible())
                   Floater->ShowWindow(SW_SHOW);
              rc = true;
              if (child!=NULL) *child=Floater;
         else
              AfxMessageBox("Kunde inte skapa fönster för utskrift",MB_OK);
              rc = false;
         return rc;
    Floater is simply a dialog that holds the Viewer control.
    For some reason does the Viewer not obey the printer selection done in the report

  • Acrobat won't rermember default printer

    I recently upgraded to creative cloud. I've noticed that Acrobat Pro won't hold my default printer setting. I've tried deleting and re-adding my printers, I've tried renaming my printers so the one I was as default will be first in the list. I've tried opening Acrobat without an open document and setting the preferences. Doesn't matter. It always defaults to the most expensive printer, (ink and material.) All of the other programs seem to hold my default printer settings just fine. Of course, as soon as I've sent the print job, I will realize which printer it was sent to. Unfortunately, I don't have the ability to cancel the job, because of the age and drivers of the printer. I'm running OSX 10.7.5. I believe this is a known bug. Does anyone have any work arounds?

    I suspect that MAC is similar to Windows in this sense. The default printer is set in the OS, not the application. For the PC, it is Start>Printers and right click on the Adobe PDF printer and select default. Sorry, but I do not know the process for the MAC.

  • NI Reports print function default printer behaviour

    Just an FYI... Using the NI Reports Print Report.vi without wiring the printer name does not always work as expected at least for Excel. If you do the following with an Excel worksheet:
    1) Print to "Printer1"
    2) Print to "" (default)
    The second printer operation will print to "Printer1" because it is now set as the 'Active Printer' in the open Excel workbook.
    The Print Report.vi does not actually write the name of the default printer to the Excel _Print.vi PrintOut method. It passes an empty string, so Excel will print with the current active printer which may or may not be the default printer. 
    The Print Report.vi documentation should probably be changed to reflect that passing an empty string to the 'printer name (default)' terminal will not print to the default printer in all cases.

    That is all good information - and all information which I already know and which does not answer my question.
    The issue that I am having is that Safari and Safari alone is ignoring the printer setting. Could be something in the Safari plist file or somewhere else in Safari that is not working correctly - or at least I am assuming that it is a problem that Safari is not doing what it is supposed to for some reason - rather than Safari deliberately being programmed to ignore the system pref for printer setting.

  • SAP B1 default printer

    I had printing issue on 2 scenarios
    Scenario 1
    Hardcode inside print layout as printer B, Window default printer as B, Sent print to printer A. Sometimes printer A or B is out
    Scenario 2
    Set default inside print layout, Window default as printer B, Sent print to printer A. Sometimes printer A or B is out
    SAP is following which printer as final selection?
    Do you know SAP is taking which printer as final selection?
    Regards
    Thomas

    Hi Thomas Lai
    It's always best to make your layout for the default printer. Then when the user logs in. Go to file->page setup->printer.
    The settings you see there sap pulls from your default printer, once you change it there it will then print on those settings.
    Hope this helps

  • Default printer and problem with printing Crystal Report

    Good morning
    I have SAP B1 and on the client the default printer is "AMM_4014DN_PCL6_domain-srv FRONTE-RETRO"
    Then i have another printer "AMM_4014DN_PS_domain-srv".
    Before the default printer were the "AMM_4014DN_PS_domain-srv".
    Now the default printer is "AMM_4014DN_PCL6_domain-srv FRONTE-RETRO".
    When i push the button "Print" in the menu bar to print for example an invoice, instead of printing on the default printer AMM_4014DN_PCL6_domain-srv FRONTE-RETRO is always printing on then AMM_4014DN_PS_domain-srv.
    The report to print was made with Crystal Report 2008 and on the report I also set the correct default printer (AMM_4014DN_PCL6_domain-srv FRONTE-RETRO).
    So what's the problem ? Why is continue to print to the older printer ?
    So i also delete the older printer (AMM_4014DN_PS_domain-srv) and very strange still printing on the old printer.
    I also shut down the client, but no effect.
    The operating system of the client is Win Vista and SAP B1 is host on a Win2008 server.
    Thanks in advance.
    Regards Gabriele

    hi,
    Check this SAP Notes
    [1030589 - Printing preference in document printing|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3030303130333035383926]
    [1609615 - Obtain printer settings from default printing layout|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3030303136303936313526]
    regards,
    Fidel

  • Any way to override default printer settings into a PDF

    Hi -- I work for a large organization that has lots of computers and printers and prints a lot of forms and documents.  We are moving towards more digitization of documents and records including printing forms as needed as opposed to having large sets of forms onhand.  This should save us a lot of time and money once complete as these forms often change and the old process would be to then trash much of these documents and re-print for just one change.  The majority of our printers do have letter & legal trays as well as duplex support, however due to the vast number of users the default printer settings tied to each user and/or computer may be slightly different.  While standardizing all the printer settings across all users/computers would be one solution, we don't anticipate doing this as depending on the job peformed the different settings may be more preferable / advantageous for that user.
    As such the other solution I can think of is to hardcode the specific printer settings needed to correctly print a large document into that PDF file which may differ from that computer's print settings.  For example, the default computer print settings may be to print on just 1 side but duplex would be encoded / scripted directly into the PDF so IRREGARDLESS of the computer/printer settings this document would always print duplexed.
    Is there anyway to do this?  I would need to do more than just duplexing -- ie some form sets would need to be both duplexed and 'fit to printable area' whereas some would need to be only on one page and 'shrunk to printable area', etc, etc.  Our current practice is to insert a 1 page coversheet at the front of each document with the printer settings that need to be used for that form set, however this has been difficult for some users to do and has caused unnecessary time with our IT troubleshooting form printing.
    -Brandon

    Hi Brandon,
    You can use the Print Presets in Acrobat for that purpose. Please follow the steps below:
    1. Open the PDF in Acrobat
    2. Open Document Properties dialog (using Ctrl + D)
    3. Select the "Advanced" tab
    4. In the "Print dialog Presets" section, you can choose DuplexMode as well as Page Scaling for this document.
    Please let us know if this works for you
    Thanks,
    -Shilpi

  • How to automatic print to default printer

    now i use this command
    web.show_document('http://servername:7778/reports/rwservlet?server='||
    'repserver&report='||Para_Repname||'&desformat=pdf&destype=cache&userid='||
    Get_Application_Property(USERNAME)||'/'||Get_Application_Property(PASSWORD)||'@'||Get_Application_Property(CONNECT_STRING)||
    v_parameter||'&paramform=no','_blank');
    it 's show pdf file in browser if i want to print i must click printer icon on browser, but i want it to automatic print to printer immediate
    someone has solution.

    Because the reports run on the server and not on the client machine, there really is no way to print to the client's default printer because the server has no way of knowing what this printer is.
    You could create a user parameter with a list of the printers that are normally used and have the users select which printer you wanted the output sent to.

  • Can't tie emailed Pages document to my default printer

    In our office we have several printers: HP LaserJet 1300, HP Color LaserJet 2605dn, HP LaserJet 4/4M PS, etc.
    On my MacBook Pro I have set HP LaserJet P2055dn as my default printer.
    My colleague from office sent me Pages document via email. On his MacBook Pro default printer is HP Color LaserJet 2605dn, and I also have this printer set up as a network printer, while my default printer at home is HP LaserJet P2055dn.
    Every time I have to print his Pages '09 document, the default printer is HP Color LaserJet 2605dn. Even if I specify my own printer in Page Setup dialogue window, save it as the default printer — after closing this document and reopening it the same old HP Color LaserJet 2605dn is back as the default printer for this document again. Every time I want to print this document I have to change printer back to my HP LaserJet P2055dn.
    Two questions:
    1) Why can't Pages use my default printer as the default printer?
    2) Why Pages doesn't save default printer for this document which I specify in Page Setup dialogue?

    As fruhulda said, this problem has been discussed at great length, but no solution seems to have been found. I have a Canon and an Epson, but am not currently using the Canon, yet every document I first printed with the Canon still shows it as the selected printer. I have to change to the Epson each time I print one of those documents. I finally decided it was unproductive to get frustrated all the time and to take a positive attitude about it: it teaches me look and think about what I’m doing rather than blindly clicking buttons. It didn’t fix the problem, but it brought a bit of serenity into my life. Philosophy vs technology.
    Walt

  • How do I set the default printer to pdf in Firefox 8?

    Wish to set default printer to PDF, in specific folder.
    Always tries to print to .ps in my home folder.
    Using Linux, Fedora 16. I have had the same problem in Fedora 14.

    Mark, there's a very basic .NET method on every nullable object:
    GetValueOrDefault
    EDIT: Now I see...please avoid duplicating
    questions...
    To be clear:
    Put GetValueOrDefault on every nullable field used inside your 'TotalDue_Compute' sub
    You don't need to define 'TotalDue' as Nullable anymore

  • Setting new default printer from tcode VF

    Hi friendz,
    im here again..:-) hope u dont mind..
    i have a problem in setting the default printer in tcode VF02...actually the scenario is we bought a new printer..and the program in billing documents always default it to the old printer...so i tried to change the printer from old to new.
    and tried to change the default printer thru the following :
    1.change the new default printer from settings->printer
    2.change the output in VF02 tcode from GOTO->header->output->communication method
    3.change it from billing document->issued to output ->print options.
    but all of these is i need to change it per document no...
    now...how will i default it only once..and all documents i my print will default the printer to the new printer..
    do you have any idea to change the default printer to SPRO? because i check the output type is rd07...and i have no idea where to change it...
    Please help:-(
    aVaDuDz

    u havnt seen my reply to ur POST ?
    in SPRO -
    >under Output determenations --> u will get a options to maintain printers as per Output type.
    i forgotten directly path to go inside.
    VOPA something like this.
    Regards
    Prabhu

  • How to set default printer in CS5

    I've been using Photoshop CS5 x64, in Windows 7 x64, ever since it came out. I print photographs on an Epson Stylus Photo R2400. I also have an HP Laserjet, for printing documents.
    Whenever I am printing photographs, I change the default printer, in Control Panel, Devices & Printers, to the Epson. Until the last couple of weeks, this has always put the Epson in the default position in the 'Printer' field of the Print Dialog.
    But now the printer field always shows the HP Laserjet.
    This isn't true in any other program. MS Word 2010, Adobe Acrobat, Notepad, Opera, Internet Explorer: they all show the Epson as the default printer. So it seems more likely to be a Photoshop problem than a Windows problem.
    I have the latest Photoshop update, and Windows 7 Service Pack 1. I have the latest drivers  (2007) for the Epson. And I've trashed my Photoshop prefs.
    Is there a solution to this problem?
    Thanks
    Mary

    Noel
    >>If you change the printer in the Photoshop Print dialog, choose [Done], then re-save the PSD, does it come up next time with the proper default?<<
    Well, yes it does, to my surprise--whether I save as PSD or TIF. This is true both of new files (via file dialog) and of existing DNG files newly saved as TIFs in Camera Raw.
    I've now tried opening old files other than the ones I've been working on for the past month. They all default to the Epson printer--not surprising, since I always save files after printing, so that the print settings stick.
    The problem files are the ones I've worked on recently. When opened, they all default to the HP printer. So I'll have to open, change Print settings and save about 200 files. I'll write an action.
    I can't imagine how they got set to the HP in the first place. I've tried turning off the Epson and creating a new file: the Print dialog still says Epson R2400.
    Thanks for your message. It got me to focus more closely on just which files were problematic.
    Mary

Maybe you are looking for

  • Config reqd to track the changes to Bak details with report  S_AHR_61015505

    Hi All I have a need to tack the changes to 'Bank Details'. I have tried using the report 'S_AHR_61015505' , it works fine for the 'Addresses' info type but not for Bank details. I presume I need to do some config to activate the change log to track

  • Filtering EDI Files in B2B 11g

    Hi Gurus, We have a requirement that we should not process the EDI files which will have Usage Indicator(ISA15) has 'T' value. Rather we should send the file to some test directory on SOA file system. Could you please let me know whether we can achie

  • File icons are no longer appearing within my dock stacks (Downloads and Documents)

    Can anyone provide any assistance; I am running the developer version of Mountain Lion. However, the icons were all appearing just fine before the upgrade. It's weird though, sometimes I will have some icons appear, then they will disappear again. I

  • Lync 2010 with Linux machines

    how can we use Lync 2010 in Linux machines..? do we have any third party applications which can support Voice and Video.?    Kris

  • Shockwave installed but not available in the Program Files list

    I have the latest version of this program successfully in my PC (Windows XP) but I can not associate a file extension supposed to be used with this program because the system does not find it and I can not find the access route to it.