Dashboard when published to BW, date functions always show published date

Xcelsius dashboard when published to BW at a particular date, the date functions(like Today(), now()) used at spreadsheet generates published date irrespective of time or date the dashboard is previewed....Could anyone help me out what actually .XLF gets stored in BW....does these functions stores a static value when published?

Hi Rajesh,
To confirm, you're saying that you're saving a swf (falsh file) to BW and when it's opened by a user in a browser, it doesn't show the most recent date?
In the current version, the Now() function will be calculated at the time the dashboard is opened. Each time you open the swf file you will see the current day/time.
You mention the xlf file. The date stored in this has nothing to do with what is viewed in the swf file (if you're in BI4.0 then the xlf and swf are stored in the same object on the server).

Similar Messages

  • ALV object in function module shows old data

    Hello,
    I create a function module with import parameter matnr.
    This function module calls a screen that displays an ALV with the whole info of matnr out of table mara.
    I include this in a program where a material can be selected. This is then input for the function module. Everything looks good for the first material. However when the function module is called for a second material I still see the ALV with the data of the previous material.
    When I debug the code I see that new data is selected and put on the alv (with method set_table_for_first_display)  but still I see the old ALV (which I free by the way in the exit of my function module...). It drives me crazy, what's the problem?
    <b>My function module:
    </b>
    FUNCTION ZJVB_TEST.
    *"*"Lokale interface:
    *"  IMPORTING
    *"     REFERENCE(I_MATNR) TYPE  MATNR
    g_matnr = i_matnr.
    call SCREEN 1979.
    ENDFUNCTION.
    <b>TOP include:</b>
    FUNCTION-POOL ZJVB_TEST.                    "MESSAGE-ID ..
    data: ok_code type sy-ucomm,
          container type ref to cl_gui_custom_container,
          alv type ref to cl_gui_alv_grid,
          g_matnr type matnr.
    *&      Module  STATUS_1979  OUTPUT
    *       text
    MODULE STATUS_1979 OUTPUT.
      SET PF-STATUS 'FMAIN'.
    *  SET TITLEBAR 'xxx'.
      if container is INITIAL.
        CREATE OBJECT CONTAINER
          EXPORTING
            CONTAINER_NAME              = 'CONTAINER'    .
        CREATE OBJECT ALV
          EXPORTING
            I_PARENT          = container.
        data: itab type TABLE OF mara.
        select *
          from mara
          into TABLE itab
          where matnr = g_matnr.
        CALL METHOD ALV->SET_TABLE_FOR_FIRST_DISPLAY
          EXPORTING
             I_STRUCTURE_NAME              = 'MARA'
          CHANGING
            IT_OUTTAB                     = itab.
      endif.
    ENDMODULE.                 " STATUS_1979  OUTPUT
    *&      Module  USER_COMMAND_1979  INPUT
    *       text
    MODULE USER_COMMAND_1979 INPUT.
      case ok_code.
        when 'BACK'.
          free container.
          free alv.
          LEAVE to SCREEN 0.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_1979  INPUT
    <b>My program:</b>
    *& Report  ZJEROEN_ALV_FM
    REPORT  ZJEROEN_ALV_FM.
    data: ok_code type sy-ucomm,
          l_matnr type matnr.
    call SCREEN 1979.
    *&      Module  STATUS_1979  OUTPUT
    *       text
    MODULE STATUS_1979 OUTPUT.
      SET PF-STATUS 'MAIN'.
    *  SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_1979  OUTPUT
    *&      Module  USER_COMMAND_1979  INPUT
    *       text
    MODULE USER_COMMAND_1979 INPUT.
    case ok_code.
      when 'BACK'.
        leave to screen 0.
      when 'CALL'.
          CALL FUNCTION 'ZJVB_TEST'
          EXPORTING
                    i_matnr = l_matnr.
    endcase.
    ENDMODULE.                 " USER_COMMAND_1979  INPUT
    Thx for helping,
    jeroen

    Hello,
    I found out that the container lifetime was the problem... When you create a container to put the ALV in the lifetime is set to default. Normally you never change this, I didn't mention it before I had the problem. But you have to change the lifetime to <your_instance_name>->lifetime_dynpro for instance my_container->lifetime_dynpro.
    Also check this helplink: http://help.sap.com/saphelp_nw04/helpdata/en/9b/d080b79fc111d2bd68080009b4534c/frameset.htm

  • Why is it that when I set the preference to always show the tab bar, it refuses to stay checked after I quit Firefox and restart it?

    Using Mac OSX10.6.7 and FF 4.0.1, I'm having a problem with the preference to always show the tab bar. I want it to always show. I check this in the Preferences under the "tab" window, and everything is fine until I quit FF and when I restart FF the tab bar is gone again. I go into preferences, and that option is now unchecked. How can I fix this so that my preference is saved?

    That hasn't helped the last ten times I tried. I posted before. I deleted the preferences file, I tried changing the preferences file, I went into about:config and changed the autoHide preference there. No dice. Firefox is not saving my preference for that one thing.

  • Date function to pull back dates of the year?

    is there a built in function for returning all dates (whatever format) between to dates ?
    Example:
    Select functionname('2009/06/01', 'yyyy/mm/dd), ('2009/06/05', 'yyyy/mm/dd')
    from dual
    Wanted results
    2009/06/02
    2009/06/03
    2009/06/04

    Hi,
    user11210446 wrote:
    Here is what I'm trying to do,
    There is a start date and an end date. I have US holidays for current year in a table so for example christmas 12/25/2009
    I want to show dates between the start date and end date, and if there is a holiday on that date it will not show.
    make sense
    so if a user puts 12/23/2009 for start and 12/29/2009
    it would show
    12/24/2009
    12/26/2009
    12/27/2009
    12/28/2009Yes, that's very clear.
    I would actually do that with a NOT IN sub-query
    SELECT  TO_DATE ('&start_date', 'MM/DD/YYYY') + LEVEL - 1
    FROM     dual
    WHERE   TO_DATE ('&start_date', 'MM/DD/YYYY') + LEVEL - 1 NOT IN
            SELECT  appropriate_column
            FROM    holiday
    CONNECT BY LEVEL <= 1 + (TO_DATE ('&end_date', 'MM/DD/YYYY') - TO_DATE ('&start_date', 'MM/DD/YYYY'));where &start_date and &end_date are substitution variables in MM/DD/YYYY format. You could use bind variables just as well.
    This assumes the DATEs in holdiay are all midnight. If not, use TRUNC (appropriate_column).
    Edited by: Frank Kulash on Jun 4, 2009 12:59 PM
    There's nothing like clicking that "Save" button to give you better ideas!
    MINUS is a little simpler than NOT IN:
    SELECT  TO_DATE ('&start_date', 'MM/DD/YYYY') + LEVEL - 1
    FROM     dual
    CONNECT BY LEVEL <= 1 + (TO_DATE ('&end_date', 'MM/DD/YYYY') - TO_DATE ('&start_date', 'MM/DD/YYYY'));
    MINUS
    SELECT  appropriate_column     -- or TRUNC (appropriate_column)
    FROM    holiday
    ORDER BY 1;

  • Is there a way to have movies always show the date?

    I am using Premiere Elements 10 to create home movies and burn them to blu-ray discs.  I want all scenes to show the date the scene was shot in the lower right hand corner, at all times.  Is there an easy way to do this automatically, or do I have to go to each clip and custom make a title?  The dates are all placed in the exif info by the camera I am using.  Thanks for any help!

    This is not an automatic function of Premiere Elements. Sorry.

  • When I open my Macbook Pro it shows past date

    Hi -
    Sometimes (pretty consistently lately) when I open my Macbook Pro it shows the screen that was there when I closed it, but everything is greyed.  There is a line at the bottom that is moving across and when it finishes the color goes back to normal.  But even then, the time is from when I closed it, and the computer is unresponsive.  It will sometimes sit in this state for a couple of minutes or longer.
    This is a six month old Macbook Pro and this happens pretty regularly, and has off and on since I first got it.
    Is this just no more than annoying?  I've been using Apple laptops since 2005 and never had this happen until this machine (which is my third personal one - I support two others).  Any ideas on cause?
    Thanks
    Craig

    Some users have reported solving this problem by resetting the NVRAM (PRAM.)
    If you've installed something called "iCleanMemory," or any other third-party software that is supposed to "clean" or "free up" memory, remove it according to the developer's instructions after backing up all data. Reboot and test. If there's no change, continue.
    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, or by corruption of certain system caches. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and  Wi-Fi on certain models. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Last changed date of query showing old date

    Hi All,
    We have made a change to a query (description change) and saved.  When we open the Analyzer we still see the old description and also the last changed date shows an old date.  Not the latest date the query was last changed on.  We tried generating the query in RSRT, but no luck.
    Can someone let us know what we can do?
    Thanks!

    Hi Kams,
    We are using the Analyzer, log out back in, etc...
    As mentioned we did a regenerate by RSRT 'generate'
    any other ideas?

  • Date Picker Calendar Show Wrong Date Information Dec/Jan 2014-2015

    When using a Date Picker, the offered Date for January 1st 2015 is a Friday!  It supposed to be a Thursday!
    You can move to February, and return to January again, and it will correct itself.  
    This happens in Office 2007 and 2010
    What's gone wrong?
    IT will also offer the wrong December dates.
    Is there a fix please?

    Re:  Bad date
    Some remote possibilities...
      Your computer's clock has an incorrect date
      The wrong year is entered somewhere as the first day in 2016 is a friday.
      You have the wrong date system selected 1900 vs. 1904 or vice versa.
      You have a 3rd party (non MS) Date Picker that is programmed incorrectly.
      You have Office 2013 (nothing seems to work there)
    There are alternatives and I offer one for Excel...
    a free excel add-in date picker ("Get Your Own Date")
    (no ads, no trackers, no cookies, no registration)
    https://jumpshare.com/b/O5FC6LaBQ6U3UPXjOmX2
    Jim Cone
    Portland, Oregon USA

  • ITunes 12.1.0.71 data corruption (TV show release date)

    As many of you know, one of the many bugs in the last release of iTunes was that the "Release date" field for TV shows showed a date in 1905 and was not editable.
    I just updated to version 12.1.0.71 on my Windows 7 and OS X Yosemite systems and the field is now editable. But, the dates I had set in version 11 all still seem to be lost.
    To some this may not seem like a big issue but it's an issue of Apple corrupting my data. This time it's a field that isn't too big of an issue but next time it could be something worse like the actual video file!
    Given how often Apple has been releasing buggy software on so many platforms I'm starting to wonder if I can trust them. Is it time for me to dump my Mac and go strictly Windows?
    I've submitted this to Apple via their "Feedback" page but I have serious doubts if anyone from Apple reads the submitted feedback.
    Anyone else have this issue? Any ideas if my data is actually lost or if this is yet another bug that's just not displaying my data?
    Larry.

    As many of you know, one of the many bugs in the last release of iTunes was that the "Release date" field for TV shows showed a date in 1905 and was not editable.
    I just updated to version 12.1.0.71 on my Windows 7 and OS X Yosemite systems and the field is now editable. But, the dates I had set in version 11 all still seem to be lost.
    To some this may not seem like a big issue but it's an issue of Apple corrupting my data. This time it's a field that isn't too big of an issue but next time it could be something worse like the actual video file!
    Given how often Apple has been releasing buggy software on so many platforms I'm starting to wonder if I can trust them. Is it time for me to dump my Mac and go strictly Windows?
    I've submitted this to Apple via their "Feedback" page but I have serious doubts if anyone from Apple reads the submitted feedback.
    Anyone else have this issue? Any ideas if my data is actually lost or if this is yet another bug that's just not displaying my data?
    Larry.

  • How can I set my "attach file" system to always show the date and offer to resort?

    When I want to attach a file to an email, or save it for that matter, I have to turn on Details instead of List in the View Menu. How can I set Thunderbird to have Details on as my default.
    Thanks!

    For use in the BB, the on-device format must be used...no PC contains the necessary file structure that the BB needs to find on the card in order to use it correctly. If you can no longer read the card via the BB nor the PC, then it's quite likely that your data is already destroyed. But, there are several PC utilities that claim to be able to recover Flash Memory devices such as SD cards...you should perhaps check those out (Zero Sum something or other? Can't recall specifically, but google will be your best friend in your quest.)
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • When installing iTunes, an error message always shows

    I have tried to install iTunes many times, and I've tried all different versions just to make sure it wasn't one particular version that didn't work. It gets to the final page of installation and it says "iTunes installer completed. Errors occurred during installation before iTunes could be configured. Your system has not been modified. To complete the installation, run the installer again." I have tried so many times on many different days I just need to reinstall iTunes ASAP. Please help! What do I do? Thanks!

    Hello krystalclear59
    If you are having issues with installing iTunes, then check the article below to verify that you tired one of these options during your many attempts to install iTunes.
    Issues installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    Regards,
    -Norm G.

  • Date Picker query showing "No Data Found", works in SQLPlus

    I have created 2 Date Picker items - P2_START_DATE and P2_END_DATE. I have set the format of these to 'DD-MON-YYYY'.
    This is the query I have to select the data based on the values from the date pickers:
    select sample_date,reading from meter_data where sample_date between to_date(:P2_START_DATE,'DD-MON-YYYY') and to_date(:P2_END_DATE,'DD-MON-YYYY') order by sample_date;
    The P2_START_DATE is '20-JAN-2011', the P3_END_DATE is '21-JAN-2011'.
    The query returns "No Data Found" when run in APEX, but when I run this in SQLPlus on the host I get data:
    select sample_date,reading from meter_data where sample_date between to_date('20-JAN-2011','DD-MON-YYYY') and to_date('21-JAN-2011','DD-MON-YYYY') order by sample_date
    20-JAN-2011 .39
    20-JAN-2011 .14
    20-JAN-2011 .14
    20-JAN-2011 .18
    21-JAN-2011 .13
    Can someone explain what I'm doing wrong? I have tried a few different formats, with no luck.
    TIA

    Hi Jeff,
    My Requirement is also looks like same, but am not able figure it out the reason why am getting no data found message in my chart(report).
    Requirement:
    I have a page, where two date picker(html5) items let say P30_FROM_DATE, P30_TO_DATE are there, apart from this i have one button as well,
    when the user select the from and to date from the date picker, and as soon as click on the button (SHOW), need to display the 2D Stacked Bar Char.
    so to achieve this, i have created a blank page, under region i have created a chart (2D Stacked Bar Chart), under items--> i have created two date picker items and one button.
    my query is
    SELECT NULL LINK,
           FLOW_STATUS_CODE LABEL,
           COUNT(ORDER_NUMBER) VALUE
      FROM
           OE_ORDER_HEADERS_ALL
    WHERE
           CREATION_DATE
           BETWEEN TO_DATE(:P30_FROM_DATE,'DD-MON-YYYY') AND TO_DATE(:P30_TO_DATE,'DD-MON-YYYY')
    GROUP BY FLOW_STATUS_CODE;
    Issue:
    Once i select the From and To Date, when am click on Show button, am not able to see as desired chart, instead am getting no data found message in the chart location.
    Can you please tell me how to do this.
    i would like to know that, how do i capture those two date item values in my query, and how do i initiate my report when am pressing button.
    please revert back to my below mail.
    Regards
    Santhosh Kumar. K
    [email protected]

  • Finder window date added date modified show date time always

    Is there a preference setting to have a finder window with Date Added and Date Modified columns enabled to always show the date and time? Currently, the column information is dynamic, like just providing a time where you infer Today, or one column does show the date and time but the other only shows the date, or it reads Today, 12:31pm.
    I want every window when displaying Date Added or Date Modified columns to always, consistently show the date and time, e.g. 3/15/14, 7:31AM.
    Aloha and Mahalo!

    I found half of the answer: View:Show View Options - Deselect Use Relative Dates.
    Now I just need a solution to always show the time and not only the date.
    Curiously, when you initially enable a column in a Finder window, it shows both the date and time; however when you return to the window after closing it, you lose the time of day on Date Added, but not on Date Modified. -- Bug or Feature?

  • Date Function.

    Hi all,
    I have requirement to increase the given date for 3 months(ie., 01-jan-2011, 01-apr-2011,etc) that should be handled in RTF Template.
    can anyone help me in giving date function for increasing the date.
    Regards,
    Vinoth.

    Take a look at the following blog post: http://blogs.oracle.com/xmlpublisher/2007/04/a_date_addition.html
    also check out:
    Need help in adding days to a date

  • Customized java date function in heart of JDK

    hi
    how can i force JDK to return Persian or Arabic date instead of christian era?
    i have an application in java platform. i couldn't change code of program, because source is closed and is not reachable. i want to know how can i use a wrapper for date function in java? if it is possible how can i replace java date functionality with my desired date function?
    thanks for any help

    Thanks for your help.
    however i looking for one thing, similar a function wrapper that can substitute original method.
    I don't know where the application use date function and how calls it. so i think that it is possible to change behavior of java itself.

Maybe you are looking for

  • Conversion logic for the following!!

    Hi, Experts can you help me to build a conversion logic for the following 1.BKPF-BLART .setting it to 'ZF'. 2.BKPF-MONAT derived from  posting date 3.BKPF-WAERS set to GBP 4.Dr/.Cr indicator BSEG-SHKZG. If Posting Key (BSEG-BSCHL) is u201840u2019 the

  • If i deletd my music off my ipod how do i get it back

    HELP! All my music on my ipod touch 4th generation! How do i get it back????????

  • Escaping of special signs, once it works, once not

    Hi all, I would like to ask a simple question, I believe some of you know this issue already and know how to solve it, I googled an hour, changed the code 100 times, but with the first $query I get always "Execute not successful." Does anyone know ho

  • Rep-2103

    Hi after migrating to 10g from 6i. when I want to generate a report I am getting the following err: rep-2103: column 'cf street_address' : pl/sql formula returned invalid value or no value below is my code: function CF_street_addressFormula return VA

  • Why won't my nano 3rd generation open or charge

    why won't my nano 3rd generation charge or open