Inventory values mismatch

Hi experts,
I have loaded inventory data by installing standard objects from
business content and then included some fields into cube and as per the fields included,changed the infosource,transfer rules and update rules and then loaded the data.As per my knowledge the data flow is fine.
When i see the data in the cube some of the field values are appearing differently like:
In r/3 for a particular materail and plant for a particular month
the values of issued quantity are 1164.40- and 465.76-(should appear in the cube in the field Value issued from valuated stock).And value of receipt quantity is 176 ( should appear in the cube in the field Value received into valuated stock) .
But in the cube, 1164.40- and 176 are appearing in the Value received into valuated stock and 465.76 is appearing in
Value issued from valuated stock.Actually 1164.40- should also appear in the Value issued from valuated stock.
My requirement is 1164.40- should go to Value issued from valuated stock and also like 465.76 it should also be displayed as postive value in the value issued from valuated stock.
Only for some materials it is showing like this i.e for which blocked stock, quality stock, transfer posting etc are maintained.
And also same with the quantities.
Can any guide me how to proceed to solve this ?
Bhadri M.

Hi,
My Dear You can use the standard update rule but you need to modify the same according to your business Scenarios of the Company.
not going very much in Detail but need to say that inventory report are mainly based on the
movement type (Movement Which Happens from Warehouse ), Just ask the details from your MM guy n change the Update rules from the help of ABAPers.
then n then only you will get the correct values.
Assign point if it helps.
Regards,

Similar Messages

  • Third party process as inventory value

    Dear Experts,
    Kindly need help for third party process.
    We have third party process which triggered from Sales Order. This Sales Order will automatically created PR. PR will be convert into PO.
    The issue is we would like to have goods in Sales Order (or Purchase Order in next process) as inventory value when receiving goods.
    Can third party process be treated as inventory value when receiving it?
    Thank you in advance.
    Best Regards,

    In third party process your customer gets the goods directly from your vendor.
    You only make a statistical GR ("phantom" GR) in the system, the goods are physically received by your customer and your customer's inventory will increase after your customer's GR and not yours. Knowing this your question doesn't make any sense I think.
    If your third party process is not a real third party process and you receive the goods physically and after that you sell it your customer you can use individual PO scenario.
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/dd/5601d4545a11d1a7020000e829fd11/frameset.htm
    Regards,
    Csaba

  • Oracle Inventory: Inventory Value as on date Query

    Hi guys,
    We need to write a query to get inventory value based on a particular date, say '31-dec-2011' for certain auditing purposes. We can use historical transaction summary report for this purpose, however this report produces more than 800 pages for a single requirement.
    We were able to retrive the current inventory value using the following query
    SELECT SUM(moq.transaction_quantity*moq.item_cost) inv_cost
    FROM mtl_onhand_qty_cost_v moq
    WHERE organization_id = :p_org_id;
    Unfortunately none of our exercises from last couple of days fetch values anywhere near to the historical transaction summary report as on date inventory value for the above said cut off date.
    We tried the following query against mtl_material_transactions table
    Select sum(transaction_quanity*new_cost) inv_cost from mtl_material_transactions
    where organization_id = :p_org_id and
    trunc(transaction_date) > to_date(:p_date)+1 -- transaction value after '31-dec-2010' for example
    and then deducting value from second query from first query value...
    Please help
    Regards,
    raj

    Hi Sandeep
    I was able to run the API mentioned with before report trigger successfully, however cannot retrive any lines from cst_inv_qty_temp, cst_inv_cost_temp tables. I had gone through the API body and "assumes" this particular API repopulates the data each time when the report is submitted, identified by the unique session id.
    Would you comment?
    SET SERVEROUTPUT ON;
    Declare
    L_FCN_CURRENCY VARCHAR2(15);
    L_REPORT_NAME VARCHAR2(80);
    sql_stmt_num varchar2(5);
    l_exp_sub NUMBER;
    l_msg_count NUMBER;
    l_msg_data VARCHAR2(8000);
    l_return_status VARCHAR2(1);
    l_as_of_date VARCHAR2(30);
    l_cost number;
    wms_org_count NUMBER;
    pjm_org_count NUMBER;
    l_calculate_intransit NUMBER;
    l_cst_inv_val EXCEPTION;
    Begin
    BEGIN
    MO_GLOBAL.SET_POLICY_CONTEXT ('S', 111);
    END;
    CST_Inventory_PUB.Calculate_InventoryValue(
    p_api_version => 1.0,
    p_init_msg_list => CST_Utility_PUB.get_true,
    p_organization_id => 111,---:P_ORG_ID,
    p_onhand_value => 1,
    p_intransit_value => 1,
    p_receiving_value => 0,
    p_valuation_date =>to_date('2011/01/01 00:00:00','YYYY/MM/DD HH24:MI:SS'), -- to_date(:P_AS_OF_DATE,'YYYY/MM/DD HH24:MI:SS'),
    p_cost_type_id => NULL, --2, --:P_COST_TYPE_ID,
    p_item_from => NULL, --:P_ITEM_FROM,
    p_item_to => NULL, --:P_ITEM_TO,
    p_category_set_id => NULL, --:P_CATEGORY_SET,
    p_category_from => NULL, --:P_CAT_FROM,
    p_category_to => NULL, --:P_CAT_TO,
    p_cost_group_from => NULL,
    p_cost_group_to => NULL,
    p_subinventory_from => 'BBM-01', --:P_SUBINV_FROM,
    p_subinventory_to => 'BBM-01', NULL, :P_SUBINV_TO,
    p_qty_by_revision => 2, 'no'--:P_ITEM_REVISION,
    p_zero_cost_only => 2, 'no'--:P_ZERO_COST,
    p_zero_qty => 2, 'no' --:P_ZERO_QTY,
    p_expense_item => 2, 'no' -- :P_EXP_ITEM,
    p_expense_sub => 2, --'No', -- l_exp_sub,
    p_unvalued_txns => 2, --:P_UNCOSTED_TXN,
    p_receipt => 1,
    p_shipment => 1,
    x_return_status => l_return_status,
    x_msg_count => l_msg_count,
    x_msg_data => l_msg_data
    IF l_return_status <> CST_Utility_PUB.get_ret_sts_success
    THEN
    RAISE l_cst_inv_val;
    END IF;
    FND_MSG_PUB.count_and_get(
    p_encoded => CST_Utility_PUB.get_false,
    p_count => l_msg_count,
    p_data => l_msg_data
    IF(l_msg_count > 0)
    THEN
    FOR i in 1 ..l_msg_count
    LOOP
    l_msg_data := FND_MSG_PUB.get(i, CST_Utility_PUB.get_false);
    DBMS_OUTPUT.PUT_LINE(i ||'-'||l_msg_data);
    END LOOP;
    END IF;
    End;

  • Cost of Goods Sold and Inventory Value

    Hi
    I am looking to setup KPI for Inventory Turns in BI. This needs "Cost of Goods Sold" and "Inventory Value" for Orders for a Plant.
    I wanted to know if this information is directly available in any standard extract or do I need to write a Custom Extract for this. I did try searching for this but not able to find this information directly. Do I need to derive the information from some other Key Figures?
    TIA
    Abhishek

    COGS Value we are getting for the COGS GL Account from FIGL. We are using the extract 0FI_GL_4 and then from the DSO 0FIGL_O02
    Inventory value we are taking from the Cube 0IC_C03. Please note that the Transformations to the DataSource 2LIS_03_BX, 2LIS_03_BF and 2LIS_03_UM are available in the latest Patch 11 for BI Content 703 and should be used instead of the old Transfer Rule/Update Rule.
    Regrads
    Abhishek

  • Inventory value increase

    Hi,
    (Initially wrongly posted this in BI and hence repeating here)
    Is there any way I can post a transaction to increase the inventory value ?
    We have a requirement.
    After the product is manufactured it (Wine)
    is kept in warehouse for curing purpose . ( Temp on and off at cost including handling charges)
    The curing cost is paid every week.
    The cost has to be increased to the inventory cost instead of keeping under expenses.
    ie These are charges are to be capitalized .
    End of it every Day Ithe system should pasa accounting as
    Dr Inventory
    Cr accrual
    End of the week on paymnet to vendor by ivoice payment
    Dr accrual
    Cr vendor
    How do I push the expenses to Inventory ?
    Thanks in advance
    Chitras

    Thanks Guys. I was on vacation for 3 weeks .
    My doubt is how to handle the requirement of adding the warehouse charges on weekly basis to the price of the FG so the inventoy price has to go up on weekly intervals.
    What should be the best approach.
    is it that Every wek change the price by MR21 or any other  alternate apprioach available
    Thanks, Chitras

  • Increase in Inventory value of raw material after PO stage & MIRO

    Is it possible to increase the inventory value of a raw material after PO is finalized and MIRO doc. has been raised.
    I want to increase the inventory value by additional expenses after PO & MIRO are done.
    Regards,

    Hi,
    It is possible through the concept of 'Subsequent Debits/ Credits'. A subsequent debit/credit exists when an additional invoice or credit memo is received for a transaction that has already been invoiced.
    Before using the same, you should note the following:
    - The system records every subsequent debit/credit in the purchase order history.
    - By posting a subsequent debit/credit, the system updates the ordering transaction on a value basis but not on a quantity basis. The quantity invoiced therefore does not change, but the total value invoiced does.
    - The maximum quantity you can subsequently debit or credit is the quantity that has already been invoiced. It is not possible to post a subsequent debit before an invoice. The system does not check the quantity delivered. A subsequent debit/credit cannot be blocked due to quantity variance.
    Regards,
    Narayana G.

  • Increase in inventory value

    Huge increase in my inventory value, what should be the solution given to the client as an MM consultant.

    you should analyze why the value increased.
    It is totally unclear if you are talking about the overall value, which could be caused by physical effects of having more stock than ever in your warehouse, so you need to optimize this case.
    But if you are talking about one material which got a huge value while the stock level did not really change on exceptional basis, then you should analyze your accpounting documents to a material and its values in MR51.
    There you should find   when it started to increase the value.
    Which may be caused by a wrong price in a PO (could have been corrected after GR, so check change history of order as well)

  • GL trial balance and All inventory value reports

    Hi,
    in oracle applications 11i the inventory super user claims that the results of the following two reports:
    GL trial balance
    and
    All inventory value report
    for the period MAY-09 DO NOT match.
    How can i investigate this issue?

    I haven't worked on PPAC but I assume its only a cost method to build the cost. Once costs are build GL entry happens in the same way.
    You said that you first freeze the cost and then run subledger update report.
    Once you freeze the cost, what cost do you see for product x?
    Once you produce 20 TONS output; subledger update should generate entry as follows:
    Cr WIP: cost*20
    Dr INV: cost*20
    Now you mentioned about title ALC (GL Allocation). I haven't seen that title.
    Also at the period end we need to run revaluation of inventory for STND method, I am not sure if the same is required for PPAC. Try performing that in test instance to see accounting entries generated.
    I am sorry if I confused you or didn't understand your question. I have used mostly worked with STND method and just trying to extend my experience with PPAC.

  • Vendors inventory value (subcontractor)  .

    Hi Expert,
    How can we take the report of subcontract vendors inventory for date wise (other then tcode MC.1 And MBLB)
    Prashanth

    Hi
    Report MB51 not gives inventory w.r.t storage location wise
    i want the tcode/report for subcontractor inventory of following parameters
    inventory value
    to date and from date
    from which storage location it has gone to vendor
    material
    plant
    Thanks in advance
    Prashanth

  • Key Values Mismatch

    Hello again,
    I screwed up and I don't know how to fix it. Trying to start Apache:
    /etc/init.d/apache2 start
    tail /var/log/apache/error_log shows:
    [Tue Feb 15 08:21:40 2011] [notice] suEXEC mechanism enabled (wrapper: /
    usr/sbin/suexec2)
    [Tue Feb 15 08:21:40 2011] [error] Unable to configure RSA server private
    key
    [Tue Feb 15 08:21:40 2011] [error] SSL Library Error: 185073780
    error:0B080074:x509 certificate routines:X509_check_private_key:key
    values mismatch
    I'm assuming this is because in Remote Manager under Configure I chose:
    "Create OpenSSL Certificate and configure httpstkd to use the OpenSSL
    Certificate"
    Now I can't get back in to see if there is anything to be done there.
    surely:~ # cat /etc/SuSE-release
    SUSE Linux Enterprise Server 10 (i586)
    VERSION = 10
    PATCHLEVEL = 3
    surely:~ # cat /etc/novell-release
    Novell Open Enterprise Server 2.0.2 (i586)
    VERSION = 2.0.2
    PATCHLEVEL = 2
    BUILD = FCS
    As always thanks
    Bob Crandell

    Bob,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Cube for Inventory values, prices and quantity

    Hi,
    Does anybody knows some standard InfoCube that delivers Inventory values, prices and quantity?
    I need something like R/3 transaction CKM3 (Material Prices Analysis CO-ML). This transaction agregates inventory quantity, value ( material price) per material/plant, you could drill-down to material moviments level.
    I found a InfoCube named 0IC_C03 (Material Movements - see help link), but  i can't figure out how this cube works.
    http://help.sap.com/saphelp_nw04/helpdata/en/fb/64073c52619459e10000000a114084/frameset.htm
    Regards,
    Eduardo

    Hi Eduardo,
    Now, I am developing a new query, exactly in CKM3 format, but where you can see more than one material at once.
    I am using the infocube 0COPC_C07 (Actual Costing/Material Ledger), where I can see the same information as in CKM3 transaction.
    I hope this helps,
    Regards,
    Fernando.

  • Inventory value

    Where from the values are picked up to give inventory value of maintenance spares?

    Inventory Value will have 2 components.
    Moving Average Price or Standard Price in Accounting 1 view of Material Master
    Plant Stock in Plant Stock view of Material Master
    Based on your Controlling Area - Company Code - Chart of Accounts - Plant Organizational structure, Inventory value will be shown.
    Where you are looking at the Inventory value?? Based on that, these above mentioned combination may vary.

  • Inventory Value Item Group

    What is the best way to get the inventory value by item group?
    We currently use the standard valutation method.
    I have seen the Stock Valuation Report, but this only gives us the option of Moving Average / FIFO / Pricelist.
    I have also seen that I could do it with the Stock Posting, but this will not let me select the stock by posting date.

    Hello,
    If you have G/L method by item group then you have mapped accordingly in Chart of Account in Asset drower so when you run trial balance report .in this report you should only select these ledger which you want to group amount .
    You can also prepare financial template only for live stock.
    I think it will help you otherwise you should go for report part.
    Thanks
    Manvendra Singh Niranjan

  • Inventory Value-Material master

    There is a field Inventory value below both co.code currency and Group currency in the material master Accounting 1 view..
    I am in need of getting the value in a report for materials..
    i manage to get the value of Inventory value below co.code currency(From MBEW table) but what about the same below group currency..
    PLease help me out.
    Karthick P

    I think this is just a calculated figure during runtime based on conversion rates maintained.

  • VAT amount adding to Inventory value where Input credit is not available

    Dear All,
    We want to capture the VAT amount adding to Inventory value where Input credit is not available.
    As per the current practice, the Inventory valuation is going wrong as the VAT portion comes to the Inventory a/c at a subsequent date (when AP Invoice is done) instead of on the date of GRPO.
    We want to add the vat amount to inventory value at GRPO level.
    Regards,
    Arbaaz.

    Hi Joseph,
    My exact requirement is ...
    There are some Inventory Items purchased with (Vat input not avaIlable) for my company.It means that Vat is not applicable for those Items.
    So the Vat part of the amount should be added to the Item cost in my Inventory valuation.
    But my situation is that , i need to show vat calculation at Purchase Order level as per my Vendors request.After that ultimately total document cost should be my Inventory cost.
    This is where i am struck.
    Regards
    Arbaaz.

Maybe you are looking for

  • Add a line question

    Alright, I know this is a question about how to go around the system, but I gotta ask.  I recently got a Palm Pre Plus due to issues I had with my Droid Eris.  Needless to say, I am just not very pleased with the Pre Plus either.  No useful apps, the

  • Error installing Adobe XI Pro Trial

    Hi. I keep getting this error while trying to install Adobe XI Pro trial version: The application cannot be installed due to a certificate problem.  The certificate does not match the installed application certificate, does not support application up

  • GOITEM-SGTXT in MIGO not updated in table MSEG

    Hi Experts I have a requirement to capture the MIGO line item text into Accounting document. Issue is - the text entered in GOITEM-SGTXT is not getting reflected in MSEG-SGTXT. Can someone enlighten me as to where / in which table the line item text

  • Oracle BI and Repository Creation Utility (11.1.1.6.0) install on solaris

    Hi I want to install Oracle Business Intelligence, v. 11.1.1.6.0 in solaris 10 OS. i found link [http://www.oracle.com/technetwork/middleware/bi-enterprise-edition/downloads/bi-downloads-1525270.html] for BI binary to download. Now my query is below-

  • Viewing jpeg type pictures from a usb drive

    I am wanting a 20"-22" TV that will allow viewing jpeg type pictures from a usb drive. What TV's will support this?