Warehouse report in Item group wise

Dear Experts,
In Warehouse report i need the breakup in item group wise.
Now Warehouse report show all item's and item's details. But now i need all group along with that group item details.
Ex:
Group 1
Item A - 50
Item B - 70
Item C - 120
Item N - 100
Group 2
Item AA - 50
Item BB - 70
Item CC - 120
Item NN - 100
Group 2
Item AA - 50
Item BB - 70
Item CC - 120
Item NN - 100
How to get this report. any solution
Thanks and Regards,
Chandru

Try the following query as you will not be able to manipulate or change the standard warehouse report to your requirements:
SELECT T2.[ItmsGrpNam], T0.[WhsCode], MAX(T0.[ItemCode]) AS [ItemCode], MAX(T1.[ItemName]) AS [Item Name], SUM(T0.[OnHand]) AS [OnHand] FROM OITW T0  INNER JOIN OITM T1 ON T0.ItemCode = T1.ItemCode INNER JOIN OITB T2 ON T1.ItmsGrpCod = T2.ItmsGrpCod GROUP BY T2.[ItmsGrpNam], T0.[WhsCode] ORDER BY T2.[ItmsGrpNam], T0.[WhsCode]
Kind regards
Peter

Similar Messages

  • Need RG23APART1 report through Item Group Wise

    Hi All..
    The scenario is In the XL reporter add RG23A PART 1 report is only date and Location wise but i need the report through ItemGroup wise so how can i do that...
    Thanks

    Closed my self

  • Warehouse vs. Item Group

    When is the best time to use Warehouse GL Determination against Item Group GL Det. and vice versa?
    Thanks,

    Joel,
    This is a very difficult situation to please any client.  One thing to understand is there is only way to this.  If the Client wants to monitor profitability by Item group, I mean track sales, cost, profits, expenses then Item group is the way to go.
    If this is the case then they will not be able to exclude missing, defective items from the Balance sheet.
    If we go with your existing plan of creating 4 variations of each warehouse i.e., Item group, it could become a tough task it the Item groups are going to be added regularly.  This can eventually become un-manageable.
    You could keep your G/L by Item group and have 3 Item groups for
    Warehouse1 - Defects
    Warehouse1 - Expired
    Warehouse1 - Expiring
    and whenever you mark an Item as defective, just create a new Item in the appropriate item group with the name Itemcode-D or Itemcode-E.  Do a goods issue of the original item and then do a goods receipt of this new Item you created.  This way you can have a deferentiation in stock of the same Item.
    If you think this would be tough to manage then you can go with your original idea of having 4 warehouses for each Item group.
    Best wishes
    Suda

  • Price list by item group wise

    Hi,
          Can i assign price list by items groups, pl tell me the how to assign  it.
    Rgds
    Sudhir Pawar

    Hi Sudhir
    According to me there is no default option is there to set as default in price list.
    What u have to do u have to link the price list for all bp's which price list which u have to make default.
    Busines partner --- payment terms - link the PL which  u want to use as default.
    Giri

  • Stock Aging report Whwise & IT group wise

    Hi All,
    I want query for stock aging report Warehouse wise and Itemgroup wise in 0-45, 46-90 and greater then 90 days with value,
    Thanks in advance.
    Thanks & regards,

    Hi,
    Check this...
    SELECT distinct T0.ITEMCODE, T1.itemName,T0.ONHAND as 'Total Qty', T1.ManBtchNum,T1.ManSerNum,
    CASE WHEN Datediff (day,T1.LastPurDat, Getdate ()) <45 THEN T0.ONHAND END '<45 Days (Qty)',
    CASE WHEN Datediff (day,T1.LastPurDat, Getdate ()) <45 THEN T0.ONHAND * T0.Avgprice END  '<45 Days (Value)',
    CASE WHEN Datediff (day,T1.LastPurDat, Getdate ())>45 AND Datediff (day,T1.LastPurDat, Getdate ()) <90 THEN T0.ONHAND END '<45 T0 90 Days (Qty)',
    CASE WHEN Datediff (day,T1.LastPurDat, Getdate ())>45 AND Datediff (day,T1.LastPurDat, Getdate ()) <90 THEN T0.ONHAND * T0.Avgprice END  '<45 T0 90 Days (Value)',
    CASE WHEN Datediff (day,T1.LastPurDat, Getdate ()) >90 THEN T0.ONHAND END '>90 Days (Qty)',
    CASE WHEN Datediff (day,T1.LastPurDat, Getdate ())>90 THEN T0.ONHAND * T0.Avgprice END  '>90 Days (Value)'
    FROM OITW T0 INNER JOIN OITM T1 ON T0.ITEMCODE = T1.ITEMCODE
    INNER JOIN OITB T2 ON T1.ITMSGRPCOD=T2.ITMSGRPCOD
    left join ibt1 t3 on t3.itemcode = t0.whscode
    WHERE T0.ONHAND >0 AND T0.WhsCode = '[%0]' AND T2.ItmsGrpNam ='[%1]'
    Thanks
    Sachin

  • Customer group wise sales report

    can somebody give me a clue as to how to take customer group wise sales report
    thanks

    HI,
    it will not get the sales report with customer group wise in standard SAP.
    in standard you will get the data for the following selection :
    a. Sales Office wise : MC-E
    b. Sales Organization wise : MC+2
    c. Material(Article) wise : MC+Q
    tell me one thing, whether u need the report customer group wise or customer account group wise.
    Regards,
    somu.

  • Profit center group wise balance sheet and trading account report req

    Hi.
    We are using Profit ceter accounting for one of our clients.its ECC 6.0 therefore New GL is activated. FSV is not configured.
    Now I want to get the reports - Profit center group wise balance sheet and trading a/c.
    Can anyone help me in this regard.
    Thanks in advance.
    Regards,
    Padmavathi

    Hi Padma
    the std reports S_PL0_***** serve the purpose... You can browse SAP easy access menu under FI
    you can input PC or a group of PC as additional selection criteria
    Ajay M

  • 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&lt;@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&lt;@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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.inqty&gt;0 and o1.Price &gt;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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.outqty&gt;0 and o1.Price &gt;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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.inqty&gt;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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.outqty&gt;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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.outqty&gt;0 and O1.Price&gt;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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.inqty&gt;0 and O1.Price&gt;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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.outqty&gt;0 and O1.Price&gt;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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.inqty&gt;0 and O1.Price&gt;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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.outqty&gt;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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.inqty&gt;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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.inqty&gt;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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.outqty&gt;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&lt;=@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&lt;=@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&lt;@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&lt;@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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.inqty&gt;0 and o1.Price &gt;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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.outqty&gt;0 and o1.Price &gt;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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.inqty&gt;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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.outqty&gt;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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.outqty&gt;0 and O1.Price&gt;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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.inqty&gt;0 and O1.Price&gt;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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.outqty&gt;0 and O1.Price&gt;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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.inqty&gt;0 and O1.Price&gt;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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.outqty&gt;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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.inqty&gt;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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.inqty&gt;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&gt;=@FromDate and O1.docdate&lt;=@ToDate and O1.outqty&gt;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&lt;=@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&lt;=@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

  • Group wise Budget.

    Hi,
    Our client wish to implement Group wise Budget and MIS report available on Group wise Budget. Example, under Salary Budget head 10 items are there. Instead of putting 10 items value individually in Budget they will put total value of salary in Budget i.e, group wise of salary budget. Is this group wise budget possible through Internal Order and how?
    Regards,
    Samrat
    Edited by: Samrat Roy on Feb 4, 2010 11:10 PM

    Hi Pradeep,
    In our business scenario as service industry there is only Cost Centre and Profit Center is available from SAP in Controlling. There is no internal order. At present only actual items are post both Cost Centre and Profit Centre. There is no planning both cost center and profit center. Our client wish to introduce Groupwise budget i.e, planning from cost side only. No revenue planning they are interested at present. This is the actual scenario. So there is a cost center group, under the Cost Center group individual cost center is availale. Under each of the Cost center multiple cost element may or may not be avallable according to actual entry post. Therefore under cost centrer 1 if 5 cost elements are available as A,B, C,D and E and total cost say Rs 100000(each cost element Rs 20000). My requirement is instead of putting 5 planning cost separately against each cost element A, B, C, D, and E in Plan cost column under same cost center 1  we want to put total planning cost say Rs 150000. Is it possible ? If possible kindly guide me.
    Thanks & Regards,
    Samrat

  • Item Group on Multiple WH

    Dear all,
    is it possible in SBO to maintain item group on multiple Warehouse. For example, I have Item 0100001 that has item group A in warehouse I and II. Each item group in each Warehouse has different account determination. so, I can show in Balance Sheet, value amount of group A in warehouse I and group A in warehouse II.
    Thanks for the help

    It is possible to set G/L's only Warehouse Wise, Item Group Wise or Item Wise.
    Even if the G/L codes are set, it is possible for the user to choose the G/L code in the Transaction screen of the Marketing documents through which you can achieve your required functionality.

  • Account Segmentation & GL By Item Group

    Hi,
         My Client has so many branches with them, so it is mandatory to configure and go with Segmentmentation. In all the branches they are doing same business and selling same items so item group is common for all.
         Their GL is Setted by Item Group Wise.
          But the item group is common for all.
          But my client want to see expense, revenue, assets based on group wise for each segment.
          But in our standard B1, account mapping in item group can be done with any one segment only. But they have to see CoA balance like that.
          Is there anyway to achieve this task????

    Hi,
    I can see them wanting this setup; I've seen it before. (I am assuming you are working on setting up the CoA and not modifying an existing CoA.)
    You will need a segment for item group and another for the branches. Keep in mind, the P&L and B/S reports can be run on segments, but not the Cash Flow and T/B (in 2007, not sure about 8.8).
    HTH,
    Heather

  • PO DETAILS ( WITH ITEM GROUP)

    Folks
    I have a requirement from my client on PO which includes Item Group wise segregation.
    Project - PO # - PO Date - Vendor Name - Due Date - Item Group(1) (in Rs) -  Item Group(2) (in Rs) -  Item Group(3) (in Rs) -
    Freight - Discount - Excise - Vat - Cst - Total of PO
    All the details should be Document Level & not line items.
    Request you to kindly help me on this.
    regards
    KARTHIK

    Rahul
    Yes absolutely .   The query should throw group wise value in a particular PO.
    Project - PO # - PO Date - Vendor Name - Due Date - Item Group(1) (in Rs) - Item Group(2) (in Rs) - Item Group(3) (in Rs) -
    PROJ1     1        11/7/11          XXX             12/7/11          5000                             2000                                 1000
    Freight - Discount - Excise - Vat - Cst - Total of PO
    100                           100        50             8250.00
    In this all the values should be doc level & not line items value.
    regards
    KARTHIK

  • GL Assignment at item group level

    Dear Gurus,
    As only one slot is given for every account in GL account determination but the other consultant of my team wants to assign different GL at warehouses level and item Group level. although i can only provide the same GL for both. Please advice the best solution.
    Regards

    HI
    You can assign the different G/L on the accounting tab of warehouse and item groups...
    but the accounts get affected based on the G/L account determination which you set....
    Is this clear to you?
    revert for any clarifications...

  • Copy Express Item Groups Transaction revenue Account not Found

    Currently using Copy Express.
    1.  Have successfully loaded COA
    2. Manually entered G/L account determinaition and tax codes
    3. Error below is occuring when trying to Copy Item Groups and Warehouses.  The items groups and Warehosues are failing.
    Transaction created by document was not found, 'Revenue account'.
    NOTE: the accounts determined for each item group in the source database all exist in the target database.
    Can any please assist in explaining why this is happening and how I could prevent this from occuring without having to mannually create warehosues and items?
    Thanks Very much
    Lisa

    Hi Lisa,
    I have a suggestion.
    The Revenue account in question may be problematic.                                                                               
    Can you try to change to another revenue account in your source db, and try to copy warehouse to target DB?                                                                               
    1.goto source db,and search for the specific warehouse and change the         
      revenue account to another account
    2.and copy warehouse to target db 
    Hope this will be helpful.
    Kind regards,
    Willy

  • Hide Particular Item Group from Selection Criteria of Sales Analysis Report

    Hello Experts,
    Is this possible to Hide Particular Item Group from Selection Criteria of Sales Analysis Report?
    I have one Item Group as 'Special Items'.
    Now, when I open  Item wise sales analysis report, I want to hide above mentioned group from selection criteria.
    Thanks in advance.
    Best Regards,
    Pankit Sheth

    Hi,
    1. Not possible to put validation for selection criteria windows.
    2. In standard, I don't think it is possible to hide only one item group.
    3. Alternatively don't give authorization to user for running sales reports. If still need create customized query and ask user run every month.
    Thanks & Regards,
    Nagarajan

Maybe you are looking for

  • Not showing icons in Cs5

    I am useing Photoshop CS5 as I use to use Photoshop7.When I had my psd files in folders I was able to see a thumbnail of the pic that was on the file.Seeing now I switched over to CS5 the only thing I see is the Photoshop icon and not the thumbnail o

  • Htc ONE m8  With it's front Speakers Makes it a Great Scanning Radio

    Are you wanting to tune in and Listen to your local Sheriff,  Police Fire or Just weather to either monitor or to Keep you & your family Safe well look no farther than the htc ONE m8  I'm listening on mine and it does a Excellent Job with it's Boom s

  • How can I use a file in Eclipse?

    Hi mates, I dnt know how I can use Eclipse to operate a file, like the sample input file. I try to set a file name in "Argument" tab and create a file in the project, but it 's not working. CHEERS, Elton

  • Sporadic failure of DNG conversion using Bridge

    For the past 2 years I have been happily using the Adobe DNG (stand-alone) software to convert the NEF files from my D200. I routinely do this at "ingestion" as recommended in an article by Bruce Fraser. I have never encountered a single problem with

  • Wred based on MPLS exp bits on 12000

    I want to use WRED with MQC on 12000 but there is no mpls/exp-bits statment on the "random-detect" command. I found this note at cisco documentation: Note: The legacy CLI also uses the precedence syntax for Multiprotocol Label Switching (MPLS) traffi