Setting Default Print Layout

Hi,
We use different print templates based on customer group. More specifically, any customers in 'Group A' use 'Template A.' All other customers, regardless of group use 'Template B.' It's no problem to open the PLD window and set template A as default to customers in group A. However, when adding a new group A customer, its default template is template B.
Is there a way to avoid having to redefine the default BP list for template A after every new BP creation? Thanks.

The functionality to associate a customer to a specific PLD template is going to be a manual step.  It is not like Pricelist or other functions where the customer when added to a Group will automatically default.
Please note then when you Add a new BP, right from the BP Master you can click on the pencil icon select the document and link the template.  You need not go to the Marketing document itself.
May be this helps
Suda

Similar Messages

  • How to set default Print layout in SDK!

    Hi All
    In Form Delivery (ID=140) I want to Add Button to set default print layout by Addon.
    Please let me know the interface and the table to do it. Thanks

    Hi Tao,
    there's a vb6 sample in the DIAPI documentation
    Sets the specified report layout as default
    Dim oCmpSrv As SAPbobsCOM.CompanyService
    Dim oReportLayoutService As ReportLayoutsService
    Dim oDefaultReportParams As DefaultReportParams
    'get company service
    oCmpSrv = oCompany.GetCompanyService
    'get report layout service
    oReportLayoutService = oCmpSrv.GetBusinessService(ServiceTypes.ReportLayoutsService)
    'get report layout params
    oDefaultReportParams = oReportLayoutService.GetDataInterface(ReportLayoutsServiceDataInterfaces.rlsdiDefaultReportParams)
    'set the report layout code
    oDefaultReportParams.LayoutCode = "POR20005"
    'set the report code
    'the report code is the document type code (e.g. POR2=PurchaseOrder)
    oDefaultReportParams.ReportCode = "POR2"
    'set the user code
    oDefaultReportParams.UserID = 1
    'delete the report layout
    oReportLayoutService.SetDefaultReport(oDefaultReportParams)
    i hope it helps you
    regards
    David

  • How to set default print orientation in oracle reports 6i?

    Can anyone please help how to set default print orientation of Oracle Reports 6i? Currently document is printed in Portrait orientation, but I need to print it in Landscape orientation. Is this possible?

    It is solved now. Go to Layout Model -> Main Section, Press F4. In the property pallet select the Orientation that is required to be selected when print is taken for that report.

  • How can I set default printer options on an iMac for an HP pro 8500 printer to print in draft mode?

    How can I set default printer options on an iMac for an HP pro 8500 printer to print in draft mode?

    When you use the Canon driver, the 2 sided printing is set in a different location. There is an entire menu dedicated to it (at least on my mx892). The printer dialog box has a menu selector in the middle of the screen (I think it says "layout" by default). If you click on it, you will see the duplexing options at the bottom. Much more flexibility than the single checkbox available with "airprint". The interface is unusual (at least for me) but you can pre-set up many different configurations (Fast Duplex, Fine Single-sided, B&W, Photo, etc etc.)

  • Set Default Printer based on user setting using Powershell script

    Hi 
    I would like to create a script that runs on user log off and captures the default printer (set manually by the user) and then another script to reapply the settings (saved upon log off) when the user logs back in.
    This is because local printers are set as default printer (PDF Creator Programs) when we all use Network Printers so this means a user has to set default printer to the network printer all the time.
    I have found this script to start with:
    $Printer = Get-WmiObject -namespace root\cimv2 -Query “select * from Win32_Printer Where Default = TRUE” -Impersonation 3 | select name | out-file C:\temp\Printer.txt
    But the out file looks like this:
    name
    \\PrinterserverName\Accounts01
    Which I dont see how it can be used on another script plus there are spaces after\Account01 
    Any Ideas please?
    M
    Maelito

    Hi Maelito,
    According to your description, you want to export the default printer name to text file, then read this printer name from text file and set the default printer via Powershell:
    #save printer name to text file
    Get-WmiObject -namespace root\cimv2 -Query “select * from Win32_Printer Where Default = TRUE” -Impersonation 3 | select -ExpandProperty name | out-file C:\temp\Printer.txt
    # read printer name from text file and set default printer
    $name=get-content C:\temp\Printer.txt
    (Get-WmiObject -Class Win32_Printer -Filter "Name='$name'").SetDefaultPrinter()
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Group Policy - Computer Startup Scripts - Add/Set Default printer

    Good Morning.
    Let's say we have 2 offices, A and B, and only 1 user.  The user is using Roaming Profiles.  Each office has its own printer.
    What I am trying to do, is make a Startup script that is specific to the COMPUTER being logged into so when any user logs into that computer, they get the printer in that office defined and set as default.
    I am able to do this successfully with my script but ONLY if i have the script be on the USER side of GP (i.e. in the Logon script section)
    That is great that that is working however, when my user goes to Office B, they still get mapped to Office A's printer if I use that method.
    So I figured I could just modify my GP and run the same script from the STARTUP section of the computer, rather than the LOGON section of the user.  It does not work.
    Here is my script:
    Set WRFCUNetwork = CreateObject("Wscript.Network")
    PrinterPath = "\\fileserver\MAINTELLER"
    PrinterDriver = "PrinterDriver"
    WRFCUNetwork.AddWindowsPrinterConnection PrinterPath, PrinterDriver
    WRFCUNetwork.SetDefaultPrinter "\\fileserver\MAINTELLER"
    This is where I Have the script placed:
         Computer Configuration -> Windows Settings -> Scripts(Startup/Shutdown)
    Once i'm in there, I double click Startup, click Add, and select my script which is named:
         MainPrinterSetup.vbs
    I have this GP applied to ONE OU, and that OU has ONE computer in it (my test computer)
    I login with a brand new user called "testuser" (creative, huh?) and basically nothing happens
    except they log in and have some Microsoft Document Image Writer printer set as default (which by the way sure does slow the PC down to the point of it almost being broke if anyone actually tries to print to that by accident)
    No Main Teller Printer, no anything.
    The strangest part about this is, if i apply this script to the user LOGON scripts, it works fine, the printer is there, and is set as default. (but see above why that wont work for my situation)
    So obviously the script works fine, but I guess i'm missing something when it comes to applying GP's to Computers rather than Users.
    Can anyone shed some light as to why the script is not running (i'm guessing the script isn't even attempting to run, rather than failing, but i have no way to know that)
    Thank you in advance!!
    Derek Conlon
    Network Administrator
    WRFCU
    EDIT:  Here are the PC's info that i'm working on:
         Server:  Windows Server 2003 Standard Edition (where my GP's are created and managed with AD)
         Target PC:  Windows XP Professional SP3
    EDIT #2:  I manually navigated to the Script file after logging in and "opened" it and it added and set the default printer no problem.  the issue is definately with the script running at startup.

    I wanted to clarify a few things:
    1. While it is true that printer connections are usually per user, it is definitely possible to create "global printers".  There are a number of ways to do this, but two methods that come to mind are using:
    a. "Rundll32 printui.dll,PrintUIEntry" option with the "/ga" switch.  The "/ga" switch is the key here since it allows you to deploy printers "per machine" instead of "per user".  More information
    about this is available at:
    http://members.shaw.ca/bsanders/NetPrinterAllUsers.htm
    http://technet.microsoft.com/en-us/library/ee624057%28WS.10%29.aspx
    http://www.computerperformance.co.uk/Logon/logon_printer_computer.htm
    http://www.robvanderwoude.com/2kprintcontrol.php
    b. The Print Management console that is available in Windows 2003 R2 and higher can help you deploy printers "per machine" in addition to "per user".  More information about this is available at:
    http://www.czsolution.com/print-management/print-management/print-management-console.htm#DeployingPrintersByGroupPolicy
    http://technet.microsoft.com/en-us/library/cc753109%28WS.10%29.aspx
    2. As Guy mentioned, Group Policy Preferences can help set the default printer.  But there is another way to accomplish this.  The problem with the computer startup portion is that it runs before the user logs in.  And applying this script
    in the login script section would not work per computer unless you used loopback processing.  So another way to do this is to place a script that sets the default printer into the "All Users" startup folder.  Items in the "All Users"
    startup folder run for any user that logs into the computer, but it runs in the user's context.  So, this script would effectively set the default printer on a "per machine" basis.  The script method is a cruder way to approach the problem,
    but it will help get the job done.  Here are some resources on setting the default printer via script:
    http://www.intelliadmin.com/index.php/2007/08/set-default-printer-from-a-script
    http://www.computerperformance.co.uk/ezine/ezine17.htm

  • Receipt (Incoming Payment) system default print layout

    Hi,
    When I print the Incoming payment receipt with the default print layout - APA Receipt (System), it always show many rows in the table.
    e.g. the incoming payment is a cheque from "Bank of China". I expect there should be only 1 row in the repetitive area.  However, it shows 3 rows for each bank defined in the system.
    Then, I do the following:
    1) I add a database field to get "Incoming payment - Cheques" table, "Bank Code - Account No." field.
    2) Update the existing database fields (Bank Code - Bank Name) in repetitive area, make it "Related to" the above field.
    After that, I get 3 rows, all under "Bank of China"
    How to get rid of the duplicate rows?  I expect to have only 1 row under "Bank of China" in this case.
    I am using SAP Business One 2007.
    Thank you very much!
    Yvonne

    May I have your advise please? Thanks a lot!

  • Setting default printer with printers deployed via print management

    Would like to set default printer on a windows 7 workstation to a printer deployed through group policy using print management.  However whenever machine reboots the defualt changes to a local printer XPS or something else.
    HOw can I set the default printer to one of the deployed printers?

    Even though this is a "machine" connection, the connection is created in each users security context.  Default printers are tied to user profiles and settings.
    I'm sure what is happening is the connection is getting created after the system sets a default or the network path is not yet available when the default printer is set.
    You can use prnmngr.vbs to get and set the default.  If get returns XPS printer, then set can change to one of the valid connections.
    Alan Morris Windows Printing Team

  • Setting Default Printer on Client Machine using Webutil

    hi.........
    i have configuired webutil on Application Server.
    i want to develop a form using webutil from which user can set default printer from client's machine.....
    i have tried using CLIENT_WIN_API_ENVIRONMENT.READ_REGISTRY();......BUT NOT YET SOLVED..
    Is there any other solution except using CLIENT_WIN_API_ENVIRONMENT.READ_REGISTRY();
    pls help me asap........

    Swapnil,
    There are a lot of posts about this. I suggest you search the Forms Forum for 'WebUtil default printer' and see if you can find some that has solved this issue.
    Sorry, I could be more helpful. I started looking through these posts myself and finally decided I was the wrong person doing the search! :-)
    Craig...

  • Set default printer in Photoshop CS4

    I'm a long-time Photoshop user (since Photoshop 3), upgraded to CS4 many months ago, and just updated my printer.  It is one of these all-in-one jobs that prints, copies, and faxes.  It has two printer device drivers: one for normal printing and one for the fax function.  The problem is (I think) that it seems to default in Photoshop to the fax function.  Therefore, when I try to print out a 4x6 photo @ 200ppi, it still defaults to 8 1/2 x 11 format (that you would get with a fax machine).
    In CS4, from the main menu, File > Print.  In the pop-up it says 8.5 ins x 11in.  I checked [X] Scale to fit Media, and now it says print resolution 109ppi (yikes ... I wanted 200ppi).  "Bounding Box" was checked as a default, so I left it checked (what is that, anyway)?  The 8.5 x 11 does not go away.  Clicked [Print].
    A Print menu pops up.  It says, for some strange reason, HP Officejet Pro 8500 A909g Series fax ... yikes ... in last screen it didn't say fax, so I selected the 8500 option without fax (presume that is the printer). Clecked Preferences, and got "Printing Preferences" popup.  My default printing shortcut was selected (which is for mornal B&W draft-quality text) -- so I checked Photo Printing-Borderles.  Paper size defaluted to Borderless 4x6in, HP Advanced Photo Papers, Best Quality, grayscale off, and changed orientation from landscape to Portrait.  Under "Features" Basic Options were HP Advanced Photo Papers, Best Quality, Portrait (instead of Landscape) ... paper size was set to Borderless 4x6in.  Print in Color.  Clicked OK. That closed the Popup and returned me to the Print panel.  Clicked "Print"
    Got a 1.25" wide by 2" high print ... NOT a 4x6.
    As I dig down into the menus, it appears to be initially defaulting to the "FAX" drivers for CS4, not the printer drivers.  That's probably why it keeps coming up 8 1/2 x 11 at 109ppi.
    What did I do wrong?
    Thanks !!

    Photoshop CS4 uses an old (introduced in Win16?) printing API that limits the printer name length to 30 or 31 characters. With your printer name, that gets you halfway into "Series" and anything past that will be ignored.
    The simple solution is to rename your printer to something shorter. Go into the control panel, printers and faxes, and right-click on the printer and choose "Rename" and rename the printer. That should resolve the problem.

  • How too set query print layout parameters?

    Hello,
    simple task:
    1. Open "Query Print Layout...": SBO_Application.ActivateMenuItem("4868")
    2. Handle new reports form: SBO_Application.Forms.ActiveForm (I know, the better solution should be get form with proper TypeEx and highest TypeCount, but now it doesn't matter)
    3. Select row with required report: m.Columns.Item(0).Cells.Item(row).Click(BoCellClickType.ct_Regular, 0)
    4. Run printing: SBO_Application.ActivateMenuItem("519")
    5. Handle new parameters form: ???
    How can I get newly created form containing report parameters (TypeEx "4000")? I wanna set proper parameters and click "OK" to show printed report. Doesn't work handling:
    - FORM_LOAD in ItemEvent
    - MenuEvent for "519" (is only BeforeAction
    - PrintEvent (executed after accepting parameters)
    - ReportDataEvent (passed FormUID belongs to reports list, not parameters)
    In each event I've listed all forms and there is no form titled "Query - Selection Criteria" with expected TypeEx.
    Is there any way to achive this?

    when you activate print preview of printing on selected User Query Layout, you can cacth the ET_FORM_LOAD event of formTypeEx =4000
    It is working. Please note if you do not have this event, you may check your filters (?)
    Then you can populate your values. Based on my experience the click ok button is not working.
    Tip: Search the forum in year 2009 i have posted there sample codes
    Regards
    J

  • How can I set default toolbar layout for all users in my system?

    Hi everybody! I am running a local ubuntu server at my office. I can set some defaults preferences (about:config) for all new users in the system by defining those prefs in the /etc/firefox/syspref.js.
    Now, I want to define default toolbar layout in a similar way (maybe not needed but fun), to copy the toolbar layout for my user. Is there a general way to do that?
    thank you in advance!

    You can try to create a default template folder (defaults/profile) in the Firefox and place the file(s) in that folder for newly created profile.
    The only way to customize an existing profile is to copy files directly to it.

  • Set default printer in free Reader app for Windows 8?

    Is it possible to set a default printer for the free Reader app?  We're new to Windows 8.  We set our HP as the default printer in the windows control panel, and the setting works for our other programs like word and IE, but the Reader app forces us to choose the HP printer every time we try to print a doc.  We have to click the More options and choose the printer from the list.  OneNote and the MS Document writer come up first in the list, and we don't use either of these.

    Photoshop CS4 uses an old (introduced in Win16?) printing API that limits the printer name length to 30 or 31 characters. With your printer name, that gets you halfway into "Series" and anything past that will be ignored.
    The simple solution is to rename your printer to something shorter. Go into the control panel, printers and faxes, and right-click on the printer and choose "Rename" and rename the printer. That should resolve the problem.

  • 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

  • How to set default printing in black only

    Greetings,
    I'd like to set my default printing with Firefox at black ink only, which I can do individually prior to printing a page, but it reverts to color after that printing. But if I set the size at, say, 80%, that becomes the default setting, or if I set portrait/landscape for a single printing, that becomes the default setting. Why can't the desired black-ink only setting default like the size/portrait/landscape setting? What I want to do is set the printing permanently at black only, and the size at 100%, but allow one-time printing at landscape or portrait, or sizes less than 100% without those settings becoming the default. How can I do this? Thanks for any help
    Best wishes, Tom
    I've tried the help solutions on the website to no avail....

    Greeting ideato,
    Thanks so much for your reply. I've clicked on the Firefox button at upper left, then Print, then Properties, then Advanced, under which is listed Printer Features (I have only 1 printer), below which is a line with Print in Grayscale, clicking on which has has 3 options: Off (apparently default), High quality Grayscale, and Black Ink Only. I click on the latter, and click on OK for this window and others in the sequence, and it'll print in black only for the present printing, but will revert to color for the next printing, 'though like I said, if I change the size to 80% or from portrait to landscape, those settings will remain. I can't figure it out. Again, thanks for any help.
    Regards, Tom

Maybe you are looking for

  • Programatically pprove/Disapprove user decision step in a waiting workflow.

    Hi Experts, If I have the approval step work item ID,can I programetically resume the waiting workflow by providing the input (approve disapprove). The use case is that the workflow is started. The workflow has a approval step and it is now waiting f

  • Adobe reader for IOS and Dropbox

    I have made some changes to a PDF document on my iPad using the Adobe Reader for IOS. How can upload this changed document to Dropbox so I have it available on my other devices. Any suggestions are most welcome. Cheers Ossi

  • Brand New ATV3 - No HDMI video signal.

    Brand New (2013) ATV3 - No HDMI video signal when plugging it in to my TV (Toshiba 52" LED). Ive tried 3 different HDMI cables in 3 different HDMI inputs in various configurations. Still no video. Ive tried power cycling ATV and my TV, and changing r

  • Fixed Assets - Capitalised interest

    Hello Is it possible to post manual Capitalised Interest to a specific Book of an asset. This posting should only post to the non-leading ledger. I see SAP can calculate and post capitalised interest when the depreciation has been posted but want to

  • Debug on FWSM

    How can you perform a debug packet on a FWSM? The traffic is in the Data Plane of the FWSM and not the control plane, so the debug command cannot see the through traffic. Any ideas???