Date wise reports

hi gurus,
Is it possible to see date wise stock of a material? I mean is it
possible to have a material ledger kind of thing in SAP.
thanks in advance

Dear Lakshmi reddy,
Goto the T.code:MB5B - Stocks for Posting date
It show the report FROM date to TO date i.e., for perticular month, year
If u want the date wise stock i.e., within the month 1,2,3,.......31
We have to go development report(user exit).
U approch ur ABAPer and explain ur requirement indetail to resolve the issue.
With regards,
B.Ravindranath

Similar Messages

  • Delivery Date-Wise Report

    Dear all
    Can I have a Delivery Date wise report for Purchase Order.
    (T.Code) and what the paramenters that I have to input.
    Manoj

    Hi
    You can get it in the ME series 2L,2M ,2N etc by giving the delivery date range but the delivery dates will not be displayed in the report. To see the PO wise delievry date see the table EKET.
    DBehera

  • GL Account balance report - Date wise report reqd(Eg: 05.03.08 to 20.03.08)

    Dear Friends,
    This is with regard to GL account wise balance/trial balance report based on dates (From...To format).
    We have tried all standard GL reports especially account balances and trial balance reports and all reports are showing period wise reports eventhough we put posting dates in the dynamic selection screen.
    We also checked in SAP Notes and Expert Forum and none of the details are matching with our requirement.
    As we are in production client (in ECC 6.0 version) and doing year end procedure, it would be helpful if you could let me know whether there is any transaction code/report/program available in SAP to meet the
    above requirement.
    Regards,
    Dwarak.

    Hi Dwarak,
    All reports balance report are based on posting period. This information is stored in a total table by posting period. These reports are not looking to the posting documents.
    When you have BW or special ledger you can create a table with day totals
    Paul

  • LAST GOODS MOVEMENT DATE wise report

    Hi MM Experts
    Is there any report through which we can find LAST GOODS MOVEMENT DATE ( goods receipt , issue date ).
    i have tried MC.2 but in this report material , plant and sloc description is coming , i want code so that we can understand easily.
    regards
    anubhav

    Hi,
    To get the plant, material code with description in MC.2 transaction.
    Please following below steps:
    on output screen >>>
    settings >> Characteriastics display >>> select key and description or only Key.
    Regards,
    Shailesh Mackwan

  • Material extended-date wise report.

    We are extending QM view for some of the materials after a material is created (or) extended to a plant.
    There is a communication gap in intimating QM person regarding material created/extended details.
    Hence, thro' table MARA, QM core team member find creation of new materials, datewise.
    But, they are unable to find extension of existing materials to other plants, datewise.
    Is there any standard reports available for finding out the same
    (or)
    Is it there in any of the standard tables.
    Please help.
    Regards,
    Siva

    hello,
    i am trying also to run a report that shows me if the same material that is in different plants was created or extended.i can run a report that shows who created, the date and when it was changed but i can't see if that change was a create or an extend. does anybody know? appreciate any help.
    Thanks,

  • Date Wise Report With various Users in Column Output

    Hi All,
    Im Using Oracle 10g Release 2.
    i Have a Table Transaction_Details as Like Below
    Date Uploaded Pending UserName
    14/02/2012 50 25 aa
    14/02/2012 20 0 aa
    14/02/2012 110 20 bb
    14/02/2012 100 30 bb
    14/02/2012 150 25 cc
    15/02/2012 75 20 aa
    15/02/2012 110 40 bb
    16/02/2012 100 45 cc
    16/02/2012 150 25 bb
    i Want the Output Result as,
    Date Uploaded    Pending      User Uploaded     Pending      User Uploaded     Pending      User
    14/02/2012 70 25 aa 210 50 bb 150 25 cc
    15/02/2012 75 20 aa 110 40 bb
    16/02/2012 150 25 bb 100 45 cc
    But,
    I can Able to Generate Output using Group By function,
    14/02/2012 70 25 aa
    14/02/2012 210 50 bb
    14/02/2012 150 25 cc
    Kindly Share Ur Idea To Do This.
    Thanks In Advance., Im Trying to get outout through a function,
    Is this Possible in Sql or Plsql.

    Looks like you want something like this...
    SQL> ed
    Wrote file afiedt.buf
      1  with t as (select to_date('14/02/2012','DD/MM/YYYY') as dt, 50 as up, 25 as pe, 'aa' as usr from dual union all
      2             select to_date('14/02/2012','DD/MM/YYYY'), 20, 0, 'aa' from dual union all
      3             select to_date('14/02/2012','DD/MM/YYYY'), 110, 20, 'bb' from dual union all
      4             select to_date('14/02/2012','DD/MM/YYYY'), 100, 30, 'bb' from dual union all
      5             select to_date('14/02/2012','DD/MM/YYYY'), 150, 25, 'cc' from dual union all
      6             select to_date('15/02/2012','DD/MM/YYYY'), 75, 20, 'aa' from dual union all
      7             select to_date('15/02/2012','DD/MM/YYYY'), 110, 40, 'bb' from dual union all
      8             select to_date('16/02/2012','DD/MM/YYYY'), 100, 45, 'cc' from dual union all
      9             select to_date('16/02/2012','DD/MM/YYYY'), 150, 25, 'bb' from dual)
    10  --
    11  -- end of test data
    12  --
    13  select dt
    14        ,max(decode(rn,1,up)) as up_1
    15        ,max(decode(rn,1,pe)) as pe_1
    16        ,max(decode(rn,1,usr)) as usr_1
    17        ,max(decode(rn,2,up)) as up_2
    18        ,max(decode(rn,2,pe)) as pe_2
    19        ,max(decode(rn,2,usr)) as usr_2
    20        ,max(decode(rn,3,up)) as up_3
    21        ,max(decode(rn,3,pe)) as pe_3
    22        ,max(decode(rn,3,usr)) as usr_3
    23  from (
    24        select dt, up, pe, usr
    25              ,row_number() over (partition by dt order by usr) as rn
    26        from (
    27              select dt, sum(up) as up, sum(pe) as pe, usr
    28              from t
    29              group by dt, usr
    30             )
    31       )
    32* group by dt
    SQL> /
    DT                         UP_1       PE_1 US       UP_2       PE_2 US       UP_3       PE_3 US
    14-FEB-2012 00:00:00         70         25 aa        210         50 bb        150         25 cc
    15-FEB-2012 00:00:00         75         20 aa        110         40 bb
    16-FEB-2012 00:00:00        150         25 bb        100         45 ccBear in mind that SQL projection is fixed, so you will need to include enough max(decode... statements to cater for the expected number of rows that are going to be pivoted for each date.
    {thread:id=2309172}

  • Storage location wise opening, closing stock...date wise...report

    Hi all Experts,
    I am at client site and hav to provide a report containing opening, and closing stock (and issue qty if possible) storage location wise and date option wise.pls help
    regards
    vikas chhabra

    Hi,
    Use MB51 for date wise report
    OR
    Use MCL1, MCL5, MCL9, MCLD (If Warehouse Management you are using)
    OR
    You have to develop an own ABAP report.
    Regards,
    Biju K

  • Trail balance Posting date wise .

    Hello all,
    My Cleint want trail balance Date wise reporting.
    We had done go live on 27.11.2011
    They want a reporting of that date .
    I am trying in F.01 ,
    In special evaluation there is option of
    Alternative period selection here I am giving date : 27.11.2011
    but there are giving whole month reporting.
    As include posting of 28-30 th nov.
    PLs reply is too Immediatte

    Date Wise Financial Statements
    Hi Sharif,
    Greetings for the Day,
    I have a very small doubt in this.
    While creating the BASIC SET in GS01: say CALLED.... here we are giving FROM VALUE as 50000 - CALLED UP CAPITAL NOT PAID.
    Can you explain me on this.
    Is this 50000, which we give here or the one we have to pick from GL (FS00) ??
    Since, this calledup capital I cannot find in my GL (FS00).
    Similarly all, the other BASIC SET`s aswell ?
    Also, can we take all the GL`s available in my comp code instead ?? if so where ??
    Please suggest, thanks.
    Thanking in Advance,
    Raghav.

  • MB5B Report table for Open and Closing stock on date wise

    Hi Frds,
    I am trying get values of Open and Closing stock on date wise form the Table MARD and MBEW -Material Valuation but it does not match with MB5B reports,
    Could anyone suggest correct table to fetch the values Open and Closing stock on date wise for MB5B reports.
    Thanks
    Mohan M

    Hi,
    Please check the below links...
    Query for Opening And  Closing Stock
    Inventory Opening and Closing Stock
    open stock and closing stock
    Kuber

  • Date Wise and Storage Location Wise Stock Qty & Value Report......

    Hi Experts,
    We want a report Date Wise(As on 31.03.2008) and Storage Location Wise Quantity & Value Report for only Finish Materials. Is there any report ?
    From Mb5b we canot get storage location wise report as we get only plant level qty and value.
    Pl. guide us.
    Regards,
    Yusuf

    Hi Yusuf,
        Try the Tcode: MC.9 there enter the site and article and executeYou will get details of the article
    stock, value. if you double click the article you will get the details of storage location.
    Hope it will be help for you
    Regards
    GK

  • MB5B Report for Date Wise Stock and Value

    Hi,
    I am Taking MB5B Report for Date Wise Stock and Value.
    But I have one doubt all stocks is coming or not in these report like Unrestrected Stock,Return Stock.Blocked stock,Transist stock,Restrected Stock,qty Inspection Stock.
    I have another Doubt in these report three Stock type indicaters are there like these.
    1.Storage Location / Batch Stock
    2.valuated Stock
    3.Special Stock.
    But i have one doubt what is defferent these
    1.Storage Location / Batch Stock
    2.valuated Stock

    Hi Prasad,
    Yes MB5B report consider the Unrestricted, Quality, Blocked, Transit stock and restricted stock. Not sure about Return Stock.
    If you select the Storage location/Batch stock radio button then the system will display all the possible stock from the storage location and the corresponding batch also.
    If you select Valuated stock radio button then system will show only the valuated stock not the Non-valuated stock. Because Non-valuated material type is available in SAP system will not show those stock suppose if you select the Valuated stock radio button.
    Regards
    Karthick

  • Stock Report Date Wise

    Dear All
            I am devlop new Stock Report Date wise
    my output follows
    Material    Plant   Storagelocaton   Saleorder OPenning stock     Closing Stock     Total
    Which Table stored that details?
    how will calculated?
    Thanks and Regards
    Suresh

    hey
    i think the following tables
    will be helpful for the report:-
    1>MARA
    2>MBEWH
    3>MSEG
    4>VBRP
    hope this will help
    good luck
    harry.

  • LIST OF STOCK  VALUES  BALACE REPORTS FOR DATE WISE

    Dear friends,
    In MB5L T.Code we can get period wise balance reports,but client's requirement is date wise Balance report,could you help me any kind of standard reports for date wise.
    Regards,
    Sabhapathy  R

    Dear Vishal,
    Thanks for your reply,mb5b only stock and  documents number  we can get client want to mb5l with date specific balance reports with GL account's.
    Regards,
    Sabhapathy R

  • Z report for opening qty of material date wise

    I have to develop a zreport which will calculate date wise opening  stock of material   and closing stock of that material at particular
    location ( not to use standard reports)
    I have to display sale qty and stock transfer qty  date wise.
    Similarly receipt qty  date wise.
    For sale qty, stock transfer qty and receipt calculation are date wise ok. But problem is to get date wise opening and closing stock of particular material.
    is it possible to get location wise material wise date wise opening stock list  in z report.
    Thanks

    Hi Ravikumar,
    Hope you are an ABAPer. If not also, you can achieve this through an ABAPer. As mentioned by others, you need to check whether your requirement is met by the standard transaction MB5B. You need to check whether this transaction gives you the exact opening and closing balance for a material. If this gives what you want, then you need to make some small enhancement in the MB5B report program so that you will be getting the result of the opening and closing stock. In this enhancement you will use EXPORT to export the result to your program where you can IMPORT it. This procedure is explained in detail in a document created in SCN dated 30th November, 2012 by Sijin Siji. Have a look in that.
    That document is descriptive and it will be helping you in solving this issue. If you have any doubts, please revert back.
    Regards,
    Abijith

  • 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.

Maybe you are looking for