Calmonth wise Inventory report issue

Hello Gurus,
i have a stock report that has Month selection and it shows Opening.... Issues..... Receipts... Stock transits... and Closing
so if i give 05.2009, then for Opening will be closing of 04.2009 and rest KFs for 05.2009.
I have not directly restricted calmonth , what i did is  Opening stock is month variable - 1 (04.2009 here)
and rest Kf is = month variable (05.2009 here )
now wen i drill to calmonth in report , table shows 2 months
but it should show only 05.2009 and all KFs under it.
Right now its the showing the following output
Calmonth     Plant     Material Batch     Opening     Receipts  Issue  Stock in transit  Closing
04.2009     1001     20277     0000     7,800 PC                    
               --------0201     1 PC                    
               --------0401     6,428 PC                    
05.2009     1001     20277     0000          17 PC     17 PC     7,800 PC           7,800 PC
               --------0201          16 PC     16 PC     1 PC                    1 PC
               --------0401          16 PC     16 PC     6,428 PC          6,428 PC
Thanks and regards
Sonal....

As your text says, you have not directly restricted by calmonth but you put the offset -1.
When you put offset that means you are accssing numbers for month 04.2009. This report looks fine until you dont have calmonth in the display. The moment you put that into display, your numbers will start splitting because you dont have any actual opening stock for 05.2009.
Basically you can not generate the look you wanted with this report.
I can suggest you something.
Ask user if they can accept the report which runs across 12 months.
Create 12 different elements in the structure in ROW
Selection1
Selection2
Selection3
Selection12
Restrict the selection1 by selected month and keep putting offset as +1, +2 till +11 for selection 12.
Now you have 2 structures in the report. Use cell reference to refer the closing stock of selection1 as opening stock of selection2. do the same thing for all other selections.
The only disadvantage is, they can not remove the structure out of the report, otherwise report will not work.
To make this report more dynamic, you can include the text variable for all the selection to display the actual month in the text.
- Danny

Similar Messages

  • DAY WISE INVENTORY REPORT

    Hi
    In which txn we can see the inventory report day wise.
    ( we know we can monthy wise inventory report in MC.5 )

    Hi Raj,
    i don't think we have Std report for day wise inventory (not sure)
    u have to go for Z-development
    anyway's just wait for experts replies
    Regards
    kumar

  • Material wise reciept and Issue report with Opening and Closing Stock

    Hi
    I need a report,Material wise Receipt and issue with Opening and Closing stock.Is there any standard report available in SAP ?
    Or we have to go for Customised Report.
    Please reply

    Hi,
    MB5B gives total receipts - if i click on the receipts i can view the multiple material documents - BUT is there any way to drill down the reciepts or view the breakup of the receipts on the same screen OR is there any other report for this.
    Regards,
    Laxmi

  • Authorization Issue in Inventory Reports

    Hi Experts,
    My clinet is using SAP B1 8.8 PL11 and we are facing issue in inventory report, we have set proper authorization for the user, but when that user try to open any inventory report, it allow to select paratmeters for the report but when he click on ok button to generate reports system throw erro YOU are not permitted to performed this Action.
    We have given full authorization to for all inventory reports.
    Pls. tell me if i missed something in general authorization.
    Regards
    Kamlesh Vagal

    Hi Kamlesh...........
    One Module is Report where Inventory reports are there.
    think your have given authorization to this module, But another Inventory module is there
    where Invetory reports are there. I guess you have not given the permission for this Inventory Reports.
    Give Authorizations to both modules and then see the effect.
    Regards,
    Rahul

  • Tables req to get date wise stock report

    Hi
    Pls advise, what are the tables req to get date wise stock report??? i don't want any t codes... i have to do with age analysis ,??
    Anyone has answer? pls provide it.
    Edited by: UJ on Mar 3, 2010 8:54 AM

    You can take below details which help you to get the exact things..
    *-- Tables delcaraion
    TABLES : mkpf,   " Header: Material Document
                  mseg,   " Document Segment: Material
                 mara,   " General Material Data
                 makt.   " Material Descriptions
    *-- Types declaration
    TYPES: BEGIN OF ty_mkpf,
            mblnr TYPE mblnr, " Number of Material Document
            mjahr TYPE mjahr, " Material Document Year
            blart TYPE blart, " Document type
            budat TYPE budat, " posting date
           END OF ty_mkpf.
    TYPES: BEGIN OF ty_mseg,
            mblnr TYPE mseg-mblnr, " Number of Material Document
            mjahr TYPE mseg-mjahr, " Material Document Year
            zeile TYPE mseg-zeile, " Item in Material Document
            matnr TYPE mseg-matnr, " Material Number
            bwart TYPE mseg-bwart, " Movement Type (Inventory Management)
            dmbtr TYPE mseg-dmbtr, " Amount in Local Currency
            menge TYPE mseg-menge, " Quantity
            lgort TYPE mseg-lgort, " Storage Location
            pbamg TYPE mseg-pbamg, " Quantity
            werks TYPE mseg-werks, " Plant
            ummat TYPE mseg-ummat, " Receiving/Issuing Material
            umwrk TYPE mseg-umwrk, " Receiving/Issuing Plant
            umlgo TYPE mseg-umlgo, " Receiving/Issuing Storage Location
           END OF ty_mseg.
    Further if you want you can play with Movement types.

  • Inventory Report by Query

    Dear All,
                  I Need  inventory report showing the item code and item description and a UDF. as under
    I need to have selection criteria of FROM DATE and TO DATE, and in the report in Row wise it needs to show me the
    Following Details of Items.
    1) Opening Balances    of (From Date)
    2) Received Quantity     In the Period of (From Date and To Date)
    3) Issue Quantity           In the Period of (From Date and To Date)
    4) FInal Stock                of (To Date)

    Saludos 
    creo que esto te puede servir
    Declare @FromDate Datetime
    Declare @ToDate Datetime
    Declare @Whse nvarchar(10)
    Set @FromDate = (Select min(S0.Docdate) from dbo.OINM S0 where S0.Docdate >='[%0]')
    Set @ToDate = (Select max(S1.Docdate) from dbo.OINM s1 where S1.Docdate <='[%1]')
    Set @Whse = (Select Max(s2.Warehouse) from dbo.OINM S2 Where S2.Warehouse = '[%2]')
    Select
    @Whse as 'Warehouse',
    a.Itemcode,
    max(a.Dscription) as ItemName,
    sum(a.OpeningBalance) as OpeningBalance,
    sum(a.INq)  as 'IN',
    sum(a.OUT) as OUT,
    ((sum(a.OpeningBalance) + sum(a.INq)) - Sum(a.OUT)) as Closing
    ,(Select  i.InvntryUom from OITM i where i.ItemCode=a.Itemcode) as UOM
    from(
    Select
    N1.Warehouse,
    N1.Itemcode,
    N1.Dscription,
    (sum(N1.inqty)-sum(n1.outqty)) as OpeningBalance,
    0 as INq,
    0 as OUT
    From dbo.OINM N1
    Where
    N1.DocDate < @FromDate
    and N1.Warehouse = @Whse
    Group By
    N1.Warehouse,N1.ItemCode,N1.Dscription
    Union All
    select
    N1.Warehouse,
    N1.Itemcode,
    N1.Dscription,
    0 as OpeningBalance,
    sum(N1.inqty) ,
    0 as OUT
    From dbo.OINM N1
    Where
    N1.DocDate >= @FromDate and N1.DocDate <= @ToDate and
    N1.Inqty >0
    and N1.Warehouse = @Whse
    Group By
    N1.Warehouse,N1.ItemCode,N1.Dscription
    Union All
    select
    N1.Warehouse,
    N1.Itemcode,
    N1.Dscription,
    0 as OpeningBalance,
    0 ,
    sum(N1.outqty) as OUT
    From dbo.OINM N1
    Where
    N1.DocDate >= @FromDate and N1.DocDate <=@ToDate and
    N1.OutQty > 0
    and N1.Warehouse = @Whse
    Group By
    N1.Warehouse,N1.ItemCode,N1.Dscription) a, dbo.OITM I1
    where
    a.ItemCode=I1.ItemCode
    Group By
    a.Itemcode
    Having sum(a.OpeningBalance) + sum(a.INq) + sum(a.OUT) > 0
    Order By a.Itemcode

  • Vendor wise payment report

    Dear Experts,
    I need to have a report that shows all the details of vendor wise payment reports is there any specific transaction codes to resolve this issue
    Regards,
    Ramakrishnan. S

    Hi
    The simplest I Could think of is FBL1N itself with cleared Items. You can always subtotal on Vendor No and Payment Document type. There are other std reports like S_ALR_87012085, S_P99_41000099. It also depends on what kind of information you want from the payment report
    Regards
    Sanil Bhandari

  • Inventory Report For Special Stock (Project Stock)

    Dear Sir,
    We are in Make -To - Order scenario and procure the material against  the WBS element . For getting the Inventory List , we use MBBS tcode but it has following limitation :
      a) It give the Stock Status as on date basis . While we need Stock Inventory on a cut off date , say on
          31/Jan/2007 .
      b) We are not able to get the Inventory Report , Material Group wise
    I request to kindly guide me , as how to take the Inventory Report for Project Stock .
    Regards
    B Mittal

    Hi Shailesh,
    Is there any way we can include some extra fields into this MC.9 report - i tried but could not find anything.  Can you please help.
    Regards,
    Laxmi

  • Inventory report with the last transaction details of each material

    Hi,
    is there any standard inventory report in SAP which gives us  the last transaction details of each
    Material,along with last procurement qty, value, date and last issue
    details of Qty, Value & date.
    Thansk in advance.

    Hi
    try following t-code
    MB5B u2013 Stock on Posting Date
    or
    2   s_p00_07000139 u2013 Stock Card and Inventory Material Report
    Regards
    Kailas Ugale

  • Storage Location wise Inventory( Qty+Value) as on a given date

    Hi friends
    Is there any report which gives the Storage Location wise Inventory( qty as well as value)? I have tried MB5B but when i select valuated stock option, I get a msg tht Storage location will be reset. So is there any other report in MM which I can refer to. Thxs in advance.
    Cheers
    Hrishi

    Hi
    Thxs for the reply. But T.Code MC.9 shows values for a particular month and not on a particular date.
    Cheers
    Hrishi

  • Profit Centre wise Stock Report

    Hi folks!!
    Is there any report available, through which we can retrive profit centre wise stock report.
    Best regards

    Hi
    You cannot check profit centre wise inventory (of materials) directly. But you can get profit center wise inventory GL accounts data in FS10n transaction. Choose dynamic selection options - and input profit center. It will show Inventory GL accounts balance period wise.
    You can check MARC table - and find the materials with concerned profit center. Then stock value of those materials in MC.9/MB5b transaction.
    Thanks

  • Period wise stock report

    Hi,
    I want period wise Stock Report like MB52.
    I want Report Like these
    In these report i want Urestrected Stock,Transist Stock,Blocked Stock,Return Stock with Values.
    If any standard T code is there in sap plz give me

    Hi,
    As per your requirement :
    It is better to go for a z-report. Ask your ABAPER to create the same as per your requirement.
    Otherwise you can fulfill your requirement with the help of several tcodes like MB52, MC.9, MB5B, MMBE etc.
    Hope this will resolve your issue.
    T & R,
    Brijesh

  • Region wise Sales Report / Sales Analysis

    Hi,
             I have a requirement of Region wise sales report. I have searched in the forum and found that I could acheive it through SE16-->VBRK-->REGIO field . I have tried executing the same, but the problem is when ever i am trying to pull up the sales for a particular region the system is giving an invoice number. But when I go to that particular invoice and see the PAYER , the PAYER is in the different region.
             Please let me know which region the system considers at the table level. I mean to ask which region the system considers for a particular transaction.
    Thankyou,
    Rakesh Tummala.

    Hello Rakesh,
    I am facing a similar issue that you are facing.  Yes, there is a region populated on the billing document in table VBRK.  However, depending on how your order entry is configured, the region listed in the billing document isn't necessarily the region the materials were shipped to.  To fine tune your requirement, are you looking for a report where the ship-to address is in a specific region or where the payer or sold-to address is in a specific region?
    If it's the ship-to address in a specific region, you'll need to develop a table join query in SQ01.  Join the tables VBRK --> VBPA --> ADRC.  VBRK is the billing document header table.  VBPA is the partner table where SH (ship-to partner) can be determined and it gives you an address code.  ADRC is the Business Address Services table that reads the address code and provides the address.  In the next step, make sure ADRC-REGION is a selection field so that you can specify the region.  Then, run the query, ensure VBRK-NETWR is an available field so that you can calculate the net value of billing documents for the specified region.
    If it's the payer or sold-to address in a specific region, this is easier since it's master data and not transaction-specific data (remember, your customer service group could be manually changing the ship-to location when creating a sales order, which is why you would need to follow the aforementioned steps).  You can do a quick search for accounts within a specified region then obtain the information in VBRK for the specified payers.
    I hope this information helps you, please provide questions if you need further clarification.

  • Prime Infrastructure 2.1 Client Statistic Report Issues

    Hello Community,
    I hope you can help with a couple of issues I am seeing on Prime Infrastructure 2.1, running an evaluation 60 day license.
    My PI 2.1 build is currently managing a WLC 5508 running 7.4.121.0, which has been added successfully. No configuration changes were applied to the WLCs, other than SNMP community. No AVC or medianet configuration is applied.
    When looking in the 'Operate>Client and Users' dashboard; I can see connected clients and if I select one of them, I can see further details like session, security and client statistics (showing traffic and 802.11 metrics). These are the table views that show current values, however, further down I see graphs but they do not contain any information for RSSI, SNR or traffic sent & received (packets or bytes).
    Question: Should I see this information under an evaluation license and if so, what could be stopping it?
    Also, when I run the reports 'Report>Report Launch Pad' and select 'Client>Client Traffic' or 'Client>Client Throughput' the resulting report contains 0 bps, when I select 'Report By' AP by Floor Area. I have created a single floor area and placed three access points into it.
    Out of interest if I do a report of the same type using 'Report By' All or AP by Controller, I do see traffic graphs for 3 out of 333 access points. Just not the access points that are in my floor area. Also the amount of traffic utilization is tiny (less than a kbps) for a WLC with 800 users.
    For a 'Client>Client Count' report using AP by Floor Area, I do see the client numbers connected to the WLC/APs in my configured floor area.
    Question: Should I see reports for client traffic and throughput under an evaluation license for floor areas and if so, what could be stopping it?
    I have checked the background task and the 'Client Statistics' task is enabled and run time is being updated.
    Kind regards,
    Ian

    Hi,
    here is an update:
    There are more than one Report you need to start to get data for Device, FAN, Power Supply, Module - look at these reports:
    Report > Report Launch Pad > Device > Inventory
    Report > Report Lauch Pad > Device > Wired Detailed Device Inventory
    Report > Report Lauch Pad > Device > Wired Module Detail > Wired Module Detail Report Details
    SFPs and GBICs cannot be reported til now - there are working on it.
    br,
    chris

  • -ve values in inventory report

    Hi Experts,
    I have inventory report, this report shows total stock, in this report some materials are showing '-ve' values,but in cube total issue stock and total received stock both are same, that means this inventory report should show '0' value.
    for example: in cube total issues stock: 13.60, total received stock: 13.60. That means total stock is = 0 (13.60-13.60), but in report it is showing -13.60.
    I am not understanding what is the problem,
    Pl help to do this,
    good answer will be appriciated.
    thanks in advance,
    Venkat

    Hi Venkat,
    The calculation's of Inventory total stock is not as simple as we understand them. To calculate total stock it consider different Movement type's, reversal entries, blocked stock etc. as well into consideration.
    There is no -ve stock and there can be no as well, but still u r getting that (i also got that ) then this is how u can analyze at various points where exactly the problem is.
    1. Try to run some standard report for total stock (based on inventory Cube 0IC_C03 i guess this is u usign probably). Check the stock value for 1 or two particular Material and cross check the stock of same material in your R/3 system through some tr MMBE.
    2. If standard report gives u rite result then probably some logic problem in ur report.
    3. Apart from that the main problem of this situation is data loading issue.
    Please follow proper inventory data loading steps. If not done step by step u will end up with wrong data.
    Hope these steps will help you out in tracking the situation.
    Thanks
    Dipika Tyagi

Maybe you are looking for

  • Dúvidas XML 2.0 - Dois ECCs

    Estou em um cliente com o seguinte landscacpe: SAP_ECC_1 <-->                                 GRC/PI (7.0) <--> SEFAZ SAP_ECC_2 <-->              Sendo que tenho dois ECCs e apenas uma máquina GRC/PI. Considerações: Para o SAP_ECC_1 foram aplicadas t

  • Help require with installing Adobe Acrobat onto my Macbook Pro Retina.

    Help require with installing Adobe Acrobat onto my Macbook Pro Retina. I have successfully installed all of my creative cloud apps with the exception being acrobat. I cannot print from Indesign to PDF. I have unistalled, reinstalled and still no Adob

  • FI- CA -  Problems with transaction FPINTM1 - Interest run

    I have 2 doubts with this transaction. The user has run this transaction with the option "all items" in Interest Parameters so this may cause several troubles for the Business partners. Question 1:  How can I reverse the interest run with fpintm1? Qu

  • Need urgent help ! on skype call monitoring

    dear friends , I need your urgent help! is there any way that some one can monitor my skype call , that means some other people can listen what i am talking and what i am chating ...........please help me !

  • Workflow Does not Start If Created by Another Workflow

    Hi, Hope someone can help me here. I am using SharePoint 2013 Server and have created two workflows running on two separate lists (workflow 1 runs on list 1 and workflow 2 runs on list 2). Workflow 1 creates an item in List 2. The workflow on list 2