How to get Moving Average Price ( MAP ) & Standered Price in BW

Hi all,
I want to get the Moving Average Price ( MAP) & Standered price in BW Report.So that please suggest me
1. which Cube I have to use &
2.  which datasource having that Moving Average Price ( VERPR) Field.
If having other Procedure to calculate Moving Average Price in BW .
please give me these details.
Thanks,
kiran

Hi Kiran,
0IC_C03 Cube can be used to bring the fields you require.
Please search forum post by Anil Kumar, link is not available  thats why i am copying the text here.
You need to enhance the Standard DS of Infoobject 0MAT_PLANT and Infoobject 0MAT_PLANT to include these 2 fields.
And you need to enahance the 0IC_C03 cube to include 0MAT_PLANT and need to complete the mapping in all 3 Update rules for this added Infoobject.
And you need to upload the attribute data of 0MAT_PLANT as full upload every day.
In the reports , you need to dependent on Formula varibles with replacement path with standard price an MAP price attributes of 0MAT_PLANT. So if you go with these formula variables with replacement path, you should take 0MAT_PLANT characterstic into rows as a prerequiste.
If you want to avoid this prerequisite, then take a look on How to calculate with attributes values.
Other wise you need to do the calculations at 0MAT_PLANT level by a base query after every upload,and the result should be stored in TODS by APD .And then you can final report with out 0MAT_PLANT in rows upon this ODS.
please see this links
Re: 2lis_03_um and MBEW- STPRS
Re: How to get Moving Average Prince and Standard Price in BW (inventory cube).
Hope this Helps.
Thanks
CK

Similar Messages

  • How to get Moving Average Prince and Standard Price in BW (inventory cube).

    Hi All,
    Could anyone please suggest us how to get Moving Avg. Price and Standard Price for 0ic_c03 cube, i had gone through 0CO_PC_ACT_05 and 0CO_PC_ACT_02 datasource but it is not going to solve our purpose.
    In SDN i had gone through few links and understood that we have to work on 0MAT_PLANT info object but i hav't not found how to work on this, though i found few SAP notes which are related to MAP. (869892, 819464, 863644).
    Probably some one might worked on these MAP and Std. Price, if you could share your work which us that will be a greate help.
    Highly appreciated if you share the code and steps how to work on MAP and Std. Price.
    Thanks in Advance.
    Akash

    Hi,
    You need to enhance the Standard DS of Infoobject 0MAT_PLANT and Infoobject 0MAT_PLANT  to include these 2 fields.
    And you need to enahance the 0IC_C03 cube to include  0MAT_PLANT and need to complete the mapping in all 3 Update rules for this added Infoobject.
    <b>And you need to upload the attribute data of 0MAT_PLANT as full upload every day.</b>
    In the reports , you need to dependent on Formula varibles with replacement path with standard price an MAP price attributes of  0MAT_PLANT. So if you go with these formula variables with replacement path, you should take 0MAT_PLANT characterstic into rows as a prerequiste.
    If you want to  avoid this prerequisite, then take a look on How to calculate with attributes values.
    Other wise you need to do the calculations at 0MAT_PLANT level by a base query after every upload,and the result should be stored in TODS by APD .And then you can final report with out 0MAT_PLANT in rows upon this ODS.
    You can see my contact details in my business card.
    With rgds,
    Anil Kumar Sharma .P
    Message was edited by:
            Anil Kumar Sharma

  • How to get moving average price in 0ic_c03 with back dating

    Hi all,
            The stock overview report in 0IC_C03 gives stock values based on Purchase value where as i need to calculate the stock value based on Moving average price, (so that it tallies with R/3 std report MB52), also need to get the stock value for backdating also i.e like MB5B standard report in R/3.
      <removed by moderator>
    Thanks & Regards
    Suresh Putta & Ravi Y
    Edited by: Siegfried Szameitat on Jan 19, 2009 12:12 PM

    Hi,
    The stock overview report in 0IC_C03 gives stock values based on Purchase value where as i need to calculate the stock value based on Moving average price, (so that it tallies with R/3 std report MB52)
    --> Need to enhance 0IC_C03 for moving average price and need to multiple Quantity with price to get value. You can do this at extraction level(Transformation / update rules) or Query level.
    also need to get the stock value for backdating also i.e like MB5B standard report in R/3.
    Or Maintain material price as Material attribute and create a multiprovider on 0IC_C03 and Material and calculate value at query level. In this approach value getting derived based on available price only(means historic values may change if price changing over period of time).
    Srini

  • How change the moving average prices?If run costing done In the MR21 system

    hI,
    How change the moving average prices?If run costing done In the MR21 system notallowing the changing the prices?
    Regards
    Channa

    Hi
    Showingerror
    A current or future standard price exists for material 300000007
    Message no. CKPRCH025
    Diagnosis
    A current or future cost estimate exists.
    Procedure
    You can set the price of a marked cost estimate through the radio button 'Default Planned Prices' and release it by saving.
    Please what is the process changing moving aveerage prices

  • How to calculate moving average price?

    hi,
    i need someone to explain to me how to calculate moving average price

    Hi,
    Follow the Link,
    Re: moving average price

  • How to get coordinates from Google Map

    I wonder how to get coordinates from Google Map to JavaFX application when click has occured. Here is an example of code:
    public class JavaFXApplication extends Application {
    public void showCoordinates(String coords)
            System.out.println("Coordinates: " + coords);
        @Override public void start(Stage stage)
            final WebView webView = new WebView();
            final WebEngine webEngine = webView.getEngine();
            webEngine.load(getClass().getResource("googlemap.html").toString());
            webEngine.getLoadWorker().stateProperty().addListener(
                    new ChangeListener<State>() {
                        @Override
                        public void changed(ObservableValue<? extends State> ov, State oldState, State newState) {
                            if (newState == State.SUCCEEDED) {
                                JSObject window = (JSObject) webEngine.executeScript("window");
                                window.setMember("java", new JavaFXApplication());
            BorderPane root = new BorderPane();
            root.setCenter(webView);
            stage.setTitle("Google maps");
            Scene scene = new Scene(root,1000,700, Color.web("#666970"));
            stage.setScene(scene);
            stage.show();
       public static void main(String[] args){
            Application.launch(args);
    // googlemap.html file
    <!DOCTYPE html>
    <html>
        <head>
            <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
            <style type="text/css">
                html { height: 100% }
                body { height: 100%; margin: 0px; padding: 0px }
                #map_canvas { height: 100%; background-color: #666970; }
            </style>       
            <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false">
            </script>
            <script type="text/javascript">           
                function initialize() {
                    var latlng = new google.maps.LatLng(40.75089, -73.93804);
                    var myOptions = {
                        zoom: 10,
                        center: latlng,
                        mapTypeId: google.maps.MapTypeId.ROADMAP,
                        mapTypeControl: false,
                        panControl: true,
                        navigationControl: true,
                        streetViewControl: false,
                        backgroundColor: "#666970"
                    var map = new google.maps.Map(document.getElementById("map_canvas"),myOptions);    
                    document.map = map;
            google.maps.event.addListener(map, 'click', function(event) {
                //java.showCoordinates(event.latLng); ???
            map.setCenter(location);
            </script>
        </head>
        <body onload="initialize()">
            <div id="map_canvas" style="width:100%; height:100%"></div>
        </body>
    </html>Edited by: krbltik on 03.10.2012 22:59

    Hi, welcome!
    You may also have a look at GPS Info Qt, available for free at Ovi Store: http://store.ovi.com/content/165671
    GPS Info Qt is a nice Qt app. I have it on my C6-01 and I like it.
    Regards.

  • How to change moving average price with movement type 501

    Hi Gurus,
                         Our client procures stock item with P-Card and use the movement type 501 to receive into the stock. The value of these items are updated with the moving average price, most of the time the current purchase price is different than current moving average price, so client wants to change the moving average at the time of receiving the goods into the system. Can some one explain is it possible or not. If possible how can we adjust the price? Client doesnu2019t want to go modify the price with other transaction. They want to modify while receiving with MIGO.
    Thanks,
    Vikram

    Hi
    You need to goto transaction OMJJ, select the movement type as 501.
    Then double click on "Field selection-Enjoy transaction".
    Add the field EXWBR & make it optional.
    Now when you goto MIGO & enter 501 movement type you will find the Ext amount in LC field on Quantity tab page.
    Enter the amount in this field during the GR.
    Regards
    Prasad

  • How to get system Name in Mapping

    Hi all,
    I need to know the system name in the mapping to do some logical decisions. Can any body please suggest how to get it?
    Any help will be appricaited.
    Thanks,
    Kulwant

    from this very useful thread,
    https://www.sdn.sap.com/irj/sdn/thread?messageID=685416#685416
    String user_login_id = System.getProperty("user.name");
    return user_login_id.substring(0,3);
    Regards,
    Bhavesh

  • How to get last date of mapping execution?

    Hi all,
    Anybody knows how to get the last run date mapping? I try to develop incremental load, but i don´t know get the last date of mapping execution ok.
    anybody can help me, thanks in advanced

    Hi,
    In our project we also use last_run_date to detect the delta for incremental loading.
    We created a table which holds the run date and time for each mapping. When a mapping is new (initial load) the run date is set to 01/01/1900.
    In each mapping we added a post-mapping process that inserts a record in the process table with the mapping name and last run date.
    We also added a Constant operator to all mappings, calling a procedure to get the last_run_date out of our own process table.
    The constant attribute is then used in a FILTER operator to compare the dates and select only dates after the last run date.
    ==============================
    An other option is to use the get this information out of the runtime audit tables.
    ALL_RT_AUDIT_EXECUTIONS which reside in the runtime owner schema.
    Regards,
    Ilona

  • How to get the official blackberry maps

    Hey guys i was deleting some apps from blackberry bold 9650 and i deleted blackberry maps by misstake is there any way to get back if you do know how to get back pls send a link replys thank you.

    Hi reynardo
    Try this link to download BlackBerry maps : BlackBerry Maps.
    God luck.
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.

  • How to calculate moving average price(MAP) when price variance in IV

    Hi All,
    My current stock for a material is 39 and MAP is 0.8 GBP.
    A purchase order is created for the material for a quantity of 1 at price of 0.8 GBP per unit.
    Invoice is posted for the above PO at price of 1.74 GBP.
    What will be the new MAP for the material now??How to calculate MAP when there is a price variance in Invoice?
    Please suggest ASAP.

    Hi,
    The Procedure for calculating MAP is :-
    Case 1 :- PO at different price
    If in Material Master your MAP is 0.8GBP & closing stock of 30Nos, value is 24GBP
    In PO if the price is 0.9GBP & qty is 10nos, then after Goods Receipt Total Value of the GR i.e. Qty * Price + any other delivery cost will be added to the material stock value.  Qty is also updated.  New Total Value / New Stock Qty will be MAP.
    In this case Qty received 10 & price is 0.9 that means value would be 9GBP.
    Total Value becomes 24GBP (Present Stock) + 9GBP (Goods Receipt) = 33GBP
    Total Qty becomes 30Nos + 10Nos (Goods Receipt) = 40Nos
    MAP becomes = 33GBP / 44Nos = 0.75
    Case 2 : Invoice Posting (MIRO) at different price than PO
    While doing MIRO is we post at different price system will check whether sufficient stock posted in GR is available.  In the above case it is 10Nos,
    If it is there, then the above logic as in case 1 will take place
    If not available, to the extent of stock availability system will post the different value & adjust MAP & remaining is posted to Price Difference Account.
    In your case it would be like this :
    1. MAP 0.8 for 30Nos (Value would be 24GBP)
    2. Invoice Posting 1.74GBP for 1No.  That means value would be 24GBP + 1.74GBP = 25.74GBP
         Qty would be 30+1 = 40
         MAP = 25.74 / 40   = 0.64GBP
    Hope this clarifies your doubt
    regards,
    JP

  • How to change Moving average price in accouting view at valuation cat level

    Hi,
    We are loading Material Master data for one client. We are using LSMW to load this object
    We have uploaded u201CMoving Price (MBEW-VERPR)u201D in Accounting 1 view at valuation category level. Unfortunately incorrect value has been loaded Is it possible to change??
    We donot have stock for this materials.
    When I tried to do this using MM02, I understand that itu2019s grayed out field and cannot be changed in second attempt.
    Let me know if there is any other procedure to handle the situation??
    Rajesh Chavan

    Hi
    You can change the same through MR21
    regards
    Sanil

  • Moving avg price and standered price how to cal in the system

    Dear All,
    Edited by: Mastan R  reddy on Aug 24, 2011 7:57 AM

    Dear All,
    Edited by: Mastan R  reddy on Aug 24, 2011 7:57 AM

  • How to get your $200 back from the price drop.

    Many of you likely paid with a credit card and many of the credit card companies have a price protection policy. I know american express and some mastercards do. Basically if you buy a product and the price goes down within 60 or 90 days depending on the credit card company, you get back the price difference. I know for mastercard they will refund up to $250. Try that out.

    I just got off the phone with my credit card company (ATT Universal) and they have confirmed that they do indeed honor "retail purchase protection." If you have purchased an item and the merchant drops the price within 60 days, then you can obtain a refund of up to $250.
    To all of us jilted Apple-lovers, I would suggest this course of action to resolve if possible. It's one thing to have a lone customer whining to an assistant manager of an Apple store, it's another thing to have a room full of lawyers for credit card companies in an Apple board room asking Apple how it plans to resolve the large numbers of refunds that the credit card companies were forced to pay out.
    Good luck, all!

  • How to get my business on maps

    Hi everyone,
    Simple question:
    On Maps several businesses show up. How can I get mine displayed too?
    Thanks
    Frederik

    Thanks. My name was on maps, pinned at an old address. I clicked the pin and selected 'report problem'. I submitted the correct address and other info. Now at Apple. I have to wait for manual revisioning?

Maybe you are looking for

  • Partner functions for a specific customer not seen in XD03 but appears in XD02

    Hello SAP Gurus, I have a situation where a partner functions for a specific customer not seen in XD03 but appears in XD02, In XD03 only one partner function (Ship to) appears but in XD02 (Sold to, Ship to, Bill to and payer appears), from the custom

  • Oracle 8.0.5.1 on Redhat 7.2

    I installed Oracle 8.0.5.1 on RedHat 7.2. To make it work I forced the installation of compat-glibc 5.2, compat-libs 5.2, and compat-egcs 5.2. So far everything is working normally. I tried to recompile these packages, but with no success. What would

  • CUCM upgrade from 6.1(2) to 6.1(3b) - rollback problems...

    Hi all, I have upgraded our test lab CUCM server from 6.1(2) to 6.1(3b). Although we have a genuine MCS server bought from Cisco, we run only the demo licencing on the server (simply because we only have a few test phones and gateways running on the

  • Oracle migration to mysql

    hello all, i have to migrate an oracle database to mysql under linux(redhat6.2). is there any possibility to do that? what do i have to do? bouali

  • Hide/unhide programs

    Apart from shutting down unexpectedly (http://discussions.apple.com/thread.jspa?threadID=2241639&tstart=45), it now also shuts itself down when hiding/unhiding programs. With hiding I mean clicking the orange "(-)button" in the upper left corner; wit