Stock Item Group problem

I came accross a problem as follows:
1. An Item Group called "SAMPLES" is set to Default Valuation Method to FIFO
2 A Stock Item called Hand Cream Sample is set to GROUP = Samples
3. I expected the Hand Cream Sample item to show FIFO under the Stock Data tab in the Item Master however it shows Moving Average valuation method.
Most of my Items show correctly the valuation method set in Item Groups but I have a few that do not follow this pattern. Any ideas how to correct this and why is this showing incorrectly?
Thanks
PS I use B1 2007version
Robert

Hi Istvan
I think you are right and there may be a problem here which I am trying to understand. The issue is as follows:
1. There are 3 places where you can set Default Valuation method
a. System Init/Company Details/Item Group Valuation method
b. In System/Setup/Stock Management/ Item Groups
c. In Item Master Data
It seem to me that b overwrites the a setting and, c ovewrites a and b
In other words one can set in Item Master Data different valuation method to any Defaults set in a or b. This does not sound quite correct to me since on should value stock consistently at whatever the Company policy may be.
The question is that once you have movement on a stock item and you want to change the valuation method, it cannot be changed (forever?). We would like to have ALL items valued at FIFO and now we have a mixture because we did not understand SAP b1
What do you think is the right solution to this issue
Your input is much valued on this topic
Thanks
Robert
PS To confuse matters ever further, I have a Stock Item that has movements (Invoice In) but it allows me to change the valuation method in the Stock Data tab. In all other items this option is grayed out.

Similar Messages

  • Sales and Closing Stock By Item Group

    Dear all,
    Can anybody give me modified query for the following code. I need Item Group wise sales & Stock.
    As of this query data values are not getting perfect,opening stock and  Closing stock values are not getting prefect.
    Some items are not getting,which item code is starting form 5%.
    *Start of the Query *
    select * from ( SELECT T0.Itemcode, min(T0.Dscription) as 'Item Description', W1.Whscode,
    (isnull((Select sum(isnull(inqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate<@FromDate and O1.transtype in (59,20,18,16,14,67,-2)),0) - isnull((Select sum(isnull(outqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate<@FromDate and O1.transtype in (21,19,60,15,67,-2,13)),0)) as [Opening Stock],
    (isnull((Select sum(isnull(inqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.inqty>0 and o1.Price >0 and O1.transtype in (20,18)),0))-(isnull((Select sum(isnull(outqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.outqty>0 and o1.Price >0 and O1.transtype in (19)),0)) as [Purchase Quantity],
    (isnull((Select sum(isnull(inqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.inqty>0 and o1.Price = 0 and O1.transtype in (20,18)),0))-(isnull((Select sum(isnull(outqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.outqty>0 and o1.Price = 0 and O1.transtype in (19)),0)) as [Purchase FOC Qty],
    ( isnull((Select sum(isnull(outqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.outqty>0 and O1.Price>0 and O1.transtype in (13,15)),0)) as [Sale Qty],
    (isnull((Select sum(isnull(inqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.inqty>0 and O1.Price>0 and O1.transtype in (14,16)),0))as [Return Qty],
    ( isnull((Select sum(isnull(outqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.outqty>0 and O1.Price>0 and O1.transtype in (13,15)),0))- (isnull((Select sum(isnull(inqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.inqty>0 and O1.Price>0 and O1.transtype in (14,16)),0))as [NetSale Qty],
    (isnull((Select sum(isnull(outqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.outqty>0 and O1.Price=0 and O1.transtype in (13,15)),0))-(isnull((Select sum(isnull(inqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.inqty>0 and O1.Price=0 and O1.transtype in (14,16)),0))as [FOC Quantity],
    (isnull((Select sum(isnull(inqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.inqty>0 and O1.transtype in (59)),0)) as [StockIN Quantity],
    (isnull((Select sum(isnull(outqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.outqty>0 and O1.transtype in (60)),0)) as [StockOUT Quantity],
    (isnull((Select sum(isnull(inqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate<=@ToDate and O1.transtype in (59,20,18,16,14,67,-2)),0) - isnull((Select sum(isnull(outqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate<=@ToDate and O1.transtype in (21,19,60,15,67,-2,13)),0)) as [Closing Stock]
    FROM OINM T0 INNER JOIN OITM T1 ON T0.ItemCode = T1.ItemCode INNER JOIN OITW T2 ON T1.ItemCode = T2.ItemCode INNER JOIN OITB B1 ON T1.ItmsGrpCod=B1.ItmsGrpCod INNER JOIN OWHS W1 ON T2.WhsCode = W1.WhsCode INNER JOIN OLCT C1 ON W1.Location=C1.Code and T0.ItemCode Like '5%' and W1.WhsCode not in ( 'WH-DEMO', 'WH-AHM-R','WH-MUM-R','WH-NDL-R')
    Group by T2.MinStock ,T1.itemcode, T0.Itemcode, W1.WhsCode, C1.Location) a
    End of the Query*

    Hi,
    Starting Query ****
    select * from ( SELECT T0.Itemcode, min(T0.Dscription) as 'Item Description', W1.Whscode,
    (isnull((Select sum(isnull(inqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate<@FromDate and O1.transtype in (59,20,18,16,14,67,-2)),0) - isnull((Select sum(isnull(outqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate<@FromDate and O1.transtype in (21,19,60,15,67,-2,13)),0)) as [Opening Stock],
    (isnull((Select sum(isnull(inqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.inqty>0 and o1.Price >0 and O1.transtype in (20,18)),0))-(isnull((Select sum(isnull(outqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.outqty>0 and o1.Price >0 and O1.transtype in (19)),0)) as [Purchase Quantity],
    (isnull((Select sum(isnull(inqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.inqty>0 and o1.Price = 0 and O1.transtype in (20,18)),0))-(isnull((Select sum(isnull(outqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.outqty>0 and o1.Price = 0 and O1.transtype in (19)),0)) as [Purchase FOC Qty],
    ( isnull((Select sum(isnull(outqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.outqty>0 and O1.Price>0 and O1.transtype in (13,15)),0)) as [Sale Qty],
    (isnull((Select sum(isnull(inqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.inqty>0 and O1.Price>0 and O1.transtype in (14,16)),0))as [Return Qty],
    ( isnull((Select sum(isnull(outqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.outqty>0 and O1.Price>0 and O1.transtype in (13,15)),0))- (isnull((Select sum(isnull(inqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.inqty>0 and O1.Price>0 and O1.transtype in (14,16)),0))as [NetSale Qty],
    (isnull((Select sum(isnull(outqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.outqty>0 and O1.Price=0 and O1.transtype in (13,15)),0))-(isnull((Select sum(isnull(inqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.inqty>0 and O1.Price=0 and O1.transtype in (14,16)),0))as [FOC Quantity],
    (isnull((Select sum(isnull(inqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.inqty>0 and O1.transtype in (59)),0)) as [StockIN Quantity],
    (isnull((Select sum(isnull(outqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.outqty>0 and O1.transtype in (60)),0)) as [StockOUT Quantity],
    (isnull((Select sum(isnull(inqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate<=@ToDate and O1.transtype in (59,20,18,16,14,67,-2)),0) - isnull((Select sum(isnull(outqty,0)) from OINM O1 where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode and O1.docdate<=@ToDate and O1.transtype in (21,19,60,15,67,-2,13)),0)) as [Closing Stock]
    FROM OINM T0 INNER JOIN OITM T1 ON T0.ItemCode = T1.ItemCode INNER JOIN OITW T2 ON T1.ItemCode = T2.ItemCode INNER JOIN OITB B1 ON T1.ItmsGrpCod=B1.ItmsGrpCod INNER JOIN OWHS W1 ON T2.WhsCode = W1.WhsCode INNER JOIN OLCT C1 ON W1.Location=C1.Code and T0.ItemCode Like '5%' and W1.WhsCode not in ( 'WH-DEMO', 'WH-AHM-R','WH-MUM-R','WH-NDL-R')
    Group by T2.MinStock ,T1.itemcode, T0.Itemcode, W1.WhsCode, C1.Location) a
    End Query ************
    This is correct and complete query i using for reporting
    Thanks & Regards,
    Rajeev

  • SBO - How to use two different Stock Account within the same Item Group

    Hi,
    I'm currently stuck within one of my implementation.
    I'm deploying the same solution worldwide which worked pretty well until now. All the items are connected to an item group, with a unique GL account, supposed to book at the same time the good receipt and the good issue (Balance-Sheet Account = 14xxxxx).
    My new unit is willing to use two different GL accounts when performing its stock entry (let say 14xxx10) and another GL account for the good issue, let say 14xxx20.
    Do you have any clue so i can please them and keep using at the same time the item group ?
    Thanking you in advance
    Stephane

    Hi,
    In fact, we use the GL account as the HQ Account (Reporting Account) while the "Export Code" will be used to store the local GL Account (greek account).
    As such, we can, somehow handle two different chart of accounts.
    In my reporting, i'm only using a single GL account for stock movements, while my greek counterparts want to handle two different accounts.
    Threfore, i have only two solution since there is normally a one to one relationship between a HQ account and a local account that are :
    1 - Duplicate the HQ accounts
    In that case, i do respect anytime the one to one relationship. I've got one HQ account for one local account. But how can i put this since i can only handle one single stock account.
    2 - I keep my single stock account like this but i won't be managing the possibility to get two different Export Codes.
    Regards
    Stephane

  • Authorisation to Item Groups field in Stock/Inventory Item master data

    Hi experts
    Our client has had recent difficulties when users have been amending the item groups against the stock item.  Is there a way to create an authorisation to enable the users to see the field but unable to amend.  I know this can be done through addons just not sure if this can be done with the Additional Authorisation Creator in the main program and if so what is the configuration.
    Any assistance greatly appreicated.
    Regards
    Lorna

    Hi Lorna,
    Try
    SELECT T1.[ItmsGrpNam] FROM OITM T0  INNER JOIN OITB T1 ON T0.ItmsGrpCod = T1.ItmsGrpCod WHERE T0.[ItmsGrpCod] =  T1.[ItmsGrpCod]    AND  T0.[ItemCode]  = $[$5.0.0]
    SELECT T1.[ItmsGrpNam] FROM OITM T0  INNER JOIN OITB T1 ON T0.ItmsGrpCod = T1.ItmsGrpCod WHERE T0.[ItmsGrpCod] =  T1.[ItmsGrpCod]    AND  T0.[ItemCode]  = $[$5.0.0]
    Just to make it appear correct I have written the SQL statment 2 time. Scroll horizanly to read the complete query statment
    Hope it help...
    BR
    Samir Gandhi

  • Query Problem- trying to group by Item Group

    Hi All
    I am creating a report which details the Item code, Item Description, In stock amount, Commited amount and the Price one particular price list.  I want this to be grouped by the Item Group.  The query below is the one I have created.  It works well until i add anything into the Group by section. 
    SELECT T1.[ItemCode],
    T1.[ItemName],
    T2.[OnHand],
    T2.[IsCommited],
    T0.[Price]
    FROM ITM1 T0  INNER JOIN
    OITM T1 ON T0.ItemCode = T1.ItemCode
    INNER JOIN OITW T2 ON T1.ItemCode = T2.ItemCode
    INNER JOIN OITB T3 ON T1.ItmsGrpCod = T3.ItmsGrpCod
    INNER JOIN OPLN T4 ON T0.PriceList = T4.ListNum
    WHERE T4.[ListName] = 'Selling Prices GBP'
    GROUP BY T3.[ItmsGrpNam]
    I receive the following error when exectued:
    Column 'OITM.ItemCode' is invalid in the select list because it is not contained in either an aggregate function or the GOUP BY clause
    Can anyone help?
    Thanks in advance
    Gail
    Edited by: Gail Patterson on Apr 3, 2008 1:32 PM

    Hi,
    Can u use this query
    SELECT T3.ItmsGrpNam, T1.ItemCode, T1.ItemName, T2.OnHand, T2.IsCommited, T4.ListName, T0.Price
    FROM ITM1 T0 INNER JOIN
    OITM T1 ON T0.ItemCode = T1.ItemCode
    INNER JOIN OITW T2 ON T1.ItemCode = T2.ItemCode
    INNER JOIN OITB T3 ON T1.ItmsGrpCod = T3.ItmsGrpCod
    INNER JOIN OPLN T4 ON T0.PriceList = T4.ListNum
    WHERE T4.ListName = 'Selling Prices GBP'
    It can help u.
    Thanks
    SAGAR

  • Item Group changes

    Hi All.
    A client has each stock item belonging to a certain group.
    if he changes the revenue account, or expense account...the change should filter through to the items belonging to that group, right?
    however he said that some does not..could there be a reason for this?

    Hi,
    Jerusha Lala 
    If account is changing and will effects the item group then Use G/L determination by Item Level wise.
    It will solve your problem
    Ashish Gupte

  • Alternate Item Group functionality in BOM

    Hi PP Gurus,
    I was looking into the Alternate Item Group functionality in BOM and found it interesting for my business requirement.\
    But I am facing one problem as below:
    I have 3 components for Eg. A1, A2, A3 in my header material 'A'. All the three component materials are same but quailty of the 3 is different and also the standard price.
    My requirement is whenever I am creating Production material for header material 'TEST_Header_Material, the system should look into A3 first (Cheapest), if not available then A2 (Cheaper) and if not then A 1(expensove of all the three).
    For base quantity for A = 1EA, I have entered 1 EA for A1, A2, A3 in BOM. I have stock of A1=9, A2 = 6 and A3 = 2.
    When I am creating Production Order for A = 10 EA, ,yrequirement is that the system should consider A3 first, then A2 and then A1 based upon the prority and hence should withdraw A3=2, A2=6 and A1=2 for meeting the quantity for finish product A in Production Order. But actuall the system is considering A3 but confirming it as 0, then looking into A2 again confirming it as zero and then looking into A1 and  again confirming it as 0. And thus giving Missing Part list though I have sufficient quantity to cover the requirement.
    That means system is only considering total quanitty.
    Can you please advice?
    Thank You.
    Rahul.

    Dear Rahul,
    Priority:In this field, you define the priority of the item within an alternative item group. This determines the priority for planned
    withdrawal of items. Two items are assigned to an alternative item group (A1) with the following values for priority:
    Item 0060 Value for priority: 02
    Item 0065 Value for priority: 01
    The system reads item 0065 first.
    Also check these links,
    concept of alternative items
    Re: Alternative item in BOM
    Re: NOTE 149332 : Error for material components with usage probability 0
    Re: Discontinuation&Production Order
    Regards
    Mangalraj.S

  • Stock Item on/off

    Hi there,
    i have a little problem, perhaps anyone has an idea. While i was out for holidays, a workmate created a new item (non Stock Item) and book a transaction (AP Invoice). So the created item is a stock item. Is there any chance to change it ? Deleting and recreating is not possible afaik.
    regards Steffen

    Hi Steffen,
    it is not possible to change the stock item status of an item associated with transactions.
    You could assign the particular item code to a different item group (e.g. do-not-use-items) & put it on hold indefinitely. You can then adjust the choose-from lists such that the item will no longer appear.
    All the best,
    Kerstin

  • Stock Item Price !!

    Hello Experts,
    I have got a serious problem dealing with one matter.
    tell me if somebody can help.
    Item Group Valuation Method  : Standard
    G/L Set By : Item Groups
    Now, my system has 3 year old data (prices) which i would like to change. I can change the standard cost but it is not letting me change the Stock Data (Item Price) and posting incorrect G/L Entries.
    I know it is not letting me change because there are some trasactions associated with that item but tell me the right way to change it so that there should not be any impact on database.
    Regards,

    Hi,
    I have applied the same method and now it is posting correct but two problems :-
    We have production unit but we dont use BOM and production module of SAP. For an Item Negative entry is allowed which leaded to massive -tive inventory.
    1. It is not letting me change the price until inventory is negative.
    2. tell me the way to make it Zero without any impact on the system.
    I know this is not recommended practice to follow but we will be implementing production by this year.
    Kindly advise on above two Questions
    Thanks

  • Item Category N (non-stock item) in BOM creation - Preq Generation

    Hi All
    I have a material component that is planned in APO and not in ECC6. We would like to keep the one BOM for the finished good. Problem is that when we perform the backflush in ECC6, the system wants to backflush the material and causes errors due to missing stock.
    So I assigned the material as a non stock item in the BOM but the system will auto generate  a purchase requisitions for Non stock bom components (item category N) when the process order is created. It is possible to turn off the auto creation of the purchase req for non stock bom components? 
    I have tried the following:
    - Explosion type in item data, created new key with 'Switch off planning' indicator set in system configuration
    - created new 'Z' item category with inventory management de-selected
    Both approaches causes system error: Puchase data of material in not maintained
    I also tried leaving as a stock item with the bulk material indicator selected in the item data. This does not work as the cif will then exclude the component when data is transferred to APO
    Funny enough, the system does not generate a purchase req for non stock bom items when using Repetitive Manufacturing. Any help will be greatly appreciated
    kind regards
    Grant brockelbank

    Hello Vivek
    Thank you for your response
    The item is a non stock item. I do not want this item to be backflushed at all. This can be achieved using the 'N' non stock item category but the problem is that the system will attempt to generate a purchase requisition when the process order is created.
    I do not want the system to generate a purchase req in ECC6 as this item is a planning material that is planned in APO (used for medium to long term planning in a simulation version). We are hoping to use the one Bom for ECC6 and APO planning. The generation of the purchase reqs is a bit of a waste as we will never convert them and there is potential to cause issues for purchasing.
    Any other thoughts?
    Thanks again for your help
    kind regards
    Grant

  • MIGO Print label WEE1 for non stock items from GR for PO

    Hi,
    I added logic to print new label into printing program MZ07DETI which is printing labels for stock items. My label is for non stock items. The problem is that for non stock items printing process is not triggered. I created PO with Account Assign. Category F, P or K no material number and no storage location. For this type of PO no print possible during GR posting. Is any set up available in IMG to make it work. I appreciate any response.

    Hi,
    Please check up if there is any default value at the plant level;in case of such default,the system will post to the GL Account defaulted,not with standing the "standard item category".Better checkup if any cost center /order has been assigned.
    The GL item is defaulted thro'the item category.If both the goods and services have been defaulted to the same GL  Account,then not with standing the type [ie] whether goods or services,the system will post tot he same GL Acct.
    Hope this helps.
    Regards.
    Ramesh

  • Stacked and standard item groups

    Hi,
    Can anyone give a clue if the following problem can be solved?
    I have a table with many columns which I want to display on a single form with multiple tab-canvases. And on each tab-canvas I want to use item groups (two side-by side!).
    I managed to generate this only partly by using stacked item groups for each tab-canvas and item groups within these stacked item groups. But the item groups are all placed beneath each other! I can not find a way to control the layout-generation. It looks like the forms-generator does not use the tabulation preferences.
    I am using Designer 6 (6.0.3.10) and Forms 6i (6.0.8.10).
    Thanks.
    null

    It is not possible to get Service Item w/o delivery in to Invoice along with the the delivery item..unless the Service item is configured as item relevant to delivery.

  • What  is use of  Item Category N(non-stock item) in BOM creation

    Dear Experts,
                       What  is use of  Item Category N(non-stock item) in BOM creation ?
    regards
    rajakarthik

    Hi,
    This item category is used for components which are not kept in stock if they are used in a bill of material (BOM). Non-stock items can be entered in the BOM with or without a master record. To enter a non-stock item without a master record, you must simply enter a descriptive text.
    When you use this item category, the system automatically creates a purchase requisition for these components,
    Special functions
    The following functions are supported for non-stock items
    • You maintain purchasing data for non-stock items in the bill of material.
    • In the planning run, the system generates purchase requisitions
    instead of dependent requirements for components that are procured directly. When you configure your R/3 System for MRP, you can define whether direct procurement is triggered by the planning run or by production order management.
    • Product costing processes take valuation data from the BOM item.
    The system determines the release strategy on the basis of the price data you enter. The material group is required to produce a purchase requisition.
    Pavan

  • HOW TO ADD / EDIT AN ITEM GROUP

    I am in the Item Master Data window and am entering a new Item Number.  I want to associate it with a new Item Group from the pull down menu but it will not allow me to add to this list.  How can I add a new Item Group?  Also, how can I edit a current Item Group title to change it to another name?

    Hi
    To solve your issues ,
    Go to system administration >setup>Inventory-->Item group .
    If you need to Add --Press Ctrl A
    If you want to edit -- find the item group -- and edit it .
    This should solve your problem
    Thank you
    Bishal

  • Non stock item requisition from the order

    Dear all,
    Material is not available in stores,i have enter the item category as N in the maintenance order ,system created the Purchase requisition & reservation of same material which will be further converted to Purchase order.
    When material goods inward from the store that material automatically issued against that reservation,
    is it standerd process of SAP?
    And now when i am checking in IW13, against same reservation system shows 'no material withdrawn'
    And in the order withdrawn quantity & final issue tick mark is activated.
    what may the problem?

    Dear Shahanawaz,
    When you assign the item category "N" to component in component tab view, Normally PR is generated & When you assign the item category "L" to component in component tab view, Normally Reservation is genereted.
    Against reservation we directly issue the material as it is already available in Store. But for Non stock items we need to convert PR to PO. After receipt of the material & Making GR that material directly issued to order & not going to Store. This is standard process. Also you can view Material availability status indicator as the process progress as PR to PO conversion & As the GR is made.
    Regards
    Makarand Gurjar

Maybe you are looking for

  • Formula Variable with Replacement Path - drillup ref.char and still working

    Hi all, I have a requirement, where formula variable (with replacement path) shouldn't work when I remove the reference characteristic from the rows. But this is not the case at the moment I have 'Brand' and 'Material' in the rows and there is 'Mater

  • E60 Mail for Exchange Calendar Sync Issues

    Hello all, I'm able to sync my email, calendar and my contacts. However I've noticed that some of my calendar items have not been sync'd. For instance, I might have A, B, C, D as appointments in the same day and in that order. I'll only have appointm

  • Internal LDAP Session Variable Population

    All, I can find plenty of documentation on how to populate a session varible from an external LDAP server. How do you populate a session variable from the internal LDAP server? I can't find documentation on this anywhere. Thanks in Advance, Josh

  • SAP CRM OR SuccessFactors HCM

    Hi Guys, I am bit confuse between SAP CRM or SuccessFactors HCM, which should i go with ? Done my Btech (CSE)+MBA(Marketing with Operations) I need your expert suggestion Thanks

  • Capturing audio from soundcard!

    Can anybody help me? When i compile this code no problems appears, however when i execute the program this is shown to: Microsoft Windows XP [Version 5.1.2600] (C) Copyright 1985-2001 Microsoft Corp. c:\Sun\SDK\jdk\bin>java JCapture javax.media.NotCo