Help with more than 30 days of data

Gurus,
I need to create an ACCOUNTS PAYABLE OLDER STATE INVOICE where I need to know the future, more than 30 days (1-29), over 60 (30-59), over 90 (60-89). How can I get this info in the report. What are the steps I need to follow. It is an urgent report. I have not all columns related to more than 30 days... Is there a way to write sql both on the current date for this info.

Help, please.

Hello
I recommend you create a logic that takes all of these buckets... More than 30, more than 60... etc.

-case when timestampdiff (sql_tsi_day, dateColumn, current_timestamp) between 1 and 29 and then "more than 30 days.
When timestampdiff (sql_tsi_day, dateColumn, current_timestamp) between 30 and 59 then 'more than 60 days.
When timestampdiff (sql_tsi_day, dateColumn, current_timestamp) between 60 and 89 then 'more than 90 days.
another end 'Undefined '.

According to your requirement dateColumn, current_timestamp positions of columns must be defined according the timestampdiff...
better, you create a variable that contains the current date and then use it instead of current_timestamp in above formula...

basic idea is to build the kind of above formula and then use it with your measurements...

Hope this helps you...

Tags: Business Intelligence

Similar Questions

  • How can I get more time to try the trial software, my computer crashed to 3 days in the first instance, now computer works again and re installed trial with more than 8 days

    I had already downloaded Adobe Audition and then my computer crashed, now he runs back I re installed the find had only 8 days left in the trial test, but I need to at least another 23 days. Is it possible to get an extension to the trial?

    There is no easy way on the same computer.

    You can use another computer for another try for 30 days.

    Adobe trial software has expired at the beginning

  • Multi load: error downloading the text file with more than 5 times

    Hi all

    I am getting below error while trying to load a text file with more than five periods of data through Multi charge.

    " File can not be treated because the number of specified periods exceeds the available periods!" ".

    FLTFILE_TO_PLANNING3
    BUDGET
    30/04/2013
    6
    Q.
    A, C, UD1 UD2 UD3, UD4, UD5, UD6, UD7, UD8, V, V, V, V, V, V
    AC_11102, CC_104204, Local, year 0, target, Final Budget, SA_000000, P_000001, HSP_InputValue, entry, 60, 70, 80, 90, 100, 110
    AC_11102, CC_104207, Local, year 0, target, Final Budget, SA_000000, P_000000, HSP_InputValue, entry, 60, 70, 80, 90, 100, 110
    AC_12542, CC_102101, Local, year 0, target, Final Budget, SA_000000, P_000000, HSP_InputValue, entry, 60, 70, 80, 90, 100, 110
    AC_11102, CC_113242, Local, year 0, target, Final Budget, SA_000000, P_002478, HSP_InputValue, entry, 60, 70, 80, 90, 100, 110
    AC_11102, CC_113243, Local, year 0, target, Final Budget, SA_000000, P_000000, HSP_InputValue, entry, 60, 70, 80, 90, 100, 110
    AC_17802, CC_113244, Local, year 0, target, Final Budget, SA_000000, P_000856, HSP_InputValue, entry, 60, 70, 80, 90, 100, 110
    AC_11102, CC_113511, Local, year 0, target, Final Budget, SA_000000, P_000000, HSP_InputValue, entry, 60, 70, 80, 90, 100, 110
    AC_11102, CC_124111, Local, year 0, target, Final Budget, SA_000000, P_000521, HSP_InputValue, entry, 60, 70, 80, 90, 100, 110

    This file works fine with 5 periods.

    Please notify.

    APR

    Hello

    Yes, table period contol FDM was not properly defined. Now it works fine. Thank you very much.

    APR

  • Need help: column dimension a assoc with more than 1 level

    Hello

    I try to have several paths of forest for a single dimension. For example, the Date dimension should be navigable by the following hierarchies:

    DateDimension
    + - Calendar year
    ... - Calendar quarter
    ... - Calendar month
    ..................-- Day
    + - Calendar year
    ... - Day

    So, in other words, in the answers, I should be able to add 'Calendar year' to my report, view the results and then click down the calendar year-> Calendar Quarter trail-> month-> day OR calendar-> day.

    However, when I have this model in the administration tool, it allows him, but then I add the column in the answers and get a runtime error:
    + [nQSError: 14064] dimension [column name] column has associations with more than one level.

    This is possible to BO and other tools. If it is not possible in Oracle BI EE, then another alternative would be to have two separate versions of the "calendar year" added to the report in the responses, each with their own drill path.

    Any ideas?

    Thanks for any help you can provide.


    Matt Warden
    Balanced Insight, Inc.

    Hello

    I don't if it good or bad, but simply give a shot home

    In RPD create year--> quarter---> month--> day then right click on the year and select shared as child level and select level day in. Double click on the level of the year and in the path of favorite drilling choose quarter and the day in it.
    Results:
    In the report when I click on the year he takes me to the day and then again by clicking on the year I give quarter, month.

    Hope this helps and let me know if it does not work.

    Thank you.

  • Query to find more than 3 days with the exception of weekends.

    Hi all

    Anyone help me with this request. On a table, I need to get all the lines that are pending for more than 3 days, outside of the weekend. No idea how to do this please?

    Query

    SELECT aerha.invoice_num, aerha.total amt,

    ROUND ((SYSDATE-aerha.last_update_date), 0) days

    OF ap.ap_expense_report_headers_all aerha

    WHERE 1 = 1

    AND NVL (aerha.expense_status_code, "XX") = "PENDMGR".

    AND expense_check_address_flag IS NOT NULL

    AND (ROUND ((SYSDATE-aerha.last_update_date), 0)) > 3

    Thank you

    sheebs

    Hello

    I guess 'weekend' means Saturday and Sunday, three days before the Wednesday (except weekend) would be the previous Friday.

    Change this last condition for

    AND (ROUND ((SYSDATE-aerha.last_update_date), 0)) > CASES

    WHERE TO_CHAR (SYSDATE

    , "DY".

    , ' NLS_DATE_LANGUAGE = ENGLISH '-if necessary

    ) IN ("GAME", "FRI")

    THEN 3

    5. OTHER

    END

    The code you posted is looking for a difference in 3 days.  The problem is that if you run it on a Monday, Tuesday or Wednesday, then you want a difference of 5 days (3 days + 2 weekend days).  The condition above replaces the code 3 hard with a CASE expression that returns 3 or 5 accordingly.  (If there are chances that you can run on a Saturday or a Sunday, then you may need to change the CASE expression a bit.)

    This kind of approach is not very good if you need take into account public holidays, or if you are looking for differences in N days, where N can be something of not known until run time.  For situations like this, see:

    Need to calculate working days

  • What happens if I don't have internet connection for more than 30 days, with a monthly Photoshop CC license?

    I know, I have to connect to the internet to validate my monthly subscription to Photoshop CC. What happens if I can not connect to the internet for more than 30 days? It will be expired immediately, or changes in the first instance, or there is a period of grace for this?

    you will not be able to open ps after 30 days.

    (on the other hand, if it is already open on the 30th day and you leave it open, it must continue to operate unless you shut up.)

  • Supported HP redemption does more than 41 days :(

    Here's my sad story with HP and me...

    Redemption code is [edited by Moderator Redemption Code]

    I bought the HP Envy 15-j111tx on 10 may 2014.

    I registered to offer the Hp holiday on May 20, 2014 and also sent the documents and JJ of Rs.1998 /-required for the redemption process. that all sent by May 27, 2014, then my redemption request has been accepted to 29 may 2014.

    After that, I saw "Claim remarks" only as follows

    Dear customer, your registration Carepaq is under treatment, even will be shared on your Email ID recorded and produced will be shipped in the next 10-15 days...

    more than 41 days went. Still Im receive all mail donations or products. I sent on 5 July 2014 to [email protected] as follows

    Delays in the processing of this redemption [redacted Redemption Code]

    The Validation of the application is approved on 29 may itself. but now the date of July 5, I received do not all donations are always carepaq details.

    you guys say you will receive within 10-15 days after approval of the application. can I know start counting down from 10-15 days from the approval or the year the same day... next huh?

    now the date is Ma J11, 2014.there is no response on their part I also tried through reminder

    «Please SMS: REDHELP to 53030.» Our representative will contact you within 2 business days. If your number is not available, you will be left by means of SMS"

    no answer.

    below the picture showed that my purchase details...

    No representative of HP or redemption help me out this please. :'(

    Hello rascaLraajA,

    I just sent you a private message. If you are unsure how to check your messages from the forum, this post has instructions.

  • BlackBerry Torch 9800 Smartphone delete messages of text more than 30 days

    And there is no option that AT & T or I can find to turn it off. How can I say this piece of * beep * phone ever delete my text messages? Facebook is the only application that I installed and I have more of 300 MB of application space and several GB of data storage space. I don't have that too this problem with SMS, emails, more than 30 days are still on my phone. What is going on?

    In fact, I found it finally, but your information is wrong. You must go to the menu options (different from texting) Messages. Then under 'Actions and the message', you go down and and change the "days to keep Messages" 30 days Forever. The fact that the default value of 30 days is inexcusable. BlackBerry R Dum

  • Cannot start a virtual machine with more than 1 CPU socket added

    I've set up a few boxes of ESXi 5.5 with the free license in recent weeks, they have all been without problems so far. All 4 servers have the same exact hardware

    Environment:

    Dell Poweredge T620

    E5-2630 2 Intel CPU

    40 GB OF DDR3 ECC RAM

    ESXi is installed on 2 x 146 GB 15 K SAS drives RAID-1

    Data for virtual machines store are 8 x 600 GB 10 K SAS RAID-10 disc

    Guest operating system is Server2012r2 on all virtual machines

    Installed it on ESXi 3 previous were conducted with custom ESXi 5.5 Dell without problem.

    The 4th is where I will have questions. I used the following ESXi installed just in case there is a bug somewhere

    5.5 of VMware ESXi

    ESXi 5.5 customized by Dell

    5.5 U1 of VMware ESXi

    Any version of the ESXi I use I can't have a virtual machine to begin with more than 1 CPU socket added to it. The virtual machine does not start even the VMWare BIOS. I tried the Bios EFI as well with no luck. The error message I get in the events is ' fatal error VMware ESX: vcpu (vcpu-X)-X:VM - entry failed; Valid VMCS (error code 8). The vcpu-X is always another. I have attached the log file is created. If I give the VM 1 single processor TI starts very well. I'm at a loss as to what could be the issue.

    Problem is solved. I caught another server with identical hardware, verified it worked properly, then started to swap parts between them. Turned out to be CPU1. Once this has been replaced from a working server I have not had any problems. Warranty has been appealed.

    Thanks for all the help!

  • Phone has been "redevelopment" iCloud drive for more than a day now

    In parameters, iCloud Drive was churning "valorisation" for more than a day now. Did not help restart the phone. iPhone 6 s, iOS 10.0.2.

    Thank you!

    What kind of "reboot", you have?  What was this - restart your iPhone, iPad or iPod touch - Apple Support?  If you did, and it did not work, try switching iCloud drive, power switch (settings > iCloud > iCloud drive).  If this does not work, try to connect to your iCloud account and reconnect.

  • After using groups of tabs earlier today, now whenever I close FF with more than 1 open tab, FF don't ask me to confirm before closing

    After using groups of tabs earlier today, now whenever I close FF with more than 1 open tab, FF don't ask me to confirm prior to closing. FF always asked me to confirm in the past and no settings have been changed before you try tab groups. Then when I open FF it again all the tabs I had open are still there. I tried refreshing FF and erase history, but that did not work. It's almost as if FF think windows and tabs I have open are a group of tabs, and he won't let me get rid of this group. How to stop groups of tabs now that I have them? Or is there something else? None of this was going on until this morning, I played with tab groups. I was curious what it was - it's going to make me kill one of these days lol.

    Note that using "show my windows and tabs from last time" as the start setting will also prevent Firefox to display an alert when you close the window.

  • It is possible to look back in the history of more than 7 days?

    Is it possible t0 look back into history for more than 7 days?
    7 days is the default...

    Thank you for your comment.

    Jan

    Try this.

    • In the address bar, type Subject: config , and then click OK.
    • Copy and paste the following in the filter at the top: browser.history_expire_days to isolate this setting.
    • Presumably, he'll say '7' because that's all you can see. Then right-click and choose Edit from the menu, delete the figure who's there and replace it with 180
    • Then go to file | Exit, restart Firefox and do a little surfing accumulate a bit of history.

    Check back tomorrow to see if anything has changed.

  • When we try to use our multipoint system 2010 with more than 2 users the mouse around the screen to move.

    Original title: problems using multipoint server 2010.

    When we try to use our multipoint system 2010 with more than 2 users mice become uncontrollable and move the screens themselves. How to fix this.

    Hi thomasgk,

    The issue of Windows Multipoint Server 2010, you have posted is better suited for the IT Pro TechNet public. Please ask your question in the TechNet forums for assistance.

    Hope the helps of information.

  • How to choose a system restore pt more than 5 days?

    Windows Vista 32, IE 8. I tried to do a restore of the system longer than 5 days. I created a restore point, but when I go to the system restore, it isn't here. I received a notice that the pt of restoration was created successfully. Help, please.

    You cannot create a Restore Point today for 5 days; If that's what you mean.

    By using the system restore, you can only create a Restore Point for today.

    If you mean that the RP was created more than 5 days ago, read this:

    http://www.windowsvistauserguide.com/system_restore.htm

    Read the above for a very good graph shows how backward more than 5 days in the System Restore Points by checking the correct box.

    See you soon.

    Mick Murphy - Microsoft partner

  • Ping failed with more than 76 bytes on Codian 4510

    Hi all

    Some troubleshooting problem I stumbled across what seems to be a strange behavior with the Codian 4510. In two separate environments, I realized that ping the device with a packet size of more than 76 bytes of data results in delays as shown below. Anyone know why this happens?

    localhost: ~ jason$ ping s 76 10.2.0.208

    PING 10.2.0.208 (10.2.0.208): 76 data bytes

    84 bytes from 10.2.0.208: icmp_seq = 0 ttl = 254 times = 3,642 ms

    84 bytes from 10.2.0.208: icmp_seq = 1 ttl = 254 = ms 3,579 times

    ^ C

    -10.2.0.208 - ping statistics

    2 packets transmitted, 2 packets received, 0.0% packet loss

    round-trip min/avg/max/stddev = 3.579/3.611/3.642/0.031 ms

    localhost: ~ jason$ ping s 77 10.2.0.208

    PING 10.2.0.208 (10.2.0.208): 77 data bytes

    Request timeout for icmp_seq 0

    Timeout for icmp_seq request 1

    ^ C

    -10.2.0.208 - ping statistics

    3 packets transmitted, 0 packets received, loss of packets of 100.0%

    This is normal, to avoid problems due to the too large ICMP packets.

Maybe you are looking for