Customer Master - Preview (address) button, change default lines from 10

Currently on ECC 6.0.
I would like to change the default setting of "Number of Lines" from 10 to 6 within the "Preview" button on the Address tab within XD01,2,&3.  
This would be a system or user setting so the user doesn't have to manually change the "Number of lines" via the Parameter button each time in XD03.  So I know we can change it manually from 10 to 6 via the Parameter button, however, I don't want to have to do this.  I want the default setting, for all users, to be 6 instead of 10.
I see you can have a "user-specific" default sender country parameter, however, I can't find where to change the system or user default setting of the Number of Lines from 10 to what we want, 6.
Got lost in the debugger, in XD03, trying to capture where this value was being set from.
Any help on this would be greatly appreciated.
Thanks.
David

Hi,
XD03 calls FM ADDRESS_INTO_PRINTFORM which is responsible for formatting. You can see that import parameter number_of_lines has default value 10. There is a user exit EXIT_SAPLSADR_001 for this function group where you can change this default value. It is only called in case of address format key is in customer range (900 - 999). So maybe you can define your own address format and modify default value in this user exit.
In case you don't want to define your address format for some reason then there are another solutions. If you are on SAP NetWeaver then you can try to use implicit enhancement point to change this value at the beginning of FM ADDRESS_INTO_PRINTFORM. If you are not on NetWeaver you can modify default value of this FM. You will have to modify SAP standard.
Cheers

Similar Messages

  • How do I change default tab from .5 to .25 in word 2008 for mac?

    Mountain Lion
    How do I change default tab from .5 to .25 in word 2008 for mac?
    Thanks
    Message was edited by: Rafael Montserrat1
    Thanks, Rafael

    They haven't been checked as Solved, it's an option for you to choose one if the answer has solved your problem. You can mark one answer as Solved, and two as helpful. Only you, as the originator of the topic, can see these buttons.
    Sorry for the goofed answer. Most people are looking to set the margins and I looked over that you were interested in the tabs.
    To save tabs in fixed positions that will appear with every new document, you must modify the default template. You can't open the template from the desktop. If you do, it will open as a standard document. You must open it from the Open dialogue box from within Word. With Word in the foreground, press Command+O and navigate to:
    /Users/your_account/Library/Application Support/Microsoft/Office/User Templates/
    Open the file Normal.dotm
    Set your tabs and save the file. Close the template. All new documents will now open with those preset tabs.

  • How do I change default page from USA  to United Kingdom

    HHow do I change default page from USA to uk

    Click here and follow the instructions to change the iTunes Store country.
    (108603)

  • [svn:fx-trunk] 7125: Change default columnGap from 0 to 20 to match Vellum' s default.

    Revision: 7125
    Author:   [email protected]
    Date:     2009-05-20 04:12:27 -0700 (Wed, 20 May 2009)
    Log Message:
    Change default columnGap from 0 to 20 to match Vellum's default.
    QA Notes:
    Doc Notes:
    Bugs: SDK-18095
    Reviewers: Gordon
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-18095
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/defaults.css

    Revision: 7125
    Author:   [email protected]
    Date:     2009-05-20 04:12:27 -0700 (Wed, 20 May 2009)
    Log Message:
    Change default columnGap from 0 to 20 to match Vellum's default.
    QA Notes:
    Doc Notes:
    Bugs: SDK-18095
    Reviewers: Gordon
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-18095
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/defaults.css

  • Custom Master page set as a default on feature activation in Moss

    I've a site in moss. I have created feature in my solution and on feature activation it will set the custom master page
    CustomMaster.master as a default master page and on feature deactivation it will set as a default master page
    default.master.
    The problem I'm facing is that if I'm activation the feature at first time then it will set the CustomMaster.master as a default master page but when I'm deactivate the feature it will remove the
    CustomMaster.master page and module. but when I'm again activate feature at that time it will not create mo1dule and CustomMaster.master in "_catalogs/masterpage/". So, no error was given on feature activation but
    it will give error while I'm accessing my site as a "File Not Found" because
    CustomMaster.master is not created.
    Code of Module.xml file
    <Module Name="Master" Url="_catalogs/masterpage"> <File Path="Master\CustomMaster.master" Url="Master/CustomMaster.master" IgnoreIfAlreadyExists="TRUE" Type="GhostableInLibrary"/> </Module>
    Code of method which is call on feature activation
    public void SetCustomMasterPage(SPFeatureReceiverProperties properties, string MasterPageName)
    try
    #region SetMasterpage
    SPSite siteCollection = properties.Feature.Parent as SPSite;
    if (siteCollection != null)
    foreach (SPWeb web in siteCollection.AllWebs)
    // Get the Site Collection root path to get the master page gallery.
    string siteCollectionRoot = web.Site.RootWeb.Url;
    // Set the Site Master to Custom.master
    var siteMaster = new Uri(siteCollectionRoot + "/_catalogs/masterpage/Master/" + MasterPageName);
    web.CustomMasterUrl = siteMaster.AbsolutePath;
    web.MasterUrl = siteMaster.AbsolutePath;
    // Clear the Alternate CSS
    web.AlternateCssUrl = string.Empty;
    // Save the changes back to the web
    web.Update();
    #endregion
    catch (Exception)
    Code of methods which are call on feature deactivation
    public void SetDefaultMaster(SPFeatureReceiverProperties properties)
    try
    SPSite siteCollection = properties.Feature.Parent as SPSite;
    if (siteCollection != null)
    foreach (SPWeb web in siteCollection.AllWebs)
    // Get the Site Collection root path to get the master page gallery.
    string siteCollectionRoot = web.Site.RootWeb.Url;
    // Set the Site Master to Custom.master
    var siteMaster = new Uri(siteCollectionRoot + "/_catalogs/masterpage/default.master");
    web.CustomMasterUrl = siteMaster.AbsolutePath;
    web.MasterUrl = siteMaster.AbsolutePath;
    // Clear the Alternate CSS
    web.AlternateCssUrl = string.Empty;
    // Save the changes back to the web
    web.Update();
    catch (Exception)
    public void RemoveCustomMasterPage(SPFeatureReceiverProperties properties, string MasterPageName)
    try
    using (SPSite sitecollection = (SPSite)properties.Feature.Parent)
    using (SPWeb web = sitecollection.RootWeb)
    string WebAppRelativePath = sitecollection.ServerRelativeUrl;
    if (!WebAppRelativePath.EndsWith("/"))
    foreach (SPWeb site in sitecollection.AllWebs)
    WebAppRelativePath = site.Url;
    if (!WebAppRelativePath.EndsWith("/"))
    WebAppRelativePath += "/";
    String MasterUrl = WebAppRelativePath + "_catalogs/masterpage/Master/" + MasterPageName;
    SPFile fileUrl1 = site.GetFile(MasterUrl);
    if (fileUrl1 != null)
    SPFolder folder = fileUrl1.ParentFolder;
    fileUrl1.Delete();
    web.Update();
    //attempt to delete the folder if it is now empty
    if (folder.Files.Count < 1)
    folder.Delete();
    catch (Exception)
    Pls guide me for solve this issue.

    Hello Sameer,
    When you are calling "RemoveCustomMasterPage" function?
    Also make below change in web.config file your web application to know the problem:
    1. Open up your sites web.config, and make the standard custom errors edit. You want it to be < customerrors mode="Off"/>
    2. Then, search for the CallStack="false" and change it to CallStack="true", you should find this in the "<safemode>" node.
    3. Find:   <compilation debug="false" />, Replace with: <compilation debug="true" />
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Changing Default Line End Styles in FM8

    Does anyone know how to change the default line end, line width, and color styles in FM8? Every time I open a document and draw a line or an arrow I have to adjust these three things to get what I need. I end up doing this several times a day and I'm wondering if there is a way to fix this. I've been told to look in the maker.ini file, but I can't find or don't know what I'm looking for to change. Any suggestions?

    Unfortunately, that's one of the properties that can't be changed in FM. If you do this a lot, you may want to investigate using FrameScript to configure the "defaults" that you prefer.
    See http://www.framescript.com

  • CiscoWorks Changing Default Line Input during Config push

    If no line input is specified as in this example
    line con 0
    line vty 0 4
    password cisco
    line vty 5 15
    password cisco
    does CiscoWorks change the default line input while pushing a configuration to "transport input none"?

    Config Editor allows you to edit and download configuration files to devices using a GUI instead of the command line interface (CLI). Use Config Editor to edit individual device configurations within RME and then download them back to a device.
    For more details please follow up on this link:
    http://www.cisco.com/en/US/docs/net_mgmt/ciscoworks_resource_manager_essentials/4.2/user/guide/cfgedt.html#wp1055028

  • Error-u201CNo customer master record exists with sold to partyu201D. from Webshop

    Hi,
    We are trying to create an order from webshop calling BAPI_SALESORDER_CREATEFROMDAT2, while saving the order we are getting an error that "No customer master record exists with sold to party".
    When we try to execute the same with stanalone program from Java the output is coming fine.
    If anyone worked on similar issue, kindly let me know.
    -Thanks

    Hello Mark,
    Yes, Master data is available in both systems.  Configuration is also fine.
    Thanks,
    Satish.

  • Mac OSX Reader 10.1.2 – Cannot Change Default Printer From "Any Printer"

    With Mac Acrobat Reader 9.x it was possible to use Page Setup to set the default printer from “Any Printer” to one of our choice.  Once set it was possible to print many documents without having to go back and reset it every time.  In other words it would ‘remember’ the setting.
    Mac Acrobat Reader 10.1.2 does not remember the setting of the printer in the Page Setup dialogue and keeps reverting to "Any Printer" between printing; either from the same document or multiple documents.  Thus on each occasion I need to print I need to go to Page setup and reselect the printer.  Irritating, and time wasting.
    Now this would not matter if there were not a slight, but nevertheless significant, improvement in print quality between a document printed with the correct printer and “Any Printer” selected in Page Setup.
    NOW, before you all jump in with suggestions read this:
    1:  I do have the printer selected as the default printer in System Preferences (no difference anyway).
    2:  Selecting printer in the Print dialogue makes no difference to the print quality.  It MUST be selected in Page Setup.
    ADOBE, can you please get Mac Acrobat Reader X (10.x) to revert to the same behaviour as Reader 9.x ?
    Thank you.

    The same problem exists in Reader 11.0 for Mac.  In my case, it defaults to our specialty photo printer instead of the workhorse laserprinter.

  • Address Book, change default date field?

    I have added a date field to address book. I use it to set a creation date for a contact. Currently, the default content for this field is 12/31/2000.
    Does anyone know a way to change this? I’d like the field year to be the current year.

    Hi Adnan,
    I am fairly sure that you cannot access or change the behaviour of the date/time field to that extent. You can script the field to have a particular value or to be a constant from the date selected; but you cannot define the default value.
    Happy holidays,
    Niall

  • How to change Preview's Full screen default setting from "two-pages" to "continuous scroll"

    I am using OS X mavericks on my mid 2013 Air.
    I usually need to open multiple PDFs during my work and I prefer to put them all in full screen for easy swapping. I was able to change the setting which allowed me to open PDFs in "continuous scroll". However, the PDFs became two-pages display again when I put them into full screen and I can't find any setting which allow me to change the full screen default display mode. Is there a way to do it or it is simply not possible.? Could Apple just add an option for us to change it? Thanks in advance for any help.

    You may also need to reset the page zoom on pages that cause problems.
    *<b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    *http://kb.mozillazine.org/Zoom_text_of_web_pages

  • How can I retrieve the IP address of the default printer from the windows registry

    I am using LabVIEW 7 on windows NT4 computers.
    I have a SubVI that I use to ping the network printer to make sure that the printer is on line prior to sending a print at the end of testing a unit.
    If LabVIEW does not get a reply to its ping data is saved locally and the user informed.
    I would like to modify the VI that pings the printer to ping the default printer of the computer on which the VI is running.
    I would be grateful if anyone can show me how to retrieve the default printers IP address.

    Hi Stuart,
    The registry entries for User's Default Printer are:
    Win 9x:
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\Curr​entVersion\Windows]
    NT/XP:
    [HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows]
    "Device"="Printer Name"
    The device is the name used to represent the printer in the registry. The name can be found in the [HKEY_CURRENT_USER\Printers\Settings] key.
    Machine name is part of the "Printer Name," which you can use to ping directly (i.e., w/out having to look-up its IP address).
    Hope this helps.
    Regards,
    Khalid

  • Changing Default Search (from Google) in Mail

    Hi all,
    Is there anyway to change the default right (or command) click search option from Google to something else (when highlighting an item in an email)?
    And, along the same lines, is there anyway to make it so that you can have a browser other than Safari launch when executing those searches?
    Thanks!

    Thanks for the reply.  I'm afraid not, if I open Preferences then change the Message Font colour to blue and leave the window open, when you start typing the body of the text, it reverts back to black.  The only way which seems to work is to open the colour selector in the tools menu, then select the preferred colour and then start typing.  Unfortunately, you have to go through this process for every new email.

  • Is there any way to change default background from bmp in Captivate 7 recordings?

    Any time I make a recording, be it demo, training etc it always saves the captured background as a bmp in the library.
    I can manually export, edit, then reimport each of the files as jpgs, which looses no quality but reduces the size of the published file by about 50%, and the project file itself by about 80%.
    Is there a way to change the default capture mode to save me this massive chore each time I record a project? or some other way around it?

    I have noticed this too, i.e. the captured background is BMP, and the capture images are PNG. For example, my command line terminal window backgrounds are 4070.57K versus about 32K to 65K when I convert them to PNG files. Our demonstration files can be enormous because of the BMP backgrounds. It would definitely be advantageous to have a recording setting for PNG versus BMP for the backgrounds in Captivate.

  • Change default VM from "client" to "server"

    Hi,
    By default, java uses the "client" VM on my system, as you can see:
    java -versionjava version "1.6.0_01"
    Java(TM) SE Runtime Environment (build 1.6.0_01-b06)
    Java HotSpot(TM) Client VM (build 1.6.0_01-b06, mixed mode, sharing)
    I've made the server VM available by copying it from the SDK to the JRE's folder, though:
    java -server -versionjava version "1.6.0_01"
    Java(TM) SE Runtime Environment (build 1.6.0_01-b06)
    Java HotSpot(TM) Server VM (build 1.6.0_01-b06, mixed mode)
    What I would like to do, is set the server VM as the default VM. This is on Windows Server 2003 (which I use as a desktop), so I've gone to the control panel -> java -> java tab -> view java applet runtime settings -> added "-server" to the java runtime parameters. AFAICT this is only for applets though, and the java control panel doesn't contain anything to change runtime parameters for my desktop applications (e.g. netbeans, azureus).
    What's the correct way to change the default VM? I'm interested in doing this on both Windows (2003) and GNU/Linux (Debian).
    Thanks!

    I figured out how to change it, posting it here in case anyone else wants to do this.
    You simply need to find the file "jvm.cfg" and put this line above all others: "-server KNOWN" (no quotes of course).
    On Debian GNU/Linux with Sun Java 1.5.0, the file in question is at /etc/java-1.5.0-sun/jvm.cfg.
    On Windows, somewhere in c:\program files\java.
    Edit: by the way, you can't have a blank line between the comments and the statements - this will give you an error.
    To test if it worked, run "java -version" - it should say "[...] Server VM [...]".

Maybe you are looking for

  • How can I change my VPN configuration so that not everything goes through it?

    So I generally connect my laptop through my WiFi connection, which is set as priority number 1. For connecting to certain servers at my office (I work remote) I need to VPN in. Now, I'd like to be able to stay connected to VPN without ALL my internet

  • Why can't I open a Captivate 8 project in Captivate 7?

    I really need to be able to open up a Captivate 8 project back into Captivate 7. I had no idea that once I installed Captivate 8 it would change all of my files. Is there any way i can do this without corrupting my projects?Adobe Captivate

  • Changing a html file to a word document

    hi there i have just purchased a new imac and installed microsoft office 2011 home and student. I have made a cv on a web site which then asks you to save as a word document, the problem been is that it downloads the file as a html file so i cannot m

  • Vendor evaluation criteria rejects/complaints

    Hi,     I have configured the vendor evaluation to look at the rejection/complaints sub criteria with the scoring method as 8 = Automatic Determ. from Quality Stat.: Quality Notification. The first time I create a notification, the score drops from 1

  • PLacement of TAB

    Hi all, I have developed a application with 10tabs on it.... according to my desktop screen settings i am able to see 5tabs when logged in..... I have to scroll right to see next 5 tabs....... when i click on say 8th tab....i can see the content on t