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

Similar Messages

  • 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

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

  • Creation of Z reports for client adding two more column that is Purcahse order and delivery dates with Internal order wise

    HI Experts,
    Can any one help me to add two more column for standard report that is purchase order and delivery dates for Internal order wise.
    But here problem is when i checked with ABAP team they said there is no standard functional module to add two column.
    Please note below :
    Selection criteria is: 1) controlling area
                                  2) Fiscal Year
                                  3) From date and To date
                                  4) Plan Version
                                  5) Order Group.
    My client suggested : S_ALR_87012993 this tcode to run, but we suggested with S_ALR_87013019 as in this tcode we can get all the details
    That is required output fields, as it is showing all details but on yearly basis, he wants this to be period wise and also Abap team is not able to find standard functional module in the second tcode as well.
    Out Put fields to Pop up
    1) Orders.
    2) Budget
    3) Actual
    4) commitment
    5) Alloted
    6) Available
    These are two additional column
    7)Purchase order
    8) Delivery date.
    Require your help to know which all tables are included to extract above out put fields please help me.
    Thanks in Advance.
    Regards,
    Sudesh

    Hi Preeti,
    Thanks for reply, can you please let me know is there any other way to show the output fields.
    As my client is very specific to run the report on period wise, i also tried to execute the standard tcode S_ALR_87013019 and were we are getting all the required outputs to pop up but this is on year wise, but we can also check by period basis by clicking on order number and actual period basis where we can see period basis.
    Also one more question,what is the commitment table which is popping up in this, please advise.
    Thanks in advance.
    Regards,
    Sudesh

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

  • Purchase Order Report Showing Delivery Date

    Hello All
    I am looking for a report which will show Purchase orders with delivery date . something like ME2N but it is not showing delivery date.
    Regards
    Yogesh

    Hello Guys
    Thanks for your answers but it seems no body have checked it.
    Vishal : I am looking for a standard report and not table.
    Ranga : In SPRO field delivry date in not there under new scope of list
    Chidanand: Boss ALLES not giving delivery date.
    Please tell me some other way.
    regards
    Yogesh

  • Report for viewing Sales order no against delivery date & actual GI date

    Hi Experts,
    Is there any report for viewing Sales order no against delivery date & *actual GI date*
    Because in VL06F , i can only able to get planned GI.
    Please guide regarding the same where i can get 'ACTUAL GI DATE ' against above combination .
    Regards,
    Sujit S.

    dear Hrishi,
    i followed your suggestion, but couldn't get desired results,
    here i can get planned GI date, where i wanted to get Actual GI date for complted deliveries,
    thanks for your valuable reply.
    @ G. Lakshmipathi ;-
    i think i will need to develop z-report for fetching the data from the tables
    VBAK (to get sale order reference) and
    LIKP (to get delivery and actual GI date)
    thanks for your reply,
    Regards,
    Sujit

Maybe you are looking for

  • Data not uploading in Time dependent Master data Infoobject

    Hello All, I have a master data infoobject for HR entity and have to load data from PSA to that info object. The HR entity infoobject already have sone data like below: HR Entity Version Date from Date To x A 01.07.2013 31.12.9999 x A 19.04.2013 30.0

  • Connecting core switch to the internet ?

    Hi, We have 2 6506's connected through an ether-channel trunk. On these 6506's we have configured a vlan, vlan interface and 2 access ports for 2 ASA's. These ASA's run in failover mode but only one ASA is physically connected at the moment. We want

  • Airport Express invisible to Macbook Pro

    Hello folks, I've had an Airport Express wireless router for about 4 months now and from the get go I've had problems with it. Particularly, When I power the airport express off and switch it back on again, my Macbook pro cannot find the network, eve

  • Screen moving around

    What did I do? My screen is enlarged and moving all around when I'm

  • Repair for a canon power shot 1

    Damaged pin card no longer reading. Any one know of a repair shop. I live in Maryland. Thanks