Inventory day for this month

Hai Expert,
can't help me please i want to use this Query :
1. accumulation of reports to this day for this month
2. selection criteria month
SELECT T0.ItemCode, SUM(T0.Quantity) AS 'Qty Sales',DATEDIFF(DD,T0.DocDate,GETDATE()) as 'No. of days' FROM INV1 T0  INNER JOIN OITM T1 ON T0.ItemCode = T1.ItemCode GROUP BY T0.ItemCode,T0.DocDate ORDER BY T0.ItemCode,T0.DocDate
thanks for all

Hai Marcella,
i run this my Query and the result is:  item no, QtySales, No of Days
i want add this result for find out this month with the incident until this week with the selection criteria
i try Query Mr. Jenkins & Mr Jaya kathan same result with my Query results
Can anyone help me ... because I have to try it several times always error
thanks for all answear my question

Similar Messages

  • I've used almost all of the 30 gigs of my 4G LTE wireless internet plan for this month.

    Hello, I've used almost all of the 30 gigs of my 4G LTE wireless internet plan for this month and I'd like to purchase additional data immediately. How do I go about this?

    If you are on the special double data offer getting 30GB for $130, you can't change data plan without losing your $130 deal.  In this case it may be best to absorb overages
    if you just have 30 GB at regular price, you can go online and go to the next data level and retrospectively apply it to the first day of your plan. 

  • Opening stock of a material for each day for a month

    Hi ,
    Is it possible to get a opening stock of a material for each day for a month . For Example for the month of Feb From 01/02/2014 to 28/02/2014 i want to see the opening stock for each day .
    Thanks .
    Message was edited by: Jürgen L

    If you give 01.02.2014 to 28.02.2014 in MB5B report, then you will got the opening stock for 01.02.2014 and closing stock for 28.02.2014...
    the MB5B report designed like that
    It will give you the opening stock for from date and closing stock for end date...
    If you want to see the opening stock per each day, then you have to give the date each date in MB5B report...
    Like as for opening for 02.02.2014, you have to enter the from date as 02.02.2014..
    You can make your own report from copy the existing program RM07MLBD and you can add you additional code...
    Make the program output will be for each day...

  • I PAY MONTHLY SUBSCRIPTION FOR PHOTOSHOP CC, but today i cannot open it - says trial version has expired - what do i do to open it as I have paid my subscription for this month?

    I PAY MONTHLY SUBSCRIPTION FOR PHOTOSHOP CC, but today i cannot open it - says trial version has expired - what do i do to open it as I have paid my subscription for this month?

    Log out of your Cloud account... Restart your computer... Log in to your paid Cloud account
    -Sign in help http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html
    or
    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • We have just gone over our limit for data usage this month. Is it possible to add data just for this month?

    We have just gone over our limit for data usage this month. Is it possible to add data just for this month?

    YES.  YOU GOING TO DO A PLAN CHANGE.  WHEN IT GIES YOU DATE OPTIONS YOUR GOING TO BACK DATE IT TO BEGINING OF CYCLE.    ONCE THAT GOES THROUGH DO ANOTHER PLAN CHANGE BACK TO IRIGINAL PLAN AND FUTURE DATE TO BEGINIGN OF NEXT BILL CYCLE.  THIS ALL CAN BE DONE ON MY VERIZON OR IF YOU FEEL SAFER CALL CUSTOMER CARE AND THEY CAN DO THSI FOR YOU

  • Paid my bill for this month, but it's still saying...

    Hey,
    Paid my bill for this month, earlier this month, but it's still saying my balance is outstanding and when i go to see what happens when i pay it shows me a different amount altogether. 
    Is this a common issue ? I haven't had a loss of service or any mail demanding payment and its beint over 3 weeks.
    Thanks for any help.

    Try live chat. 
    live chat
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • I cancelled my one year subscription on 18th march 2015 but was charged Rs.1600 for this month. your customer care told me in a chat that it will be refunded. may i know when is it going to reflect in my account

    i cancelled my one year subscription on 18th march 2015 but was charged Rs.1600 for this month. your customer care told me in a chat that it will be refunded. may i know when is it going to reflect in my account

    This is an open forum, not Adobe support... You need Adobe support to cancel a subscription
    -start here https://forums.adobe.com/thread/1703848
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html
    --and two links which may provide more details, if the above links don't help you
    -http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    -http://helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html

  • Need working days for all months in a given year

    Hi,
    I need no of working days for all the months in a given year.
    (i.e year is the input and the query should return 12 columns(jan-dec). Saturday and Sunday are holidays)
    Regards,
    Vignesh

    Maybe you can use this:
    break on month skip 1
    set linesize 200
    set pagesize 2000
    column month format a20
    column week format a4
    with req as (select '&Required_Year_YYYY' as yr from dual)
        ,offset as (select case when to_char(trunc(to_date(yr,'YYYY'),'YYYY'),'IW') in ('52','53') then 1 else 0 end as offset from req)
    select lpad( Month, 20-(20-length(month))/2 ) month,
           '('||week||')' as week, "Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"
    from (
      select to_char(dt,'fmMonth YYYY') month,
      case when to_char(dt, 'mm') = '12' and to_char(dt,'iw') = '01' and offset = 0 then '53'
           when to_char(dt, 'mm') = '12' and to_char(dt,'iw') = '01' and offset = 1 then '54'
           when to_char(dt, 'mm') = '01' and to_char(dt,'iw') in ('52','53') then '1'
           else to_char(to_number(to_char(dt,'iw'))+offset) end as week,
      max(decode(to_char(dt,'d'),'1',lpad(to_char(dt,'fmdd'),2))) "Su",
      max(decode(to_char(dt,'d'),'2',lpad(to_char(dt,'fmdd'),2))) "Mo",
      max(decode(to_char(dt,'d'),'3',lpad(to_char(dt,'fmdd'),2))) "Tu",
      max(decode(to_char(dt,'d'),'4',lpad(to_char(dt,'fmdd'),2))) "We",
      max(decode(to_char(dt,'d'),'5',lpad(to_char(dt,'fmdd'),2))) "Th",
      max(decode(to_char(dt,'d'),'6',lpad(to_char(dt,'fmdd'),2))) "Fr",
      max(decode(to_char(dt,'d'),'7',lpad(to_char(dt,'fmdd'),2))) "Sa"
      from ( select trunc(to_date(req.yr,'YYYY'),'y')-1+rownum dt
             from all_objects, req
             where rownum <= add_months(trunc(to_date(req.yr,'YYYY'),'y'),12) - trunc(to_date(req.yr,'YYYY'),'y') )
          ,offset
      group by to_char(dt,'fmMonth YYYY'),     case when to_char(dt, 'mm') = '12' and to_char(dt,'iw') = '01' and offset = 0 then '53'
                                                    when to_char(dt, 'mm') = '12' and to_char(dt,'iw') = '01' and offset = 1 then '54'
                                                    when to_char(dt, 'mm') = '01' and to_char(dt,'iw') in ('52','53') then '1'
                                                    else to_char(to_number(to_char(dt,'iw'))+offset) end
      ) x
    order by to_date( month, 'Month YYYY' ), to_number(x.week)
    / L.

  • Query item not sold per customer for this month compare with last month

    Dear all,
    i want to make query that show information about item sold per customer last month which is not sell again this month.
    for example last month customer A buy item 1,2 and 3. This month, customer A only buy item 2. So, the query will show information item 1 and 3 which is not sell again to customer A.
    Thanks a lot

    Here's one that will show you items bought in the last 60 days but not the last 30 days.  It's not perfect but will get you on your way, some bits will also not be relevant, like the qrygroup64 part.
    select     t0.cardcode,
              t0.cardname,
              t2.slpname,
              t1.itemcode,
              t1.itemname,
              t1.onhand,
              s0.[2mthqty],
              s0.[2mthdollar],
              s1.[1mthqty],
              s1.[1mthdollar],
              s2.lastsale
    from
    (select     t0.cardcode,
              t1.itemcode,
              sum(t1.quantity) as [2mthqty],
              sum(t1.linetotal) as [2mthdollar]
    from
    oinv t0
    inner join
    inv1 t1
    on t0.docentry = t1.docentry
    where t0.docdate >= getdate()-60
    and t1.quantity > 0
    group by     t0.cardcode,
                   t1.itemcode) s0
    full outer join
    (select     t0.cardcode,
              t1.itemcode,
              sum(t1.quantity) as [1mthqty],
              sum(t1.linetotal) as [1mthdollar]
    from
    oinv t0
    inner join
    inv1 t1
    on t0.docentry = t1.docentry
    where t0.docdate >= getdate()-30
    group by     t0.cardcode,
                   t1.itemcode) s1
    on s0.cardcode = s1.cardcode and s0.itemcode = s1.itemcode
    inner join
    (select     t0.cardcode,
              t1.itemcode,
              max(t0.docdate) as lastsale
    from
    oinv t0
    inner join
    inv1 t1
    on t0.docentry = t1.docentry
    where t0.docdate >= getdate()-60
    group by     t0.cardcode,
                   t1.itemcode) s2
    on s0.cardcode = s2.cardcode and s0.itemcode = s2.itemcode
    inner join
    ocrd t0
    on s0.cardcode = t0.cardcode
    inner join
    oitm t1
    on s0.itemcode = t1.itemcode
    inner join
    oslp t2
    on t0.slpcode = t2.slpcode
    where           (s1.[1mthqty] = 0 or s1.[1mthqty] is null)
    and t0.qrygroup64 = 'N'

  • I had an overage for this month due to my paltry 2GB data cap, but I just changed my plan to a different data cap, does that overage still apply? If so, why can't I view it in my account anymore?

    I was paying $160 for 2 lines with 700 minutes, unlimited txt, and 2GB non-shared data.  A complete ripoff, but it worked for me. Unfortunately the other line went over their paltry 2GBs today and I wanted to grab some more data, and the next jump up was 5GB data at $20 more ($50) per line.  This was unacceptable.  Luckily they have this share everything plan with twice the amount of data, (4G) and unlimited talk and text for $140 (What the F), so indeed even Verizon (TM) thought I was paying too much. Great of them to let me know I could switch.
    Anyways will I still get the privilege of paying that $15 for .01 GB of data for the amount I went over or will I be okay as I switched to 4GB today.  My gut's telling me Verizon's not going to give me back my money that easily. 

    If you switch you will have to backdate it to keep the overages from happening. Also you'll pay the difference in advance. So if the difference is $20. You pay $40 more next month compare to this month, but the following month will be $20 more like it should(bill in advance). When you downgrade plans you'll get credited the difference like it should as it works both ways.

  • I went to check the american legion letter for this month i get a runtime error ????

    i have been getting my email pok ,but this month ,aug.2014 i check with the legion and went to send my name in and email address.incase it was lost ,but i get this sever '/' application then runtime error ,i dont know why

    Does this also happen with the current Firefox 31 release?
    You can try these steps in case of issues with web pages:
    You can reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • I would like to cancel subscription for this month

    The last time I talked with Skype staff (via chat) for cancelling my payment.
    But now I cannot found this issue, how can I contact them.
    I have already cancel my subscription for next bill (next 2 month).
    But I would like to cancel this bill as well (this month) .
    How should I do?
    I don't understand, Why Skype set the automaic for that, I want to do it by my self if I want to continue to use the phone.

    You can contact customer service as shown here: https://support.skype.com/en/faq/FA1170/How-can-I-​contact-Skype-Customer-Service
    They can also refund you the last recurring payment.
    Andre
    If answer was helpful please mark it with Kudos and if issue is resolved mark it with solution. This will help other users find this answer more easily. Thanks in advance!

  • What is the topic for this month?

    Hi,
    Has the 'topic of the month' feature, in SDN, been discontinued... It is nowhere seen in the home page.
    Just curious ..
    Thanks and Regards,
    - anto.

    I think that was a great idea to devote each month for a topic. So that we see some interesting contributions.
    Forget the double points.
    I believe we had some good blogs due to this before, both from the RIG teams as well as the community as a whole..
    I did search for it, but couldn't find anywhere either.
    Thanks and Regards,
    - anto.

  • TS3714 I am trying to delete an event that somehow got put on my calendar for every day -- several TIMES a day - for 14 months.  When I hit the "Delete AllFuture Events" tab, my phone freezes.  iPhone 4S, iOS 7

    I've tried turning the phone off and on several times; no luck there.
    Also closed all other apps while attempting to solve this problem.

    I read the article thanks.   I tried the settings-general-reset-reset network settings-reboot system-go to wifi settings-select wireless connection-select the ">"-symbol-select auto for http proxy.   I was optimistic about that because I thought I changed some setting somehow to cause this problem, but it didn't work.  More specifically, I did connect successfully and browsed the Internet for a good while, but then I put down the phone for a minute, the phone went into sleep/power save mode, and when I picked it back up a moment later it was no longer connected.  Dang.   Had to select the connection and use my password yet again. 
    Another valuable bit of info for you.   The only network with which I have this problem is my home.   I use all kinds of devices at home and no other devices have this problem.  Also, I use this iPhone all over with various wifi networks at hotels and starbucks and family's homes with no issues whatsoever.  It remembers and automatically reconnects with every wireless network except the one in my own house. 

  • Depreciation is not executed for last month and the period is closed. Giving Error in this Dep. Cycle.

    Hi All,
    We had a month End scenario where the depreciation for a company code is not executed for the last month and closed the period without checking it.
    While  running the Depreciation posting for this month we encounted a error that last motn period is closed. Can we do the depreciation without opening the period closed. Kindly let us know the options available.
    Regards,
    Lakshmi Narayana

    Lakshmi,
    There is no way you can post depreciation without opening the prior periods. Please discuss with your business and secure all necessarry approval, I believe the business has a process on this kind of situations. As long as it is fully documented, auditors will not find it wrong.
    This is the best time to improve your process, think of possible ways so that business will not forget to post depreciation (e.g send automatic email during 3 days before, 2 days before., 1 day before and during the day of depreciation run).
    Hope this helps.
    Thanks!
    Jhero

Maybe you are looking for

  • ITunes organizing music into two totally separate places

    I've been using iTunes for as long as I can remember, and ever since I picked up an external hard drive, I've been backing up my music constantly. I noticed a year ago or so that my music had been split into two separate places for no apparent reason

  • Audio book download and ipod shuffle

    I am having difficulty getting the audio book I purchased from itunes, to load onto my shuffle. I see it in the playlist, but can't sync it to my ipod, it just disappears. Advice?

  • Publish Customer Report in the page Overview of MSS

    Hi, Good Night. I want publish a customer report in the page of Overview of MSS. Can someone help me, what I should do? Regards

  • Asset Postings on Statistical Internal orders

    Hi Is it possible to see asset transactions on a statistical internal order? I have assigned a statistical order on the asset master record but can not see the acquisition and other asset related postings on the order. Of course in all the postings t

  • CC shows two versions of Photoshop: Photoshop CC and Photoshop CC (2014)

    My CC subscription shows two versions of Photoshop. I tried to open both versions. Photoshop CC opened, Photoshop CC (2014) would not. I deleted it. Now CC shows one update available: Photoshop CC (2014). Anyone know what CC is doing?