Price Comparison List in various currencies

Dear SAP Experts,
My client wants to be able to generate the price comparison list in various currencies(that is the currency the quotation was maintained in. Note that different vendors will have quoted me in different currencies), pls advise, how can this be achieved?

hi
while coping the co code we will give INR so we can not get other currency

Similar Messages

  • Quotation Price Comparison List

    Hi All!
    Currently when we maintain RFQs with multiple line items and we run the price comparison list, the system will show comparison for only one item while the other items will bear an exception log "Quotation item not yet maintained". We have checked the release strategy and calculation schema but they aren't the problem.
    Please help us in this matter. Thanks!

    Hi,
    Hope you have Rise Request for Quotation (ME41) for all items.But for all items you have not maintained Quotation in (ME47) , If u have maintained then u can do comparision in ME49.
    So for multiple line items  maintain quotation(ME47).
    Hope helpful and then reward.
    Regards,
    Biju K

  • Quotation price comparison list problem

    Hi all!
    I am creating RFQ to several vendors, maintaining them with conditions like delievery costs and discounts, but when I execute price comparison list (me49) I see only the base price without the delievery costs and the discounts. I''m puting the checks on the selection screen of me49 - include discounts, include delievery costs and determine effective price. Despite of this I can't see the actual price.
    Where can be the problem?
    Help!

    Hi,
    Hope you have Rise Request for Quotation (ME41) for all items.But for all items you have not maintained Quotation in (ME47) , If u have maintained then u can do comparision in ME49.
    So for multiple line items  maintain quotation(ME47).
    Hope helpful and then reward.
    Regards,
    Biju K

  • Price comparison list

    Hi
    While comparing the quotations the prices in the comparison table is different then what I had entered in each quotations. Shouldn't it be the same prices as entered? Any expert comments

    Hi Sam,
    In Price comparison we compare the prices from all quotations received from the vendors
    once the quotations were received from the Vendor we maintain the same using the T code ME47
    Then price comparision is done Using the Tcode ME49 and it lists or it gives ranking based on the prices quoted by vendors
    The vvendor with lowest price is given the least rank follwed by others
    In case if you are not getting the same prices this could be because you might have give n some discounts to that particular vendor
    check it once again
    In case you are facing the same issue do get back
    Reward Points if helpful
    Regards
    Pavan

  • Price Comparison List (me49)

    Hello Everybody,
    I want to display
    Gross amount and negotial Gross amount (P000)Cont. type
    Octai tax and  (JOCM) Cont. type
    FRIGHT and negotial FRIGHT (FRC1) Cont. type
    DISCOUNT ON GROSS & NEGO DISCOUNT (R003) CONT.TYPE
    HOW COULD I GET THIS ALL FROM SAME FIELS THAT IS KBERT FROM KONB.OR IS IT COMMING FROM ANTHER TABLE PLZESE ANYONE CAN GUIDE ME.
    TAHNX & REGARDS,
    SADIK.

    Hi Sadik.
    Right now I too have a same requirement from my client , if you got resolved this please help me.

  • Quotation comparison in vendor order currency.

    Hi MM gurus,
    I have created quotations (ME47) for local vendors in LKR currency. But my company currency is USD. In quotations, quotation price shows in LKR. But when i execute the price comparison (ME49) it shows in USD.
    My client needs it in LKR. Is there any place where i can maintain a setting to get the comparison in vendor order currency
    (LKR)?????
    Please reply me ASAP....
    thanks
    Sandun

    Standard SAP gives only in Local currency..
    and it is not advisable also..
    what happens if all the Vendorsin the Quotation have different currency..
    which Vendor Currency system has to consider for price comparison?
    that's why system compares with the company code currency..

  • Standard Layout &Tcode for Price comparison Sheet

    Can i get Standard Layout &Tcode for Price comparison Sheet and also return delivery note(122).....

    Check with Transactions :
    Display Condition record report - V/I6
    Pricing Report - V/LD
    Create Net Price List - V_NL
    Deliveries-Due list - VL04
    Outbound Delivery Monitor - VL06o
    Incomplete delivery - V_UC</b>
    Customer Returns-Analysis - MC+A
    Thanks
    Seshu

  • I get a price comparison add on every web site and assume I turned on an extension at some point.  How do I turn this off?

    On just about every new page a small window opens with price comparisons of something that appears on the main page even if I am not shopping.  I assume that I turn something on or authorized this intrusion at some point.  I cannot find any reference to it in the Safari add on extension.  I would not mind so much but it blocks content.  Does anyone have a suggestion about how to get rid of this?

    It's malware ...
    Help here ...
    The Safe Mac » Adware Removal Guide
    The Safe Mac » Mac Malware Guide
    The Safe Mac » Adware Removal Guide : Genieo

  • Po price comparison report

    Dear Experts,
    We want to any standard report for purchase order price comparison.
    Same material purchasing  two or more  than two vendor and two different purchasing group.
    Thanks & Regards,
    Ranjeet

    Check your requirmnet in SAP1 & SAP2 , because these are the two menu for SAP standard reports( t-code) if match then fine else create z report
    regards
    Edited by: Roy Anamika on Jun 25, 2009 12:12 PM

  • List of various line panels in a JPanel

    Hi,
    I'd like to code a panel which can contain various amounts of other panels which can be considered as "line elements". They consist of a JLable and JTextfield and are all of the same height.
    I'd like the main panel at a specified fixed size so I chosed a BoxLayout and Y-Axis and I've put it into a JScrollpane.
    Now real fun starts. When I have only two "line panels" in it, they will be streched to fit the size and when it contains more than the Scrollpane's viewport, the JScrollbars show up only if the panel's size is greater than the viewport. What happens if there are more line elements than the main panel can keep, I don't know.
    How can I solve this problem having a list of various line elements which keep their size and JScrollbars which show up if necessary? If there might be a better way to do that, please tell me!!!
    I wrote this demo-version (2 classes):
    The main class with frame and main panel:
    package gui;
    import javax.swing.BoxLayout;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.WindowConstants;
    public class PanOptions extends javax.swing.JPanel{
         private static final long serialVersionUID = 5833715021796955215L;
         private PanLine panLine1;
         private PanLine panLine2;
         private PanLine panLine7;
         private PanLine panLine6;
         private PanLine panLine5;
         private PanLine panLine4;
         private PanLine panLine3;
         private JScrollPane scrollPane;
         private JPanel panel;
         * Auto-generated main method to display this
         * JPanel inside a new JFrame.
         public static void main(String[] args) {
              JFrame frame = new JFrame();
              frame.getContentPane().add(new PanOptions());
              frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
              frame.pack();
              frame.setVisible(true);
          * ctor.
         public PanOptions(){
              initGUI();
         private void initGUI() {
              panel = new JPanel();
              try {
                        this.setPreferredSize(new java.awt.Dimension(623, 140));
                   BoxLayout thisLayout = new BoxLayout( panel, javax.swing.BoxLayout.Y_AXIS);
                   panel.setLayout(thisLayout);
                        scrollPane = new JScrollPane();
                        this.add(scrollPane);
                        scrollPane.setViewportView( panel);
                             panLine1 = new PanLine();
                             panel.add(panLine1);
                             panLine2 = new PanLine();
                             panel.add(panLine2);
    //                    /* if the following part is commented the other two panels will be stretched?!
                             panLine3 = new PanLine();
                             panel.add(panLine3);
                             panLine4 = new PanLine();
                             panel.add(panLine4);
                             panLine5 = new PanLine();
                             panel.add(panLine5);
                             panLine6 = new PanLine();
                             panel.add(panLine6);
                             panLine7 = new PanLine();
                             panel.add(panLine7);
                        scrollPane.setSize(613, 140);
                        scrollPane.setPreferredSize(new java.awt.Dimension(613, 140));
              } catch (Exception e) {
                   e.printStackTrace();
    }The line element class:
    package gui;
    import java.awt.GridBagConstraints;
    import java.awt.GridBagLayout;
    import java.awt.Insets;
    import javax.swing.JLabel;
    import javax.swing.JTextField;
    public class PanLine extends javax.swing.JPanel {
         private static final long serialVersionUID = 4932310577246348201L;
         private JLabel label;
         private JTextField tf;
          * Ctor
         public PanLine() {
              super();
              initGUI();
          * Inits GUI.
         private void initGUI() {
              try {
                   GridBagLayout thisLayout = new GridBagLayout();
                   thisLayout.rowWeights = new double[] {0.0,0.1};
                   thisLayout.rowHeights = new int[] {7,20};
                   thisLayout.columnWeights = new double[] {0.0,0.0,0.0,0.0,0.0};
                   thisLayout.columnWidths = new int[] {7,370,7,206,7};
                   this.setLayout(thisLayout);
                   this.setPreferredSize(new java.awt.Dimension(600, 27));
                        label = new JLabel();
                        this.add(label, new GridBagConstraints(1, 1, 1, 1, 0.0, 0.0, GridBagConstraints.CENTER, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 0, 0));
                        label.setText( "blablalba");
                        tf = new JTextField();
                        this.add(tf, new GridBagConstraints(3, 1, 1, 1, 0.0, 0.0, GridBagConstraints.CENTER, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 0, 0));
                        tf.setText( "blablalba");
              } catch (Exception e) {
                   e.printStackTrace();
    }

    Hi,
    I read thru the tuto and tried several things. I still have issues with the BoxLayout. For some strange reason glueing the excess space with Box.createVerticalGlue() doesn't work (at least I couldn't get it to work). So far I fixed the layout setting a maximum size for the line elements.
    To tell you the truth I don't really like this solution somehow - why does the glue not work in MY application? It seemed to be so easy in the tutorial and I can remember BoxLayout always having been nice to me?!
    This is just the modified main class, the elements are the same.. I'd like to get rid of having to set a max size for the element panels.
    package gui;
    import javax.swing.Box;
    import javax.swing.BoxLayout;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.WindowConstants;
    public class PanOptions01 extends javax.swing.JPanel{
         private static final long serialVersionUID = 5833715021796955215L;
         private PanLine panLine1;
         private PanLine panLine2;
         private PanLine panLine7;
         private PanLine panLine6;
         private PanLine panLine5;
         private PanLine panLine4;
         private PanLine panLine3;
         private JScrollPane scrollPane;
         private JPanel panel;
         * Auto-generated main method to display this
         * JPanel inside a new JFrame.
         public static void main(String[] args) {
              JFrame frame = new JFrame();
              frame.getContentPane().add(new PanOptions01());
              frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
              frame.pack();
              frame.setVisible(true);
          * ctor.
         public PanOptions01(){
              initGUI();
         private void initGUI() {
              panel = new JPanel();
              try {
                        this.setPreferredSize(new java.awt.Dimension(623, 140));
                   BoxLayout thisLayout = new BoxLayout( panel, javax.swing.BoxLayout.Y_AXIS);
                   panel.setLayout(thisLayout);
                             panLine1 = new PanLine();
                             panel.add(panLine1);
    // it's only possible with lines like this:
                             panLine1.setMaximumSize(new java.awt.Dimension(610, 27));
                             panLine2 = new PanLine();
                             panel.add(panLine2);
    // it's only possible with lines like this:
                             panLine2.setMaximumSize(new java.awt.Dimension(610, 27));
                        /* if the following part is commented the other two panels will be stretched?!
                             panLine3 = new PanLine();
                             panel.add(panLine3);
                             panLine4 = new PanLine();
                             panel.add(panLine4);
                             panLine5 = new PanLine();
                             panel.add(panLine5);
                             panLine6 = new PanLine();
                             panel.add(panLine6);
                             panLine7 = new PanLine();
                             panel.add(panLine7);
    // this has rather no effect - why???
                        panel.add( Box.createVerticalGlue());
                        scrollPane = new JScrollPane();
                        this.add(scrollPane);
                        scrollPane.setSize(613, 140);
                        scrollPane.setPreferredSize(new java.awt.Dimension(613, 140));
                        scrollPane.setViewportView( panel);
                        panel.setPreferredSize(new java.awt.Dimension(610, 150));
              } catch (Exception e) {
                   e.printStackTrace();
    }

  • Balances of sevaral profit centers with various currencies in same report?

    Experts,
    Is there any report where we can see Profit Center wise and Currency Wise balances as of any mid period (Say Fortnightly) but in the same report?
    i.e; Balances of sevaral profit centers with various currencies in the same report.
    - Nilesh

    Nilesh,
    You can refer to drill down reports in Profit center accounting :-
    http://help.sap.com/saphelp_46c/helpdata/en/cc/36428094f311d2b47a006094b9b0a5/content.htm
    Thanks
    Nishan D

  • PSE 4 price comparison and rebate possibilities

    There have been some comments in other threads about prices and rebates for Photoshop Elements 4. Yet I did not find a thread specific to price comparisons, so I decided to start this thread.
    If you add price information to this thread, please state the retailer and the country. If you know, identify whether the upgrade rebate ($20 in USA) is available when purchasing from this retailer. I suggest that we omit tax from the discussion because it may be specific to exact location of the purchaser.

    I am accustomed to seeing "offer valid only in the contigous 50 states" blah blah blah beneath the rebate amount. I am NOT accustomed to seeing a "disqualifying" statement on the rebate form then realizing it was part of the fine print on the rebate sticker on the box! As a first time customer of adobe products I was extremely disappointed in this type of deceptive marketing. The rebates on my new computer, printer, monitor were of the straightforward "buy my product and I'll make it worth your while" variety. Adobe chose to hedge their bets, that some folks wouldn't notice the fine print on the rebate sticker. Congratulations Adobe, I don't get took that often (maybe I'm just getting old) but you got me. You also got a one time customer.

  • Advanced Pricing:Fetching Price from Price Break List

    Hi All,
    We have a requirement where we have to fetch the price for Items from a Price Break list using Pricing Engine. For this we did following setup.
    1) We created a Price List for list of Items and it price list is defined there
    2) Then we created Price List (Customer Specific) and based on the quantity in our custom table for that customer and item we have to fetch the price from the Price Break List.
    We are doing this by using a Sql statement but we want to implement it by using Pricing Engine. QP_PREQ_PUB.PRICE_REQUESt.
    Kindly share code with me for this.
    Guys Please help.
    Thanks
    Aryan

    What version of EBS are you on?  I know in 12.1.3, there was a price book feature that enabled you to output the pricing from a particular list/modifier.  I didn't find it particularly helpful for what I was trying to do (i.e. show all the prices a customer could use), but what I deemed a deficiency may work to your advantage.

  • How can we setup "price before discount" in foreign currency?

    Hi all,
    Hopefully someone can help.How can we setup "price before discount" in foreign currency?   Can someone also please tell me the proper Variable Number (No.) for that?
    Look forward to your reply,

    IHi,
    Thanks for your help..i will give good feedback to you all.
    Just to let you know in pro forma invoices we have got Unit Price in GBP (example: 7.4000 GBP )  but Total line, Total Before Discount, Total (document) are in Euro.We have already changed that to 88->87 and 91->93 so those fields are correct apart Unit Price?
    Any advice please ?

  • Workflow::: Price Comparison

    Dear All,
    My clients requirement is that the SCM Manager should approve the Price Comparison before further action can take place. Can I do this through workflow??
    If there is any other possibility for it please let me know.
    Regards,
    Usman Nazir

    >
    Mani SAP wrote:
    > Dear All,
    >
    > My clients requirement is that the SCM Manager should approve the Price Comparison before further action can take place. Can I do this through workflow??
    >
    > If there is any other possibility for it please let me know.
    >
    > Regards,
    >
    > Usman Nazir
    Why you want workflow for simple transactions. I havent heard of any workflow for price comparison. Tell your SCM Manager to access the transaction and see the comparison and I guess if he is authorized to approve the follow on documents, we can get a check enabled, through ABAP thats once this check is enabled, follow on documents can be made and this authorization should be given to SCM Manager only.

Maybe you are looking for

  • How to disable video caching

    I would need to disable video cahcing in Java. Do you guys think it is possible? How do I do it? Thanks in advance, Gergely P.S. The exact problem see below: I am using pcAnywhere which enables me to see my PC (host) in London from a PC in Hungary (r

  • Adobe Reader 9.4.5 & Virtual Desktop Infrastructure compatibility ?

    I am seeking following information on Adobe Reader 9.4.5 in regards to MS Virtual Desktop Infrastructure compatibility, below are questions: 1. Is the application – Adobe Reader 9.4.5 supported on Windows 7 x64 desktop virtualised on Windows Server 2

  • Color Management and Preview

    Hi All, Wonder if anyone can help me? I wasn't sure where to post this, so hope it is in the correct forum..... I have got a MacPro with the NVIDIA GeForce 8800GT graphics card, together with two displays - an EIZO ColorEdge CG222W, which I bought re

  • BADI_IDM_HR_COMMUNICATION update employee data in the SAP ERP HCM system.

    Hi Guys, I am using SAP identity management 7.1 and ERP ECC 6.0 EHP4. I amanage to pull data from HCM into identity store and create an account in active directory. I am now trying to update employee data in the SAP ERP HCM system with the email addr

  • Photoshop Scripting - Saving doc as GIF, poor quality produced.

    opts.colorReduction = ColorReductionType.SELECTIVE; opts.dither = Dither.NONE; opts.quality = 100; opts.interlaced = true; opts.includeProfile = true; opts.matteColor = new RGBColor(); opts.matteColor.red = 255; opts.matteColor.green = 255; opts.matt