How to arrive net price value per unit

Hi gurus
pls help me to arrive NET SALE VALUE PER UNIT
MRP PER UNIT using key figures in POSDM and SAP R3.
Pls help sure i will assign full points
thanks in advance
regards
rajesh

Dear Rajesh,
In such scenarios you can make use of Aggregation functionality in query designer.
To have an idea how to use this aggregation functionality go through this url
[http://help.sap.com/saphelp_nw70/helpdata/EN/82/f2dc37f0f12313e10000009b38f8cf/frameset.htm]
In this scenario exception aggregation is most usefil
[http://help.sap.com/saphelp_nw70/helpdata/EN/d2/e0173f5ff48443e10000000a114084/frameset.htm]
I hope this helps you.
Revert for any doubts
Regards,
RK

Similar Messages

  • How change plant, net price, OPu, and Material Number from ME32K

    Hi GURUs,
    May let me know how I should configure ME32K in order to allow users to change:
    - Material Number
    - Net Price
    - Order Purchasing Unit
    - Plant
    I have tried setting up field selections layout properly, even debug PBO, it is still greyed out for those fields.
    Please help.
    Thanks,
    Tony Yuwono

    there is no way to change the price in item overview in the contract.
    The reason is explained in OSS note 685117.
    ........The problem is that Scales and/or validity periods may exist for the conditions, because contracts have time dependant conditions, just like info records do.
    This is in contrast to e.g. Purchase orders which have Time independant conditions and so, NO scales nor validity periods.
    A Purchase order has A price! The price maybe determined based on a source; a contract or an info record. Depending on the order quantity and the date, the PO price is determined.
    The contract does not have A date, it might have several; indicated by the validity periods. Furthermore the price is dependant on eventual scales. Therefore it does not have A price either..........

  • Condition category u00B4u00B4du00B4u00B4 Confirmed purchase net price/value

    Hi ,
    I  have  created  new  condition  with  condition  category  ´´d´´ Confirmed purchase net price/value.
    I  dont know  if  this  kind  of  condition  needs  access  sequence-If  yes  which  one?
    Which routine  to  assign  in  pricing  procedure?
    Thanks in  advance  and  best  regards
    L

    No it is not required.  See the SAP explanation for this
    If the vendor confirms a price via EDI, the system inserts the
              price in the condition type with category d.
    thanks
    G. Lakshmipathi

  • Debit memo with negative net price value

    Hi experts.
    Can you help me ?
    I have a debit memo process and its net price value is negative.
    Return's flag isn't checked in  customizing (VOV7).
    Thanks a lot !
    Renato

    Hello,
    if the order type (VBAK-VBTYP = 'K') for a debit memo request, then the returns flag should be set to 'X' in the maintainance of the item type (transaction VOV7).
    the sign will be reversed in fv45pfop_preisfindung_
    if the flag is set.
    I hope that the information are helpful.
    Regards
    Claudia
    If you are satisfied with the answer, please give Reward Points.

  • Sales order - net price value - what table

    In what table is stored the Net Price Value (Sales order item level, Conditions tab, column Amount, name Net price Value ( structure KOMV-KBETR)
    Thanks.

    Hello,
    You have to check KONV with Condition record no = VBAK-KNUMV.
    Then match the line item number with KONV-KPOSN to get all the price conditions for each item (Note KINAK = space will get only active price conditions)
    If you need the total sum of amount for all line items then you can check VBAP-NETWR.
    Hope this helps,
    Regards
    Shiva

  • How to populate net price on delivery

    Hi All
          We are running closed order reports on sales overview cube with the selection on Actual goods issue date. But we are not getting Net price and ordered quantity in the report. The reason is Net price is coming from sales order but when we extract using Actual goods issue date data is populating from delivery line only.
      Anyone have idea on this how to extract delivered orders with netprice and also we need ordered quantity.
    Thanks
    Vani

    There might be more than one method to resolve the requirement.
    You can develop a routine in t.code VOFM and add it in the column  AltCTy. The logic in the routine can be if the netvalue exceeds 2500, then the net value should be 2500.
    The second option is you can try with using standard. In VK12, after maintaining the pricing as 100/day, go to details. Then in upper limit add value as 2500. Then create a test sales order for 25 days and more than 25 days, then check the values. I think this can help with your scenario.
    Regards,

  • How to make net price field in Purchase Order Uneditable

    Hello all,
    I am facing a problem. During creation of purchase orders the material price is picked up from the Info Record, but the net price field is editable. Please guide me how through standard SAP can i make this net price field uneditable.
    Thanks in Advance,
    Ritesh.

    Hi Ritesh,
    You can goto:
    SPRO-MM-Purchasing-Purchase Order-Define Screen Layout at Document Level
    from here you select ME21N-Selection group-Quantity and Price.
    Make the price and price unit as DISPLAY.
    By this it will show only display for price, but you have to take not that there is also condition tab which user can change the price, this price is from INFOREC.
    Goto to M/06 select your Condition type, In Manual entries maintain "D"-Not possible to process manually
    Regards,
    Maia

  • How to change net Price by using BAPI_PO_change

    Hi experts..
    How i can change net price by using bapi_po_change.
    What parameters i have to pass in this fm.
    if possible please tell me , which table this FM will update.
    Thanks.
    I will award points for all help.

    See the below code and have tested and it works great..
    REPORT  ZTEST_PG_07 NO STANDARD PAGE HEADING
                        MESSAGE-ID z9_msg_prash.
    Tables Declaration  ****
    TABLES: ekpo.
    Variables Declaration  ****
    DATA: v_purchaseorder TYPE bapimepoheader-po_number.
    DATA: v_ebelp TYPE ekpo-ebelp.
    Constants Declaration  ****
    CONSTANTS: x VALUE 'X'.
    Internal Tables Declaration  ****
    DATA: it_return  TYPE STANDARD TABLE OF bapiret2 WITH HEADER LINE.
    DATA: it_poitem  TYPE STANDARD TABLE OF bapimepoitem WITH HEADER LINE.
    DATA: it_poitemx TYPE STANDARD TABLE OF bapimepoitemx WITH HEADER LINE.
    DATA: wa_return  TYPE bapiret2.
    Selection Screen  ****
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    PARAMETERS: p_ebeln LIKE ekpo-ebeln OBLIGATORY.
    PARAMETERS: p_ebelp LIKE ekpo-ebelp.
    PARAMETERS: p_menge LIKE ekpo-menge.
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN
    AT SELECTION-SCREEN ON p_ebeln.
      IF p_ebeln IS NOT INITIAL.
        SELECT SINGLE ebeln INTO v_purchaseorder FROM ekpo
        WHERE ebeln = p_ebeln.
        IF sy-subrc <> 0.
          MESSAGE e002.
        ENDIF.
      ELSE.
        MESSAGE e005.
      ENDIF.
    AT SELECTION-SCREEN ON p_ebelp.
      if p_ebeln is not initial.
      IF p_ebelp IS NOT INITIAL.
        SELECT SINGLE ebelp INTO v_ebelp FROM ekpo
        WHERE ebeln = p_ebeln AND ebelp = p_ebelp.
        IF sy-subrc <> 0.
          MESSAGE e003.
        ENDIF.
      ELSE.
        MESSAGE e006.
      ENDIF.
      endif.
    START-OF-SELECTION
    START-OF-SELECTION.
      v_purchaseorder = p_ebeln.
      it_poitem-po_item  = p_ebelp.
      it_poitem-quantity = p_menge.
      it_poitem-net_price = '20.00'.
      APPEND it_poitem.
      it_poitemx-po_item  = p_ebelp.
      it_poitemx-po_itemx = x.
      it_poitemx-quantity = x.
      APPEND it_poitemx.
    *&----Calling BAPI function module
      CALL FUNCTION 'BAPI_PO_CHANGE'
        EXPORTING
         purchaseorder                = v_purchaseorder
        testrun                      = x
       TABLES
         return                       = it_return
         poitem                       = it_poitem
         poitemx                      = it_poitemx.
         CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          EXPORTING
            WAIT          = space
         IMPORTING
           RETURN        =
    END-OF-SELECTION
    END-OF-SELECTION.
      LOOP AT it_return INTO wa_return.
        WRITE:/ wa_return-message.
      ENDLOOP.
    Thanks
    Seshu

  • How to calculate net price based on customized formula

    Hi  all expert,
    I have a requirement in a rental process:
    The price of a rental is defined as daily rate (e.g. 100/day) and monthly rate (e.g. 2500/month).
    when I create a rental contract, I'd like SAP to calculate net price based on contract duration with both rate and use the lower one.
    e.g. rental 5 days. use daily rate = 500; monthly rate = 2500; So use 500.
    e.g. rental >=26 days. use daily rate >= 2600; monthly rate = 2500; So use monthly rate 2500.
    I was think to use price condition scales to set:
    1 - 25 days: 100/day
    >=26 days: 2500/month
    But the problem is there are 30day a month and 31 days a month. When the contract has to calculate partial month, daily rate has to be calculated as monthly rate/actual days in the month.
    How to handle it?
    Thank you in advance!    

    There might be more than one method to resolve the requirement.
    You can develop a routine in t.code VOFM and add it in the column  AltCTy. The logic in the routine can be if the netvalue exceeds 2500, then the net value should be 2500.
    The second option is you can try with using standard. In VK12, after maintaining the pricing as 100/day, go to details. Then in upper limit add value as 2500. Then create a test sales order for 25 days and more than 25 days, then check the values. I think this can help with your scenario.
    Regards,

  • Programme RM06INP0 is NOT updaing Net price value at in ME13 screen in ECC

    Hi Experts ,
    We are on  ECC 6.04 with SRM 7. We are using PIR as one of the SoS in Shopping cart in Classic scenario.
    When we are running the programme RM06INP0 in ECC in foreground /background to update the Net price field ( NETPR), but  it is only updating at value at Table Level ( EINE-NETPR) and NOT at Screen Level  ( or sometimes it update at Screens level)
    It does not affecting any functionality in ECC or SRM, since  system propose the Price from EINE-NETPR for PIR in SoS in SRM Shopping Cart & from last PO in ECC PO in ME21N , but user do NOT able to able to see the Price in ME13 ( Display Pur. Info Record)
    Can anyone please suggest what should be the issue ?
    Thank you .
    NAP

    Thanks Patilmallinath .
    I saw below information for this programe in "i" in SE38
    Short text
    Price Determination for Purchasing Info Records
    The report calculates the current prices of the info records and (if desired) updates the latter with the results.
    Description
    For each info record that satisfies the criteria set out in the initial screen, this report calculates the new net and effective prices from the currently valid conditions.
    If there is a variance from the prices stored in the info record, the new prices can be adopted in the info record.
    If there are no valid conditions, the prices in the relevant info records are not changed.
    Requirements
    The Test run indicator determines whether the new prices are to be adopted in the info records:
    'X' -> the report does not update the info records with the new prices;
    ' ' -> the report updates the info records with the new prices.
    Output
    The report generates a list containing only those info records in respect of which the newly calculated prices differ from those of the info record. Included in the output are the old and the new prices.
    and according to it it should update the Net Price in the Screen. Well, issue is 'Not updating the Price'...it is updating price at table level...but not at screen level...manytimes...
    Can you/anyone please suggest on this ?
    Regards
    NAP

  • How to get net price of a given material(Just like in VA01)

    Hello Experts,
    How do I get the net price of a given material? Just like when entering a
    material in VA01(sales order creation). Hope you can help me guys.
    Thank you and take care!

    This is a million dollar question.
    It depends on how the pricing have been configured in your system and only your SD consultant can answer it correctly. Price in VA01 could be determined by using the pricing conditions or, if allowed, a manual user entry (i.e. when users just type in the price). Discounts, taxes, etc. are calculated in a similar way, also based on the configuration.
    Pricing conditions are displayed in transaction VK13. You might want to take a look at an order in VA03 -> double-click on a line and go to Conditions tab. There are buttons Analysis and Condition Rec. that might be useful for your research. It is possible to configure different price for the same material and different customer, distribution channel, etc., so you will have to ask your SD consultant how to get the correct number in each case.
    Just FYI the net price on the order/contract is in VBAP-NETWR and condition are stored in the tables Annn, e.g. A901, etc. The tables are generated according to the configuration and are different in each system.

  • Problem with updating net price value through PORDCH Idoc

    Hi All,
    I have a ABAP program which calls the function module BAPI_PO_CHANGE to update the line item details using an idoc.
    During this change it is updating Limit values in PO bot not the net price.
    And the Idoc status is having message as BAPI Change has been done successfully instead of "PO number changed".
    Any suggestions to solve this issue.
    Thanks,
    Spandana

    Please post the details of the application release, database version and OS.
    Please see these MOS docs.
    Getting "ORA-20001: The primary key specified is invalid" Error Using HR_ASSIGNMENT_API.UPDATE_EMP_ASG_CRITERIA API [ID 737145.1]
    APP-PAY-07220: The primary key specified is invalid - ERROR Received Creating GRE/Legal Entity In New Business Group [ID 849754.1]
    Error Occurs While Hiring Applicants APP-PAY-07220: The Primary Key Specified Is Invalid [ID 1084464.1]
    Terminated Employee Scorecards Error's: Ora-20001: The Primary Key Specified Is Invalid [ID 859315.1]
    Hr_assignment_api.Update_emp_asg_criteria Gives Ora-20001, Ora-06512 [ID 334491.1]
    PERWSTEM Termination 'APP-PAY-07220 The Primary key specified is invalid' and Database 11.1.0.7.0 [ID 1263357.1]
    Error 'APP-PAY-07220: Primary Key Specified Is Invalid' When Attempting to Process Open Life Event [ID 567224.1]
    Republishing Performance Management Plan (PMP) Fails with Error: ORA-20001: The primary key specified is invalid [ID 956234.1]
    Thanks,
    Hussein

  • How can I check stock value per valuation class at a certain period

    Hi,
    I have done this several times but with material ledger, but if I don't have material ledger available, how can I check the total stock value per valuation class for example at a certain period, lets say december 2012?
    I have check menu reports, and also the historical tables, but is there any standard to use?
    Thank you,

    HI,
    Please check transaction
    S_P00_07000140
    S_P00_07000139

  • 2lis_02_itm is not extracting net price value

    Hi All,
    The standard data source 2lis_02_itm is not extracting the NETPR( NET PRICE ) data from table EKPO-NETPR. The values existing in the table varies with the extracted data.  Did any body face the same issue?  please tell us the reason for this?Any sap note be applied .
    Please suggest...please revert back..points awarded for the valid answers.
    Thanks,
    Joseph
    Edited by: joseph reddy on Feb 15, 2010 5:55 PM

    Hello Joseph & Ravi,
    I've found the reason for the difference in the value of NETPR in the extractor by reading SAP Note 670313 (http://service.sap.com/sap/support/notes/670313).
    To solve the issue, we've set up a user exit extracting the value from the table (EKPO-NETPR) and connecting this to the infoobject in BW instead of the value provided by the extractor.
    Kind regards,
    Ben

  • Net price to sales unit on Order screen

    hi,
    We have the following problem.
    The order clerks normally place orders and on each line item, they fill in the unit price (ea) in the Rate Field (KOMV-KBETR) on the sales screen. By defaulty it brings up deault condition type ED1. In our previos version (4.6c), when the rate is entered (Say 100) the Net Price field (VBAP-NETPR) also changes to a unit price, however in the new system it is not doing this. Can anybody help ????

    that is not the solution, the master data is correct, a suggestion on which user exit to use and the coding would be preferable.

Maybe you are looking for

  • Downloading file from application server to presentation server

    Hi,       We have a requirment to download file from application server to presentation server.  The problem is while down loading, some of the filds showing some junk values. Instead of that junk values we have some Russian texts there.  These Russi

  • Garbage in browser window

    A couple of weeks ago Safari began randomly displaying garbage characters in the browser window on random websites. Some work, some dont, and then sometimes the ones that showed gobbledy-gook ten minutes ago will display just fine. Does anyone have a

  • Excise details

    hi, what are all the excise entries for vendor return? business cycle. Rgds raja

  • Implementing a Graph Data Structure

    First time posting here, I was introduced to LabVIEW while participating in FIRST. I was reading about Graph Data Structures, and wanted to see if I could use them in LabVIEW, as it looked like a good way to relate information. Unfortunately, it appe

  • View of photos

    Why can't I use Adobe to view my photos?  I used to be able to do so.