Material price report

Hi,
Any one please help me out in generation of below report with coding:
<b>Created Material Price Difference report, which displays Price difference between customer and vendor.</b>
you can send your views to '[email protected]'.
Thanks in advance.
Regards,
Muraly

Hi muraly,
this is not possible using SAP.
Regards,
Clemens

Similar Messages

  • NMCOL Report material price

    First at all, Happy new year!
    Please, my question is about the report NMCOL, it seems that the material price showed is correct for
    every material consumption, but divided by 100. For example, in mm03 (acounting view) the variable price is 60
    for a material and the report shows 0.60. What do I need to configure in order to adecuate the report?
    I figure it could be something about the currency used or something like that....
    I've found a method IF_EX_ISH_MM_MAT_PRICE~DETERM_MATPRICE in which I thought I could modify the
    price using the example class but it didn´t work.
    Thanks in advance.
    All the best in 2012.
    ISH 6.0 Release 604 SAPK-60414INISH

    Thanks Christos, price in NMATV was right. This was a problem with a previous client, even in my actual proyect the price in table and in NMCOL is right. The unique difference I can see, these was a different country but the same apparently SAP standard version.
    Best regards.

  • Standard report for material price change documents

    Hi Friends,
    Is there a standard report which lists all the material price change document?
    To view the document individually t-code CKMPCD can be used, but I need a report which lists all the documents for a specified period of time.
    Thanks a lot for all the efforts.
    Regards,
    Shilpi

    Hi,
    I do not know a standard report but an infoset+query created based on logical database BRM and BKPF-AWTYP = PRCHG (price change), BKPF-BUDAT (posting date),... and some BSEG-fields will give you the posted amounts. The original document (=corresponding price change document) number can be seen in BKPF-AWKEY.
    best regards, Christian

  • Material price change report

    HI
    i need a report where i can see the changes made to material price. it should be inclusive of all the documents (PO, MIGO or MIRO).
    i have not activated the material ledger for this. i heard about it but can somebody explain me what is it?
    i know i tried the changes with CDPOS table but its for single material.
    please guide me in this regard

    dear sir
    In SE16N.
    Table : MBEW  material valuation at present and previous month.
    Table : MBEWH material valuation history it will show all the months.
    Regards
    jrp

  • Details of open invoices for the current year/ material price analysis

    Hi,
    I'm very new to SAP SD,MM modules. Can any one help me in the following of my requirements?
    1. How to get the details of open invoices for the current year? Which table should I look into?
    2. I have to create a report to display material price analysis. How should I do that?
    3. How to develope a report to list out all the Open Sales Order with earliest ship date and requested ship date
    4.How to create an interactive report for displaying plant status to know the status of a particular material
    5. How to develope a report on Sales Order displaying Sales order Number, Sales order date, Material, PO Date and Customer requested date
    Thanks in advance!!
    Uma.
    Message was edited by:
            Uma Ravi

    Hi Ravi,
    for 3, 4, 5 --> u can go through the code ...
    REPORT ZEX2  MESSAGE-ID arc NO STANDARD PAGE HEADING.
    Tables :kna1,vbak.
    SELECT-OPTIONS : so_vkorg FOR  vbak-vkorg OBLIGATORY,
                     so_vtweg FOR  vbak-vtweg OBLIGATORY,
                     so_spart FOR  vbak-spart,
                     so_kunnr FOR  kna1-kunnr.
    DATA : BEGIN OF sales_open OCCURS 0 ,
           vbeln LIKE vbak-vbeln,
           auart LIKE vbak-auart,
           kunnr LIKE kna1-kunnr,
           bstnk LIKE vbak-bstnk,
           lfstk LIKE vbuk-lfstk,
           fkstk LIKE vbuk-fkstk,
           gbstk LIKE vbuk-gbstk,
           END OF sales_open.
    DATA : BEGIN OF itm_sales OCCURS 0,
           vbeln LIKE vbap-vbeln,
           posnr LIKE vbap-posnr,
           matnr LIKE vbap-matnr,
           kwmeng like vbap-kwmeng,
           lfsta LIKE vbup-lfsta,
           lfgsa LIKE vbup-lfgsa,
           fksta LIKE vbup-fksta,
           fksaa LIKE vbup-fksaa,
           gbsta LIKE vbup-gbsta,
           END OF itm_sales.
    DATA : l_kunnr LIKE kna1-kunnr,
           l_vkorg LIKE vbak-vkorg,
           l_vtweg LIKE vbak-vtweg,
           l_spart LIKE vbak-spart.
    DATA: v_statusl(20) TYPE c,
          v_statusb(20) TYPE c,
          v_statusf(20) TYPE c,
          v_statusg(20) TYPE c,
          v_status(20) TYPE c,
          v_field(1) TYPE c.
    data : v_openqty like vbap-kwmeng.
    **Selection Screen Validations.
    AT SELECTION-SCREEN.
      PERFORM validations.
    *&      Form  Validations
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM validations.
    **Customer
      IF NOT so_kunnr[] IS INITIAL.
        SELECT SINGLE kunnr INTO l_kunnr
               FROM kna1
               WHERE kunnr IN so_kunnr.
        IF sy-subrc NE 0.
          MESSAGE e002 WITH text-005.
        ENDIF.
      ENDIF.
    **Sales Organization
      IF NOT so_vkorg[] IS INITIAL.
        SELECT SINGLE vkorg INTO l_vkorg
               FROM tvko
               WHERE vkorg IN so_vkorg.
        IF sy-subrc NE 0.
          MESSAGE e003 WITH text-006.
        ENDIF.
      ENDIF.
    **Distribution Channel
      IF NOT so_vtweg[] IS INITIAL.
        SELECT SINGLE vtweg INTO l_vtweg
                FROM tvkov
                WHERE   vkorg IN so_vkorg
                 AND    vtweg IN so_vtweg.
        IF sy-subrc NE 0.
          MESSAGE e004 WITH text-007.
        ENDIF.
      ENDIF.
    **Division
      IF NOT so_spart[] IS INITIAL.
        SELECT SINGLE spart INTO l_spart
                FROM tvta
                WHERE   vkorg IN so_vkorg
                AND     vtweg IN so_vtweg
                AND     spart IN so_spart.
        IF sy-subrc NE 0.
          MESSAGE e005 WITH text-008.
        ENDIF.
      ENDIF.
    ENDFORM.                    " Validations
    Top-of-page.
    PERFORM sales_top_of_page.
    Start-of-selection.
    PERFORM sales_sel.
    *&      Form  sales_sel
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM sales_sel.
    SELECT vbeln auart kunnr bstnk
         lfstk fkstk gbstk
         INTO TABLE sales_open
         FROM vbakuk
         WHERE vkorg IN so_vkorg
         AND   vtweg IN so_vtweg
         AND   spart IN so_spart
         AND   kunnr IN so_kunnr
         AND gbstk NE 'C'.
      LOOP AT sales_open.
        WRITE:/4 sy-vline,
               5 sales_open-vbeln HOTSPOT ON COLOR 2 INTENSIFIED OFF,
               16 sy-vline,
               17 sales_open-auart COLOR 2 INTENSIFIED OFF,
               27 sy-vline,
               28 sales_open-kunnr COLOR 2 INTENSIFIED OFF,
               40 sy-vline,
               41 sales_open-bstnk COLOR 2 INTENSIFIED OFF,
               55 sy-vline,
               56 sales_open-lfstk,
               76 sy-vline,
               77 sales_open-fkstk,
               96 sy-vline,
               97 sales_open-gbstk ,
               117 sy-vline.
        HIDE sales_open-vbeln .
      ENDLOOP.
    ENDFORM.                    " sales_sel
    *&      Form  sales_top_of_page
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM sales_top_of_page.
      WRITE:/4 sy-uline(114),
         50 'OPEN SALES ORDERS' COLOR 7 INTENSIFIED ON .
      WRITE: /4 sy-vline,
              5 'SalesOrder' COLOR 1 ,
              16 sy-vline,
             17  'OrderType' COLOR 1,
             27  sy-vline,
             28  'Customer' COLOR 1,
             40  sy-vline,
             41  'PoNumber' COLOR 1,
             55  sy-vline,
             56  'Delivery Status' COLOR 1,
             76  sy-vline,
             77  'Billing Status' COLOR 1,
             96  sy-vline,
             97  'Processing Status' COLOR 1,
             117  sy-vline .
      WRITE:/4 sy-uline(114).
    ENDFORM.                    " sales_top_of_page
    AT LINE-SELECTION.
      SELECT       a~vbeln
                   a~posnr
                   a~matnr
                   a~kwmeng
                   b~lfsta
                   b~lfgsa
                   b~fksta
                   b~fksaa
                   b~gbsta
                   INTO TABLE itm_sales
                   FROM vbap AS a JOIN vbup AS b
                   ON a~vbeln EQ b~vbeln
                   AND a~posnr EQ b~posnr
                   AND b~gbsta NE 'C'
                   WHERE a~vbeln EQ sales_open-vbeln.
      IF NOT sales_open IS INITIAL.
        LOOP AT itm_sales.
          at end of vbeln .
          sum.
          v_openqty = itm_sales-kwmeng.
          endat.
          WRITE:/5  itm_sales-vbeln,
                    itm_sales-posnr,
                    itm_sales-matnr,
                    itm_sales-kwmeng,
                    itm_sales-lfsta,
                    itm_sales-lfgsa,
                    itm_sales-fksta,
                    itm_sales-fksaa,
                    itm_sales-gbsta.
        ENDLOOP.
      ENDIF.
    skip 2.
      write:/  'open Quantity for the order is ', v_openqty .
    for 1.
    open invoices..
    SELECT vbeln
             fkart
             kunag
             gbstk
             INTO TABLE it_billing_h
             FROM vbrkuk
             WHERE vkorg IN so_vkorg
             AND vtweg IN so_vtweg
    *        AND spart IN so_spart
             AND kunag IN so_kunnr
            and   year in p_year                  ---->"parameter for year..
             AND gbstk NE 'C'.                   "----> open invoices
    for 2..
    2. refer TABLES mara, EINA ..
    regards,
    VIjay

  • Moving avarage price report

    Hi
    can somebody pls tell me how can I get report for the Moving average
    price on a particular date & value of the stock accordingly on that day.
    Thanks & regards..
    pravin

    Hello Praveen,
    CKM3 / CKM3N will work only if material ledger is active for your valuation area.
    Table MBEW will give the material price and value for current and previous period, not for particualr date and the same is for MBEWH will give the price and value for past periods.
    Table MSEG contains Material value and Stock before posting that material document, but does not contain document date, so you need to take it from MKPF table.
    Also you need to give logic that if material document is not available for that particular date it should consider the posting period and pick the material price and value from MBEW / MBEWH table.
    I think it will be some challenging report to get material price for particular date, instead if you convience business abou the getting price for that posting period it will be more easy. In that case you need to consider only MBEW and MBEWH table.
    Hope this helps.
    Regards
    Arif Mansuri

  • Functinality to compare two material price with reference to BOM in CO

    Hi All,
    Is there is any functionality in Controlling which can compare the costing for two FERT materials.
    or
    is there is  any functionality where we can compare two material price with reference to BOM in controlling
    Please help me to compare the material price with reference to BOM
    Regards
    nandu

    Hi,
    You can use this report to compare two itemizations. The report compares the characteristics item number, item category, cost element, resource, material, cost center, plant/work center, cost center/activity type, operation number, BOM item, assembly indicator, and cost component.
    You can access this report as follows:
    Accounting ® Controlling ® Product Cost Controlling ® Product Cost Planning ® Material Costing ® Cost Estimate with Quantity Structure or Cost Estimate Without Quantity Structure ® Compare
    or
    Accounting ® Controlling ® Product Cost Controlling ® Product Cost Planning ® Information System ® Object Comparisons ® For Material ® Itemization Comparison.
    For Detail Please reffer following link:
    http://help.sap.com/saphelp_46c/helpdata/en/56/abd108f1a611d28a950000e8214595/content.htm
    Thanks and Regards
    Binoj M D

  • Material price

    Dear All,
    Do we have a standard report in SAP to see material price in Purchase order, GRN & Valuated Stock?
    or
    anything like traking of material price in various conditions?
    Waiting
    Amit

    Hi,
    You can see the PO Price for PO in reports ME2N, ME2M, ME2L, ME80FN
    For GR, refer MB51
    For Valuated Stock, refer MB52, MB5L

  • Material prices vendor wise

    Dear all ,
    i need material , plant , vendor , price (buying price / processing charge) .
    is there any report for the same ( excluding ME1p)
    Pl guide

    Have you studied ME80FN?In the output there is a Change layout tab also to check further
    Otherwise from table EKKO for a particular Vendor (LIFNR) select the PO numbers (EBELN)...Further against each of the EBELN run EKKO where you can get all the data related to your material,price etc...
    For checking of service you have to select PACKNO from EKPO...then in ESLL against each PACKNO select the PACKAGE...now again run ESLL where PACKNO = PACKAGE
    Regards,
    Indranil

  • V_NL Net price report problem

    Hi Experts,
    I have a problem in V_NL Net price report it is not showing net price correctly in report vs sales or billing net value.
    I could tell what is our scenerio in pricing report and what i have done on SAP.
    We need net value pricing report for each material for particular customer excluded frieght and tax.   As per user requirement we customized the report and included fiield sales office on that. 
    When we ran the report it shows entirely different price we don't know where those net values picked from. When i checked previous posts and i implemented OSS note 415141 for further adjustments.  Still i couldn't get the correct report if anybody would have worked on same issue....
    What should i need to do on configuration side to get this report correctly.
    Kindly reply back and let me know the solution.
    regards
    rc gopi

    This is teh documentation I got for the program SDNETPR0
    Short text
    Create net price list
    Description
    This program is used for creating the 'Net price list'.
    Requirements (example)
    The following must exist:
    Order type TA is defined
    Billing type FX is defined
    Item category DLN is defined
    Copying control for the combination FX - TA - DLN is defined
    The default data for fields 'Billing type', 'Order type' and 'Item category' allow individual copying control. In this context, you must bear in mind that the system will run through the  copying requirements and data tranfer routines created for this purpose and stored in copying control.
    These entries and objects are released with the standard.
    The system also requires that the pricing procedure uses subtotal 2 (KZWI2) for temporary storage of the net price.
    Output
    The output contains the following per customer:
    Material incl. description
    Price content (sales quantity unit)
    Price incl. currency (VBRP-KZWI2)
    The document types and I.Cs mentioned here are for examples. The area output says what details are presented to the user finally based on the details inputted.
    Most of the fields are mandatory here.
    Hope this helps. You can reward if this helps you

  • Coverage material price forecast

    i want to run a report on coverage material price forecast....how do i go about that

    Hi,
    Could you please elaborate your requirement.
    In std.SAP there are no reports available for Material Price Forecasts.
    Anyhow you have reports such as ME1P which provides you the purchase order Price history.
    Thanks & Regards,

  • Material Price Analysis-CKM3N

    Dear Gurus,
    I'm new in material ledger and need advise for material price analysis in CKM3N.
    There is a value from receipt from next level 13,282,838.
    where cause value change 1,383,641 and new price change 365,125.
    How to analyse this casue of single and multilevel price different could happen and what report can explain this different.
    Thank you,
    IS

    Hi Iwan.
    + CKMLQS is the way to analize the price diff from lower levels. In your screenshot the pride diff come from 0414 F3PCS ( the same header material), thats why i ask if you have rework process.
    + Strategy 20 in the standard is a non-valuated sales order stock process, and its easy to verify because in CKM3N you dont write the Sales Order.
    I never see a proyect with non-val sales order stock because SAP recomendation:
    https://help.sap.com/saphelp_erp60_sp/helpdata/en/90/ba6cfb446711d189420000e829fbbd/content.htm
    In the same page, also check the constrains of non-val sales order stock.
    + Also check this old thread, UDO say ML dont work with NonValuated sales order stock (UDO work in ML development).
    Material Ledger Functionality with Non Valuated Sales Order Stock
    As i told you, i i couldn't give you an accurate opinion without see your system, but i guess the problem is the non valuated sales order stock.
    Question:
    + You are in a productive system or in a test system ?
    + Who decide to work with strategy 20? PP boys ?
    Arturo.

  • Material analyses report.

    Hi gurus,
    what are all involved in a  and what is a material analyses report
    <b>Material Price Analysis Report</b>
    could u plz explain.
    regards,
    siri.
    Message was edited by: sireesha yalamanchili

    Hi ,
    To find the change in material prices and variation in current price and given date(Past) this will help for next purchase for the material having high variation .

  • Split valuated material price change at header level (without val. Type)

    Hi All,
    Need to change Split valuated Material Price at Header level (without val. type).
    In MR21 valuation type is mandetory for split valuated material.
    Please suggest on changing Material price without val. type.
    Thanks

    You have to advise the users who create accounting views to enter a valid price when they create a material master. Maybe you need to make use of the user exit to prevent saving when no price (or a dummy 0,01)  is entered.
    It is not possible to change the header price with any SAP given transaction, as it could cause inconsistencies if you dont take care about the stocks at valuation type level.
    you may have to deveope an own report on own risk. I personally have the opinion that it is more secure to post stock and reverse it again (which just creates to accounting documents that equalize each other, no remaining value anywhere) than going the risk with an own program to screw up the valuation of a material  in general

  • Volatile raw material price and actual costing

    Hello,
    We are investigating the use of material ledger / actual costing in SAP. We have multiple production plants and multiple distribution warehouses that would be modeled as a plant.
    We are worried that due to the extreme volatility of our raw material prices and the fact that some of our products have low volume or slow turnover in some warehouses, our cost of goods sold in SAP using material ledger / actual costing will be difficult to explain and not reflective of actual conditions.
    For example, if a product is placed in Warehouse A in month 1, receives very little new product in months 2-4, and then we sell a lot of that product from warehouse A in month 4, the cost of those goods will be very close to the month 1 cost. We are worried about how that will affect our cost of goods sold.
    We would like to hear from other companies that have similar conditions to see if this really causes any problems using actual costing / material ledger.
    Thanks,
    Jimmy

    Hello,
    Thank you for your response. We would like to understand why other companies do not have a problem with this behavior. Our company is concerned that this will reduce visibility of raw material price fluctuations in COGS (and reports that use COGS data), and make it more difficult to explain COGS behavior. Note that we have some reports on COGS data by material.
    In our current system, COGS consumes inventory at the average price accross all warehouses.
    Thanks,
    Jimmy

Maybe you are looking for

  • Display Session issue in Essbase

    Hi, we currently upgraded to V11.1.2.2 from 9.3. In system 9 to see a list of sessions we used EAS and did a Edit Session on the server to get a list and it worked fine, but in System 11 the behavior of Edit sessions is different. Whenever we did Edi

  • How can i get my money back for downloading a song?

    I bought some music from sublime but i just found the cd i had for it.  Is there any way to refund the music so i can get more music?

  • Biller Direct Customer's Payment Advise

    Hi, I am having an issue with Biller Direct (BD). The customer creates the payment advise in BD (starting with 09) and it is available in SAP with FBE3 and in BD showing the invoices to be paid and the amounts. It also shows any credits that the cust

  • Downloading Mountain Lion ... taking too long.

    Currently downloading Mountain Lion. However it is taking an abnormally long time.  Not the internet provider ... suggestions?

  • What is the bus for?

    Being a newbie to Logic 8 still, I'm trying to understand of the bus. What exactly is its purpose? I think it's used as the output for a collection of tracks, is this correct?