Change FAX number for all vendors and customers in a massive way.

Hello,
I need to change the FAX number for all the vendors and custormers in Q01 so that every form should output through an specific test fax-printer. The problem is that I don't know which field I should change and how can i do it in a massive way. I have heard something about catts but i don't know almost anything.
Could you help me?
Thanks in advance.
Luis Álvarez.

Hi Luis,
Use tcode XK99 for vendor mass change, select the Fax no field. You have to take note that this changes will be only 1 fax number for all vendors.
Else you have to use BAPI for mass change.
regards,
maia

Similar Messages

  • Upload using eCATT to change fax number for all existing Vendors

    Dear All,
    Using eCATT upload, i need to change the Fax number format for all existing vendors. How to do this?
    I havent used eCATT before, please guide me in this regard
    Thanks
    RS
    Edited by: Ramapuram Saravanan on Feb 8, 2009 6:13 AM

    Hi Luis,
    Use tcode XK99 for vendor mass change, select the Fax no field. You have to take note that this changes will be only 1 fax number for all vendors.
    Else you have to use BAPI for mass change.
    regards,
    maia

  • How to app run for foreign vendors and customers please tell the steps

    hai every body this is raj
    i am asking how to create the foreign vendors and how to apprun for foriegn vendors please tell the steps
    and another questions is how to run app for customers t

    Lets say your company code is in country IN.  Every vendor you create (using XK01, lets say) with a country other than IN is a foreign vendor for your company code.  To enable APP for foreign vendors, make sure you check the checkbox 'Foreign Business Partner Allowed' in 'Payment method in company code' in T Code FBZP.  If the vendor invoice is in a foreign currency, make sure you include that currency as permitted currency for that payment method.
    To run APP for customers, your 'Payment method in country' in FBZP must be for incoming payment.

  • How do I go back into my registry and change a number for loading apps and websites from 20 back to ten?

    I tried something suggested from a friend who said to go to a spot in my registry and change a number from 10 to 20, and this would help apps to load better, giving them more time. But now nothing will load because there is to much time taken. I need to find that segment of the registry and change the number back. When I went there, a little box popped up and said, "I will be careful I promise. "

    I did the resetting preferences, still no help, still cannot play flash games on facebook like Indiana Jones, Cityville, and Pioneerville. I wish I could go back and change that number I changed from 20 back to 10. I would be playing right now.

  • Interesting problem for all students and programmers Have a look!

    Hello. This is a very interesting problem for all programmers and students. I have my spalsh screen class which displays a splash when run from the main method in the same class. However when run from another class( in my case from my login class, when user name and password is validated) I create an instance of the class and show it. But the image in the splash is not shown. Only a squared white background is visible!!!.
    I am sending the two classes
    Can u tell me why and propose a solution. Thanks.
    import java.awt.*;
    import javax.swing.*;
    public class SplashScreen extends JWindow {
    private int duration;
    public SplashScreen(int d) {
    duration = d;
    // A simple little method to show a title screen in the center
    // of the screen for the amount of time given in the constructor
    public void showSplash() {
    JPanel content = (JPanel)getContentPane();
    content.setBackground(Color.white);
    // Set the window's bounds, centering the window
    int width = 300;
    int height =400;
    Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
    int x = (screen.width-width)/2;
    int y = (screen.height-height)/2;
    setBounds(x,y,width,height);
    // Build the splash screen
    JLabel label = new JLabel(new ImageIcon("logo2.gif"));
    JLabel copyrt = new JLabel
    ("Copyright 2004, Timetabler 2004", JLabel.CENTER);
    copyrt.setFont(new Font("Sans-Serif", Font.BOLD, 16));
    content.add(label, BorderLayout.CENTER);
    content.add(copyrt, BorderLayout.SOUTH);
    Color oraRed = new Color(100, 50, 80, 120);
    content.setBorder(BorderFactory.createLineBorder(oraRed, 10));
    // Display it
    setVisible(true);
    // Wait a little while, maybe while loading resources
    try { Thread.sleep(duration); } catch (Exception e) {}
    setVisible(false);
    public void showSplashAndExit() {
    showSplash();
    // System.exit(0);
    // CLASS CALLING THE SPLASH
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.JMenu;
    import javax.swing.*;
    import java.applet.*;
    import java.applet.AudioClip;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.URL;
    import java.net.MalformedURLException;
    import java.awt.Dimension;
    import java.awt.Toolkit;
    import java.net.URL;
    public class login extends JDialog
    String username;
    String password;
    JTextField text1;
    JPasswordField text2;
    login()
    //super("Login To TIMETABLER");
    text1=new JTextField(10);
    text2 = new JPasswordField(10);
    text2.setEchoChar('*');
    JLabel label1=new JLabel("Username");
    JLabel label2=new JLabel("Password");
    label1.setFont(new Font("Garamond",Font.BOLD,16));
    label2.setFont(new Font("Garamond",Font.BOLD,16));
    JButton ok=new JButton(" O K ");
    ok.setActionCommand("ok");
    ok.setOpaque(false);
    ok.setFont(new Font("Garamond",Font.BOLD,14));
    ok.setBackground(SystemColor.controlHighlight);
    ok.setForeground(SystemColor.infoText);
    ok.addActionListener(new ActionListener (){
    public void actionPerformed(ActionEvent e)
    System.out.println("ddddd");
    //validatedata();
    ReadText mytext1=new ReadText();
    ReadText2 mytext2=new ReadText2();
    String value1=mytext1.returnpassword();
    String value2=mytext2.returnpassword();
    String user=text1.getText();
    String pass=text2.getText();
    System.out.println("->"+value1);
    System.out.println("->"+value2);
    System.out.println("->"+user);
    System.out.println("->"+pass);
    if ( (user.equals(value1)) && (pass.equals(value2)) )
    System.out.println("->here");
    // setVisible(false);
    // mainpage m=new mainpage();
    // m.setDefaultLookAndFeelDecorated(true);
    // m.callsplash();
    /// m.setSize(640,640);
    // m.show();
    //m.setVisible(true);
    SplashScreen splash = new SplashScreen(5000);
    // Normally, we'd call splash.showSplash() and get on with the program.
    // But, since this is only a test...
    splash.showSplashAndExit();
    else
    { text1.setText("");
    text2.setText("");
    //JOptionPane.MessageDialog(null,
    // "Your Password is Incorrect"
    JButton cancel=new JButton(" C A N C E L ");
    cancel.setActionCommand("cancel");
    cancel.setOpaque(false);
    cancel.setFont(new Font("Garamond",Font.BOLD,14));
    cancel.setBackground(SystemColor.controlHighlight);
    cancel.setForeground(SystemColor.infoText);
    cancel.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e)
    dispose();
    System.exit(0);
    JPanel pan1=new JPanel(new GridLayout(2,1,20,20));
    JPanel pan2=new JPanel(new GridLayout(2,1,20,20));
    JPanel pan3=new JPanel(new FlowLayout(FlowLayout.CENTER,20,20));
    pan1.setOpaque(false);
    pan2.setOpaque(false);
    pan3.setOpaque(false);
    pan1.add(label1);
    pan1.add(label2);
    pan2.add(text1);
    pan2.add(text2);
    pan3.add(ok);
    pan3.add(cancel);
    JPanel_Background main=new JPanel_Background();
    JPanel mainpanel=new JPanel(new BorderLayout(25,25));
    mainpanel.setOpaque(false);
    // mainpanel.setBorder(new BorderLayout(25,25));
    mainpanel.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createTitledBorder
    ("Login To Timetabler Vision"),BorderFactory.createEmptyBorder(10,20,10,20)));
    mainpanel.add("West",pan1);
    mainpanel.add("Center",pan2);
    mainpanel.add("South",pan3);
    main.add(mainpanel);
    getContentPane().add(main);
    void validatedata()
    ReadText mytext1=new ReadText();
    ReadText2 mytext2=new ReadText2();
    String value1=mytext1.returnpassword();
    String value2=mytext2.returnpassword();
    String user=text1.getText();
    String pass=text2.getText();
    System.out.println("->"+value1);
    System.out.println("->"+value2);
    System.out.println("->"+user);
    System.out.println("->"+pass);
    if ( (user.equals(value1)) && (pass.equals(value2)) )
    SplashScreen splash = new SplashScreen(5000);
    splash.showSplashAndExit();
    dispose();
    else
    { text1.setText("");
    text2.setText("");
    //JOptionPane.MessageDialog(null,
    // "Your Password is Incorrect"
    public void callsplash()
    {SplashScreen splash= new SplashScreen(1500);
    splash.showSplashAndExit();
    public static void main(String args[])
    { login m=new login();
    Dimension screenSize=Toolkit.getDefaultToolkit().getScreenSize();
    int screenPositionX=(int)(screenSize.width/2-390/2);
    int screenPositionY=(int)(screenSize.height/2-260/2);
    m.setLocation(screenPositionX, screenPositionY);
    //m.setResizable(false);
    m.setSize(600,500);
    m.setSize(390,260);
    m.setVisible(true);

    Hi Luis,
    Use tcode XK99 for vendor mass change, select the Fax no field. You have to take note that this changes will be only 1 fax number for all vendors.
    Else you have to use BAPI for mass change.
    regards,
    maia

  • HT5787 Change apple id for all purchased apps...

    I want to change apple id in my iphone as my old apple ID's password is not working. Please help me. I want to change apple ID for all new and old purchases.

    Have you tried logging out an back into that account on your phone (tap on it in Settings > iTunes & App Store), and/or tried getting the password reset for it : http://iforgot.apple.com (if you do get the password reset then you might need to logout and back into it) ?
    If you create a new account then that will work for new purchases, but all of your existing downloads will remain tied to your old account, so only your old account will be able to redownload those purchases and/or download updates to its apps.

  • Consolidating In/Out Payments for BPs who are vendors and customers

    Hi
    We do business with a number of companies who are both vendors and customers and I am wondering if there is a better way of dealing with contra payments..
    At the moment I would do the following:
    I want to pay a supplier's November AP Invoices but they also owe us (a lesser amount) for November AR Invoices....
    1. I create an incoming payment for the amount of the AR Invoices but deposit the payment to a 'contra' account instead of our current account. (No actual funds have been received from the supplier/customer)
    2. I create an outgoing payment in the amount of the balance of the 'contra' account which pays off some AP Invoices in full and one AP Invoice in part. I choose the 'contra' account as the payment account.
    3. I create a second payment for the balance of the part-paid AP Invoice and the rest of the due AP Invoices. I choose the current account as the payment account.
    4. I send the supplier/customer 2 separate remittance advice notes along with a single cheque in the amount of the 2nd payment..
    Is there a better way of doing this which doesn't rely on me remembering to check whether a vendor is also a coustomer and whether they owe money for the relevant period before I do a payment run?
    Thanks for any advice (SAP 2007A)

    Check this WIKI, How to offset a business partner who is simultaneously a supplier and a customer?
    [https://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=69861411]

  • How Can I Change Format Mask For All Fields that type's Number Depend on Parameter in Report Builder 10g ?

    I want Change format mask for all fields that type's number
    Such as
    if  :parameter_value = 1 then
       all fields format mask = ' 999,999,990.000' ;
    else
       all fields format mask = ' 999,999,990.00' ;
    end if;
    Regards

    So, i have bad news for you : you'll have to rebuild again.
    Meanwhile i have excellent news for you : there's an online tool made by Johannes Henseler called Sidecar xml which builds the necessary xml file for you, sort of what you find in the Digital Publishing Folio Editor website, but saves it in your Folio folder.
    Next time you import all your folder (with that file), it will place all the necessary information, and even reorder the articles.
    Build once, play many times.

  • Random Number being changed to the same number for all rows

    hello all,
    first of all I want to mention that this problem start happening after 2.14 instalation of Power Query.
    I'm creating new column in my query and setting all values to random numbers. The problem is that next step (doesn't matter what it do itself) somehow changes all those random numbers to the same random number for all lines.
    here's code sample:
    InsertedCustom = Table.AddColumn(RemovedColumns3, "Random Number", each Number.Random()),
        InsertedCustom2 = Table.AddColumn(InsertedCustom, "Analyst Full Name", each [Analyst First Name]&" "&[Analyst Last Name]),
    when I'm checking step by step, InsertedCustom  creates new column and all values are being set randomly for all lines BUT when going to the next step (InsertedCustom2) all values in the column "Random Number" are being changed to the
    same number (no matter that InsertedCustom2 itself should not be doing anything to column named "Random Number") . I even tried moving InsertedCustom step to the bottom of my code but it didn't help and still facing this issue.
    p.s. updated my PQ to 2.15 - didn't help

    This is a known issue. Power Query assumes that functions are idempotent (given the same arguments, they produce the same result), which isn't true for Number.Random. Our optimization pipeline is turning Number.Random() into a constant in the scenario you
    encountered, which results in all rows having the same value.
    There's been some discussion of how to fix this, but that won't help you in the near term. Can you describe a bit more about your scenario and what you're trying to accomplish? Perhaps we can help you find a workaround.
    Ehren

  • My macbook pro's screen display has suddenly gone into a strange colour setting where everything appears in a kind of infrared colour palette an I can;t seem to change it back.  It's the same for all icon and websites, does anyone know how to restore?

    My macbook pro's screen display has suddenly gone into a strange colour setting where everything appears in a kind of infrared colour palette an I can;t seem to change it back.  It's the same for all icon and websites, does anyone know how to restore?

    Wow!  I think I had this same issue just last night.
    I was cleaning my macbook pro retina on the outside.  Then I opened it up and was wiping dust off the monitor and I can't pinpoint exactly when, but the colors changed suddenly.  It looked super strange, it was like green halo's and it looked worse when looking at it at an angle.  Of course I took no pictures!!!  I was freaking out that my 2 grand laptop was busted and I somehow removed a protective film or something.
    But I digress...  The image looked very green and spacey, it was almost a neat effect.  After about 5 minutes it started to look a little more digital though.  There were straight lines of this halo effect on the edges and top.  After about 10 minutes it turned into a predominate issue with the blacks on screen.  I could open a web browser and it was unnoticable on a white background.  After about 15 minutes, you could only barely see the green cloud effect if you looked at the monitor from an extreme angle.  After about 20 minutes, it was completely back to normal, I almost feel paranoid like I see a halo or something strange.  But I believe that might be all in my head now.
    So yerp, lemme know what you guys figure out.

  • How do I change my number for iMessage and facetime

    How do I change my number for iMessage and FaceTime on my iPad mini

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
     Cheers, Tom

  • Park document approach for all PO and Non u2013 PO based vendor Invvoices

    Hello Experts,
    I want to use park document approach for all PO and Non u2013 PO based vendor Invoices.SAP
    Allows park document facility for FB60 ( Non-Po Based vendor Invoice)but doesnt allow the
    Same functionality for MIRO ( Logistics Invoice Verfication).Can anyone suggest a wayout for Park
    Document functionality for MIRO
    Thanks and Regards
    Urmila

    Hi,
    Transaction MIR7 can be used to park PO-based invoice. The same can be posted through MIRO.
    Regards,

  • Setup of Inspection Lots for some vendors and not for all

    Hello,
    We do have a situation where in the business wants Inspection Lots to be set up for some vendors and not for some vendors - for the same material.
    What it means is, for Material XXXXX001, Vendor 00003 needs inspection during GR for Purchase Order and Vendor 00005 and 00006 should be set up for Non Inspection upon GR and stocks should be posted to Unrestricted.
    Any suggestions / options are welcome.
    Thanks
    Kris

    Hello,
    You can use vendor q-info records to handle this... deactivate the goods receipt inspection on the vendor(s) that do not require incoming inspection.
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/c6/b9b3341a933f50e10000009b38f83b/frameset.htm
    Regards,
    John

  • Return to vendor via delivery, customer number for each vendor?

    Hi
    We wish to use return materials to Vendor via delivery process
    addition to required configuration, we need to maintain Customer number in Vendor master
    In out plant we have more than 500 Vendor masters, do we need to create customer number for each vendor? or can we create a generic customer ????
    Business has a concern on creating customer for each vendor since number is huge, Sales guys may get confused with these numbers
    Please suggest a way out
    Thanks

    Thanks Jurgen for the reply
    We have Vendor Work flow setup in the system. Which means when ever vendor master is changed [Return indicator ticked] workflow kicks off which means it goes for approvals. This is why we dont want to go for tick as and when needed. When ever there is a return, return to vendor must be ticked, it will go for approval etc so it slows the process
    we are thinking if we can achieve through data load before SAP GO-Live so that users able to return without any delay
    NOTE 447070 says 'the automatic creation of the required customer data is not supported in the data transfer'
    this is related to automatic customer create isnt it
    i was thinking as below
    --> Create Ship-to's for all vendors
    --> Load vendors via LSMW [along with return to vendor ticked and customer number(created above)]
    Tested in SAP
    created ship-to
    Created vendor with above customer number
    Do you see any issue?
    Thanks

  • Single migo for multiple vendors and multiple material

    Dear MM Experts,
    I have 2 open purchase orders as per below
    PO no 01 :- Material : A , Vendor : X
    PO no 02 :- Material : B , Vendor : Y
    Can we make the single goods receipt for both purchase orders even having different vendor and material.
    If yes then How ? and if no then Why ?
    Please advice me.
    Thanks & Regards,
    Sandeep.

    I have not read about or seen any reason why you should not do receipts of many vendors in one MIGO transaction.
    The error message can be set to warning or even switched off entirly. SAP would certainly not allow to switch an error to a warning if that could harm accounting documents. At least they would have issued an OSS message outlining what problems can ocur and that they dont take responsibility if make it a warning.
    It is not a usual process. at least in my environment each vendor sends individually. But I can imagine to pick the goods from different vendors myself and bring it into the plant. so it can be worth to do a single receipt.
    I found one OSS note that mentions (for me) a valid reason for error message by default:  the info in the screen may confunse the users.
    Note 300711 - Header data of MIGO refers to 1st item
    Symptom
    During goods receipt for several purchase orders with, for example, different vendors, the header data of Transaction MIGO does not change after you have entered the 2nd purchase order. The system still displays the vendor of the first item.
    The system shows this behavior for all fields of the header area which are actually order item data.
    Solution
    This function corresponds to the design of Transaction MIGO
    The item data which is displayed in the header area (as for example, the vendor) refers always to the first item.
    It is displayed in the header area to make the work easier for the person who entered the data since this data is often identical for all items and a check of the header area is quicker. If you work with different 'header data' per item you must check the data on the detail of the individual items.

Maybe you are looking for

  • Cleaning Imac memory and set up

    I want to give my imac g4 flat screen to my son. How can I reset it/ clean it back down to put him as admin and basically start again?

  • Changing Column Value Style using SQL Query

    Hi, I'm trying to build a fantasy basketball game with APEX. I have a table that has a list of games. I need to change the color of the column value i.e. the name of the team that wins according to a SQL query Here's an example: TABLE NAME: LATESTGAM

  • SQL Server 2008 R2 Sp2 crashed on query

    On some my query I got: Msg 0, Level 11, State 0, Line 0 A severe error occurred on the current command.  The results, if any, should be discarded. Msg 0, Level 20, State 0, Line 0 A severe error occurred on the current command.  The results, if any,

  • Grouping Based on Parameters

    Hi can anyone lease explain me how to create a group  based on the parameters entered by the user ?

  • Most efficient/quickest way to set NTFS permissions in PowerShell

    Hello all, Trying to figure out what the most efficient/quickest way to set NTFS permissions via PowerShell is. I am currently using ICACLS but it is taking FOREVER as I can't figure out how to make inheritance work with this command. This has prompt