Can we copy the same quotation to more than one sales order?

Can we copy the same quotation to more than one sales order?is it posibble.......pls reply

Hi vepa venkat suhas.,
                                   If the quotation quantity is 100,with reference to quotaion if you raise a sales order for 100 materials then you cannot raise other sales order with reference to the quotation.untill your quatity of 100 in quotation is finished you can raise a sales order
REWARD if helpfull
Thanks & Regards
Narayana

Similar Messages

  • Can I labled the same song to more than one albums? As you know, some songs are repeated in different albums.

    Can I labled the same song to more than one albums? As you know, some songs are repeated in different albums.

    You can make a copy of an existing song, then change the album, artwork and track number details. You cannot make the same physical file show up in two different albums.
    tt2

  • Can I put the same app on more than one iPad?

    I'm not sure I can even do this or how if I can.
    Situation is I got a New iPad and my wife 'inherited' my iPad2. We use ONE Apple iTunes account. I've dup'ed the iPad2 over to the New iPad. We use two computers and each has iTunes on it. No problems at this point.
    Now I added an app to my iPad, and my wife wants it. She went to the app store and it shows as 'already installed'. Again, we're both using the same account (I don't want 2). Looked at Previous Purchases, same thing, already installed, grayed out.
    So the question is can I do what I want, that is install the same app on 2 iPads? If so, how?
    Thanks,
    Irv S.

    Sure - as long as you use the same apple ID on both devices you can download it to both devices. Why is is greyed out on her iPad is not clear to me - other than the app is actually on her iPad via Automatic Downloads and she doesn't realize that its on the device. Is that possible?
    Search for the app on her iPad- swipe to the right from the first home screen and type in the name of the App at the top in the search field. Does it show up?

  • How to pack the More than one sales order delivery qty in one packing

    Hi Folks,
    How to pack the more than one sales order quantity combinely during packing?
    Thansk in advance and points wil be rewarded for the reply.
    Best Regards
    Srinivas

    Packing is done during Delivery.
    In Sales order also Packing function is available but as a Packing proposal.
    So actual packing is done in Delivery.
    When you process several sales orders together, the sales order items having same Ship-to-party, Shipping point, Route, Delivery due date & Incoterm are combined into one Delivery in the standard system.
    In the delivery overview screen,do the picking by subsequent function rom the menu bar, you will get a button "PACK", click on this system will take you to the packing screen.
    In the packing screen, give the packaging mterial number, select the materials to be packed, select the packaging material also and the click on the "PACK" button.

  • Can I use the redemption code for more than one machine for Photoshop Elements?

    I want to use the Photoshop Elements that I bought on more than one machine. Is that
    possible using the Redemption Code? It says it was used with another Adobe ID.
    Thanks

    Hi Stover,
    Typically you use the redemption code to retrieve your serial number for Elements products. The licensing for Elements allows the owner to install on two of their computers.
    See these for reference:
    Redemption Code Help
    How many computers can I install Photoshop Elements on?
    Hope that helps,
    - Dave

  • How can I use the RMS.vi over more than one period?

    Hi everyone,
    I am using the Cycle average and RMS.VI to get the RMS value of a alternative voltage (2kHz). To acquire this signal I am using a differentiel AI of a 6225 card (at 250kS/s) and the RMS value is correct, it works fine. However from what I have understood, this VI calculates the RMS value according to only one period no matter how many samples I have acquired (2000 samples in the VI I have attached). Is this correct? If so, is ithere a way to use it over all of the 2000 samples to get a more averaged value? Or does another VI exist?
    I could repeat several time an acquisition of a short number of samples (a period) and make an average but it would take some time and I have to do this with 39 other Inputs on the same card one after the other...
    Thank you for your help,
    User
    Attachments:
    Forum.vi ‏76 KB

    User_1979 wrote:
    ....could you tell me if this VI sends a rms value of X compleat periods (even if I have send X periods and a half for example)?
    It gives the RMS value of only the newest set of data.
    The RMS and RMS Pt. By Pt. work for me, but it depends on how you break out that Dynamic Data from the Express VI, which was why I suggested you didn't use it - mainly because you can't tell what happens to that data when you wire it to a function and it coerces. Actually, I should say, I can't tell what happens to it. You may know, but I don't.  
    In the attached screenshot, I have "made" a 2k sine wave with an amplitude of 5. The indicators show RMS value.
    Richard
    Attachments:
    rms.gif ‏14 KB

  • Add the same JComponent in more than one JPanel

    Hello!
    I'm making a simple drawing application where the user can draw common shapes, move and delete them. However, I'm trying to make two windows view/observe the same "picture". So all shapes added, moved or removed in the picture will happen in both places. My problem seems to be a restriction in Swing; when I add the same shape (same reference) to two different JPanels, only one of the JPanels draw the shape. However if I copy the shape (different references) and add the copy to the other JPanel it gets drawn. This code/application will demonstrate the problem:
    import java.awt.Color;
    import java.awt.Graphics;
    import javax.swing.JComponent;
    public class Square extends JComponent
         protected void paintComponent(Graphics g)
              super.paintComponent(g);
              int x = 0;
              int y = 0;
              int width = this.getWidth();
              int height = this.getHeight();
              g.setColor(Color.RED);          
              g.fillRect(x, y, width, height);
    import javax.swing.*;
    public class SwingHelp
         public static void main(String[] args)
              JFrame frame1 = new JFrame("1");
              JFrame frame2 = new JFrame("2");
              JPanel panel1 = new JPanel();
              JPanel panel2 = new JPanel();
              Square mySquare = new Square();
              mySquare.setBounds(50, 50, 75, 75);
              panel1.setLayout(null);
              panel2.setLayout(null);
              panel1.add(mySquare);          
              panel2.add(mySquare);
              frame1.add(panel1);
              frame2.add(panel2);
              frame1.setSize(500, 500);
              frame2.setSize(500, 500);
              frame1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame2.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame1.setVisible(true);
              frame2.setVisible(true);
    }Is there any setting or workaround to get the desired effect I want? Any help is appreciated :-)

    Here's a simple example. I have a program called RectangleDrawMaster that draws and displays rectangles on mouse drag and a program called RectangleDrawSlave that uses the master's "model" an ArrayList of ColorRect (objects that have rectangle coordinates and colors). So while both classes use different drawing JPanels, these JPanels share the same model and the images look the same.
    ColorRect.java: holds color and rectangle data
    import java.awt.Color;
    import java.awt.geom.Rectangle2D;
    class ColorRect
        private Color c;
        private Rectangle2D rect;
        ColorRect(Color c, Rectangle2D rect)
            this.c = c;
            this.rect = rect;
        public Color getColor()
            return c;
        public Rectangle2D getRect()
            return rect;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.Rectangle2D;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Random;
    import javax.swing.*;
    import javax.swing.event.*;
    public class RectangleDrawMaster
      private static final int COLOR_MIN = 0;
      private static final int COLOR_MAX = 255;
      private static final Dimension PANEL_SIZE = new Dimension(500, 500);
      //private BufferedImage bImage;
      private Point firstPoint;
      private Point lastPoint;
      private List<ColorRect> rectList = new ArrayList<ColorRect>();
      private Random random = new Random();
      private JPanel mainPanel = new JPanel();
      private List<ChangeListener> changeList = new ArrayList<ChangeListener>();
      private JPanel drawingPanel = new JPanel()
        @Override
        protected void paintComponent(Graphics g)
          super.paintComponent(g);
          panelDraw(g);
      public RectangleDrawMaster()
        drawingPanel.addMouseListener(new MyMouseListener());
        JButton clearBtn = new JButton("Clear");
        clearBtn.addActionListener(new ActionListener()
          @Override
          public void actionPerformed(ActionEvent e)
            clearAction();
        mainPanel.setPreferredSize(PANEL_SIZE);
        mainPanel.setLayout(new BorderLayout());
        mainPanel.add(drawingPanel, BorderLayout.CENTER);
        mainPanel.add(clearBtn, BorderLayout.SOUTH);
      public void addChangeListener(ChangeListener cl)
        changeList.add(cl);
      public List<ColorRect> getRectList()
        return rectList;
      private void clearAction()
        rectList.clear();
        drawingPanel.repaint();
        invokeChangeListeners();
      private void invokeChangeListeners()
        ChangeEvent e = new ChangeEvent(this);
        for (ChangeListener cl : changeList)
          cl.stateChanged(e);
      private void panelDraw(Graphics g)
        Graphics2D g2 = (Graphics2D) g;
        for (ColorRect rect : rectList)
          g2.setColor(rect.getColor());
          g2.fill(rect.getRect());
      private Color randomColor()
        Color c = new Color(
            random.nextInt(COLOR_MAX - COLOR_MIN) + COLOR_MIN,
            random.nextInt(COLOR_MAX - COLOR_MIN) + COLOR_MIN,
            random.nextInt(COLOR_MAX - COLOR_MIN) + COLOR_MIN);
        return c;
      public JPanel getMainPanel()
        return mainPanel;
      private void drawRectangle()
        int width = Math.abs(firstPoint.x - lastPoint.x);
        int height = Math.abs(firstPoint.y - lastPoint.y);
        int x = Math.min(firstPoint.x, lastPoint.x);
        int y = Math.min(firstPoint.y, lastPoint.y);
        Rectangle2D rect = new Rectangle2D.Double(x, y, width, height);
        Color c = randomColor();
        rectList.add(new ColorRect(c, rect));
        drawingPanel.repaint();
        invokeChangeListeners();
      private class MyMouseListener extends MouseAdapter
        public void mousePressed(MouseEvent e)
          firstPoint = e.getPoint();
        @Override
        public void mouseReleased(MouseEvent e)
          lastPoint = e.getPoint();
          drawRectangle();
      private static void createAndShowUI()
        RectangleDrawMaster rectdraw = new RectangleDrawMaster();
        JFrame frame = new JFrame("Rect Draw Frame");
        frame.getContentPane().add(rectdraw.getMainPanel());
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
        final RectangleDrawSlave rectdraw2 = new RectangleDrawSlave(rectdraw.getRectList());
        rectdraw.addChangeListener(new ChangeListener()
          public void stateChanged(ChangeEvent e)
            rectdraw2.repaint();
        JDialog dialog = new JDialog(frame, "Rect Draw Dialog", false);
        dialog.getContentPane().add(rectdraw2.getMainPanel());
        dialog.pack();
        dialog.setVisible(true);
      public static void main(String[] args)
        java.awt.EventQueue.invokeLater(new Runnable()
          public void run()
            createAndShowUI();
    import java.awt.*;
    import java.util.List;
    import javax.swing.JPanel;
    public class RectangleDrawSlave
        private static final Dimension PANEL_SIZE = new Dimension(500, 500);
        //private BufferedImage bImage;
        private List<ColorRect> rectList;
        private JPanel mainPanel = new JPanel();
        private JPanel drawingPanel = new JPanel()
            @Override
            protected void paintComponent(Graphics g)
                super.paintComponent(g);
                panelDraw(g);
        public RectangleDrawSlave(List<ColorRect> rectList)
            this.rectList = rectList;
            mainPanel.setPreferredSize(PANEL_SIZE);
            mainPanel.setLayout(new BorderLayout());
            mainPanel.add(drawingPanel, BorderLayout.CENTER);
        public void repaint()
          drawingPanel.repaint();
        private void panelDraw(Graphics g)
            Graphics2D g2 = (Graphics2D)g;
            for (ColorRect rect : rectList)
                g2.setColor(rect.getColor());
                g2.fill(rect.getRect());
        public JPanel getMainPanel()
            return mainPanel;
    }

  • Can I activate the Cloud software on more than one computer? [was:Gerry]

    I purchased a single user PS CC license last year. During the interim the nature of my work has neccesitated that I have to work at two sepearte offices (one at home and one at my formal offices). Is it possible to "switch" the license to the different computers when I am at the different locations?
    Can I log off at the office and login at my home office and vice versa? Use of the license will therefore be either at the office or at my home office but never both at the same time?

    On the computer where you want to deactivate the Cloud, launch any Cloud app e.g. Photoshop CC 2014 and click Help > Sign Out.
    Activation & Deactivation Help
    That will deactivate all Cloud apps on that computer. (They can be reactivated at any time by signing in again.)
    On the new computer, sign in to your Cloud account with your Adobe ID, download the Cloud app then download the software.

  • Can I pair the BT MM to more than one computer?

    I have an iBook G4 and a G5 desktop.
    Will I be able to use the Bluetooth Mighty Mouse with both of these computers? (One computer at a time - one will be on, while the other will be off) Or do I have to purchase a second BT MM?
    David

    I've been able to pair the MM with an iMac and a MacBook Pro. They are both sitting on the same desk. How do I get MM to switch from one to the other?

  • How to Create more than one Sales order

    Hi All
    Is it possible that at Va01 initial screen i have a field with name Group and when i select the group in that field sales order for alll the customer in that group may be created automatically
    Regards,
    Ammad

    Hi,
    Not clear about your requirement. Can you explain a bit? How are you going to determine which materials are doing to sell?
    Best regards,
    Anupa

  • Can you sync the apple watch to more than one phone?

    Say I wanted to leave my phone at home.  Could I sync my apple watch to my husbands phone but still get my texts etc???

    If you're within about 20-30 feet, sync will be via Bluetooth. If the phone is on a wifi network, you can be farther away: exactly how far varies according to the quality of wifi, walls etc.

  • Can I simultaneously configure a device to more than one task?

    Can I simultaneously configure a device to more than one task? I am trying to trigger on some of the input data. When I tried to configure the same device to more than one task, I get an error:
    Error -10408 occurred at Digital Group Config.
    Possible reasons:
    NI-DAQ LV: The specified channel is in use.
    I have attached a copy of my VI. In the first and second sequences I am using device 1.
    Attachments:
    Can_I_simultaneously_configure_a_device.doc ‏19 KB

    Hello;
    The best way to have multiple tasks running on the same DAQ device is by syncronizing those in the hardware level. What I mean by that is, to use the same clock pulse train to clock the different tasks.
    For instance, in case you want to do Analog Input and Analo Output at the same time, you can use the AI Start Scan (which is the clock pulse train that will clock the analog input task) to be routed to the AO Update clock (which is the clock that controls the Analog Output tasks of your device). You can extend that idea for counter operations as well.
    For digital operations, if you are not using one of the digital boards that support strobed operations, such as the 653x ones, you won't be able to synchronize the digital tasks with the analg tasks, s
    ince the digital ports updates through Software calls only.
    You are probably getting that error because you are trying to use the Digital Group Config.vi (or some other VI that calls the Digital Config.vi) with a board that doesn't support handshaking operations, such as the MIO ones.
    Hope this helps.
    Filipe A.
    Applications Engineer
    National Instruments

  • Same photo in more than one catalog - what happens?

    What happens if you have the same photo in more than one catalog?
    Background: I'm using a 4yr old 13" MacBook and my Lightroom is getting rather slow, on some pictures unusable.  At the same time my lrcat files are growing rather fast.  Probably due to my current work on some old scanned slides which require quite a lot of spot removal (last 3 photos worked on increased the lrcat file by 250mb) and each time Lightroom became virtually unusable.  I will be upgrading the computer but it wont be for a few months yet.  On one of the last slides I ended up with a "Oops! An untagged string (history step does not belong to instance) got thrown far enough that we display it to the user. This shouldn't happen.".
    So I'm looking at splitting my catalog into two or more seperate catalogs.  But I have some galleries which contain photos from what would cross "sensible" splits of catalog so I thought about having the same photo in both catalogs where necessary.
    My Lightroom is set to include metadata in XMP (probably making the performance worse).  I had intended to split catalogs using "export to catalog".
    Does the photo in each catalog have it's own develop "fork" ? (i.e. does the metadata include catalog tags) ?  Or will changes made to the photo in one catalog automatically upadate the next catalog (or overwrite changes made in the other catalog), etc.?  Only a single computer, no network/sharing issues, nothing on exchangable/removable disk drives.
    I could experiment but after quite some time the other day resolving the "history step does not belong to instance") I am treating my catalog with great care.
    (I have does a search for the question so will be very embarassed/appologetic if somebody says "Read www.adobe.com/.....").
    Many thanks

    For some reason photos were scanned in as jpegs.  They end-up at around 16-19MB each.  Reasons for that are historical.  I am applying spot corrections in Photoshop in a new layer, then merging layers when everyting is done OK to save (saving as PSD gave a massive file size).  I will try saving as tiff.  Personally I hate JPEGs but was never too concerned about the scans in LR as LR is never resaving the image (non-destructive editing).  I may easily upgrade to CS6 (upgrade is <£200 on Amazon), but being non-professional, fuds are not unlimited (particularly with new computer coming soon!!).
    So weird effect is with jpegs around 16MB after Photoshop edits.  It is completely reproducable (i.e. has happened exactly the same of every photo done via this route).  The surprising thing is that exiting and restarting LR stops the weird effect.
    Adding 2 and 2 together to get 22, I wonder if, as I have "Write Metadata to XMP ..." enabled, if LR has a watch on the file for changes after switching to external editor (i.e. to detect when external editor saved changes so LR updates from the file) and that that "watch for change" is not cancelled after exiting the external editor - maybe because LR cannot know if external editing is compketed (even though exitng Photoshop does not stop the effect).  Then, when LR writes to the file (to update the XMP data) it "detects" the change it causd itself and hence the reload.  If I change the Catalog Settings to disable the "Include develop settings in JPEG ..." and disable the "Save XMP Data ...", the effect goes away and if I re-enable those catalog options the effect returns.
    I will try saving as tiff in future now I'm really re-saving the image.
    Many thanks

  • Cannot  do RR Billing when more than 1 Sales Order items is assigned to WBS

    I am trying to carry out resources related billing.  Several items on the sales order are for a single WBS so I have assigned these items in the sales order to a single WBS.  When I try to bill, I get the error about having several sales items tied to the same billing wbs.  How can I bill with several items assigned to a single WBS?
    Error message "There is more than one sales order or contract item for WBS element BOG0020"

    Hi,
    Go through these SAP notes.
    Note 544123 - FAQ AD01 176 / AD01 312 / Ressource Rel.Bill./Quot./Res.Ana.
    Note 545095 - FAQ 2: billing/accrual/quot./results analysis
    Regards,
    Gokul

  • Can the AirPort Extreme support more than one printer at a time?

    can the AirPort Extreme support more than one USB printer at a time if it is connected to a USB Hub?

    can the AirPort Extreme support more than one USB printer at a time if it is connected to a USB Hub?
    Yes.....IF.....you use a powered USB hub.
    I have had 3 printers connected at the same time in the past and assume that more would work as long you have a powered hub to support the number of ports that you need.

Maybe you are looking for