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.

Similar Messages

  • 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

  • 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

  • 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

  • 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.

  • 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

  • Valucation Type PROD_PRICE (material price) and NET_COST(Material net cost)

    Hello gurus,
    When transfer BOM to GTS, we got two values in product master under price tab:
    Valuation type PROD_PRICE: 1000USD (valude is same to standard price in ECC material master)
    Valuation type NET_COST: 900USD (where it is from?)
    Can you please tell the difference between above two?  In most cases, those two types have same values in product, but sometimes they are different.
    Thank you,
    Ryan

    Hi ,
    Please check the Valuant variant assigned against the step " Define Goods Received Valuation for Order Delivery" in IMG under Product cost by Order.
    This will have impact on the valuation.
    Njoy
    Siva
    Check the Price strategy for Materials. SAP help says as below :
    ================================================================
    Define Goods Received Valuation for Order Delivery
    This step is only relevant if your have specified price control V in the material master records of semifinished products or finished products.
    In this step you specify how the receipts for materials with price control V are valuated.
    When the master record of a material specifies price control V, the value for the credit is determined using a valuation variant. You must define this valuation variant separately for each valuation area. The valuation variant determines which material price is used for the credit posting.
    For materials with price control S, on the other hand, the credit posting is always made at standard price.
    If you deliver to stock at a price that is not the standard price, the system will report an output price variance in variance calculation.
    Requirements
    You must already have processed the step Define valuation variant.
    Actions
    If you have materials with price control V, you must specify for the valuation area which valulation variant should be used at the time of the goods receipt. Specify the goods receipt valuation for your material with price control V in this step.
    =================================================================

  • Material Price Table

    Hi Gurus,
    What is the table for Material Prices?
    i want to get the material names and prices.
    Cheers,
    Sumith

    Hi Sumith,
    Are you talking about material prices which we maintain in material master record.
    We can get the material prices in MM60 T.code.
    If you want to see material prices which we maintain through  pricing condition records, then you have to create a pricing report in T.code : V/LA  and execute in V/LD.
    or
    goto  VK13 enter condition type , choose condition information tab  and enter selection criteria and execute.
    Regards,
    Chandra

  • Getting a material Price change in a certain period

    Hi everyone,
    I would like to seek your help regarding a problem I have in MM module. I am not an MM person but I need something that came from MM module.
    What I need is the price change of a material in a certain period. Is there any FM that I can use to do this? I need it to compute the ratio how a component material affects the price change of the header BOM material. So if we check the FI document posted for the header BOM material price change, explodes it and check if the components of that material had also undergone a price change in that period.  So how will I check the price change done on that component material?
    Thank you.

    Hi,
    I need to compute ratio so I need the price change. In the report, you need to drilldown first to see the document.
    thank you.

Maybe you are looking for