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,

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

  • 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

  • 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

  • I WANT TO FIND THE EXPIRY MATERIAL LIST DATE WISE

    I WANT TO FIND THE EXPIRY MATERIAL LIST DATE WISE

    Hi Prashant,
    Use TC - BMMC (Batch Cockpit)
    or Find all TC in one place
    SAP Easy Access
    Logistics
    |____ Central Functions
            |_________Batch Management  (Here you find all and suit your requirment)
    Note: Please assign valuable point in orde to encourage contributors for every answer to your queries.
    Best Regards,
    Silky

  • 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

  • Changing classifications of material master data and reporting

    Hello experts,
    I have to update long list of material's classifications, I know about the transaction CL24N but in this
    one, I have to assign a material to the class and then for each material update the value of the wanted
    parameter.
    My questions are :
    1. Is there any better way to do this massive update ?
    2. Is there any standart report on classifications values for all materials ?
    Kind Regards,
    Amit Berku

    Hi Amit,
    You can look for the Report RCCLBI03 (this Report loads the File). This is the fastest way to load classifications.
    You can also use BAPI  'BAPI_OBJCL_CREATE' or write a batch input program, but my advice would be go to for Standard Report if this does not solve your problem then use BAPI and the third option would be to use Batch Input program.
    Hope this helps you!
    Reetesh

  • Material wisw & item wise report in BW

    Hi,
    In MM I have a requirement like this
    Material Grp   Amt
    HeroHonda     1000
    -Motors            500
    -Cars               500
    Now the requirement is in R/3 report they can see the output based on  Material grp only i.e they can see Om material grp Herohonda 1000 but they are not able to see the 0/p based on items that is in herhonda they have MOtors as one item & Cars as one more item so In BW they want to see the o/p based on materialo grp as well as irem level detail.
    how this requiremnet is possible in BW & how
    Thanks,
    Priya

    Hi,
    Usually we can see the hierarchies on 0PROD_HIER charactertic would be help ful.
    With rgds,
    Anil Kumar Sharma .P
    I typed wrongly (0PRDO_HIER) earlier
    Message was edited by:
            Anil Kumar

  • 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

  • Opening stock on date wise

    Hi SD Gurus,
    To prepare a Customized report on Stock statement, I need the opening stock  of each material on date wise. In MB5B, I am getting the opening stock. I have to give input to my ABAPer where to pick this value. Pl give your valuable inputs.
    -K.Bharathi-

    hi
    opening stock  MARD-LABST
    total receipts MSEG-MENGE
    REGARDS

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

  • 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

  • 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

  • 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

Maybe you are looking for

  • RG1 updation for Reversal of Goods Issue

    Hi, I am a SD person . We recently started RG1 for our client by deleting all the previous data from J_2IRG1BAL table & also mantaining the initial balances for finished goods . When we do a goods reversal for a cancelled sales order ( say movement t

  • Problem with Purchase Order / Dealer

    Hello, I have a problem on the dealer on a purchase order. I have a PO containing severals items, if I delete one of them. I obtain the message on the portal : 'Enter no more than one partner of type Dealer' . The dealer is still identical on every i

  • Certificate problem with Firefox 4.01 and Windows 7 (Win XP is working fine)

    When I try to connect to an https page with a valid certificate, Firefox 4 shows me "sec_error_bad_signature" error message... but only in Windows 7 OS. If I try the same in a Windows XP it works correctly. Any suggestions?

  • Creating PDF with links in Table of Contents

    How do I convert a Word file (in which the page numbers in the Table of Contents are links to their corresponding headings) to a PDF file so that the page numbers in the Table of Contents are still liinks to their corresponding headings?  I am workin

  • CS6 Debugger not at breakpoint

    This is really strange. The CS6 debugger would work as expected but now it does not settle at breakpoint. I have reduce the code to the simplest below. Debugger was working last time I used it. When I "Debug Movie->Flash professional", the breakpoint