Calendar guest - display Date only - no. Timestamp

Is there a way when you use the calendar control type in a command prompt to force do not display the timestamp of the date part? I tried to use a column with any type of DATE as the quick column but it always shows the full date and timestamp after I select my calendar values and hit go. I tried a few other casting here and there but nothing works as expected. Any thoughts?

Thank you

K

Published by: user_K on April 20, 2010 17:18

Hello

This is the bug

See Bug #: in the following link 9280334. There patch according to the link below.

http://obiee101.blogspot.com/2010/03/OBIEE-patches-101341-part-4.html

Concerning
Kishore Guggilla

Tags: Business Intelligence

Similar Questions

  • Display Date only - per year

    It's simple, no doubt, but I can't find a solution...

    Maybe not in the right place brain...

    I have several dates... IE data entry on different dates.

    And to find these entries... And display only the year...

    That is to say... Data entered in 2011 and 2012...

    You want to display the output of "2012" and "2011" to drop the dates...

    cfquery name = "staty" datasource = "BFP" >

    Select * from inspid

    where inspectorid = #session.inspuser_id #.

    inspdate desc order

    cfquery >

    Output - only - years several dates...

    Sounds simple - but I can't get it in my head...

    THX

    Thanks for the sarcasim...

    Yes, I consider google my book...

    Answer here...

    Select distinct year (inspdate) AS yydate of inspid

    where inspectorid = #session.inspuser_id #.

    #yydate #.

    Coding was fuzzy in my head...

  • Modify a calendar to display on single items by date

    Hello

    I have a small calendar in monthly view that I use to display dates in a table (this is a journal application). I display an image the area of the calendar day if there is data, but the image is displayed for the number of events happening that day. So if there are 4 events calendar January 13 then I get 4 images in the same day box.

    How can I configure it so that it shows only 1 image regardless of the number of events on the Agenda? And no images at all if there is no event for this day there?

    I use Apex 4.0.2.00.06 on 11G hosted by a 3rd party.

    Thank you
    Andrew

    Hi André,.

    The number of images depends on the number of records found for this date. Therefore, you must reduce to a single record per day. Assuming that you don't need to use the links to the individual records, you could do something like:

    SELECT DISTINCT
    HIREDATE,
    TO_CHAR(HIREDATE,'DD/MM/YYYY') LABEL
    FROM EMP
    

    Which must be created as a SQL calendar instead of a simple calendar to allow you to specify the SELECT statement full of yourself.

    Replace the TAG line with everything you want - you can create the tag IMG here, if necessary.

    Andy

  • a date column, with timestamp... How to remove the timestamp

    Hello

    I have a table name WRESTLING, with one of its fieldnamed DATE, using the DATE data type.
    The date format incudes timestamp, can someone help me how to remove the timestamp part.
    I want only the part of date only. I tried this:

    Update DATE is to_char(date,'DD-MON-YYYY') set of CATCH;.
    but the result of all the date inside the table always have timestamp.

    can I use this:
    Update DATE is to_date(date,'DD-MON-YYYY') set of CATCH;.
    and still the same result.

    Can anyone advice on this? pls.
    Thank you

    user9353110 wrote:
    Thank you very much.. If this is the case, we can remove the timestamp when creating view for this table?

    No, you can never remove the component "hour" of a DATE.

    If you do not want to display a date in time (display purposes only!), use TO_CHAR to "transform" the DATE to a string with the format mask

    SQL> alter session set nls_date_format = 'dd-mm-yyyy hh24:mi'
      2  /
    
    Session altered.
    
    SQL> select sysdate
      2    from dual
      3  /
    
    SYSDATE
    ----------------
    17-03-2010 09:28
    
    SQL> select to_char (sysdate, 'dd-Mon-yyyy')
      2    from dual
      3  /
    
    TO_CHAR(SYSDATE,'
    -----------------
    17-Mar-2010
    
    SQL> select to_char (sysdate, 'yyyy-MON-dd')
      2    from dual
      3  /
    
    TO_CHAR(SYSDATE,'
    -----------------
    2010-MAR-17
    
    SQL> 
    

    NOTE: the example of last two are not DATEs! They are STRING

  • Display data from another web application

    Hello

    I hope than to display data from my application 'team' on my 'articles' approx. basically display image of the author, email etc., which comes from the app TEAM. I know that this is possible.  I use the data of the src field extract the name of the authors, but of course this provides only a link. Are there tutorials - what can anyone tell me? Thank you.

    So does that mean as a concrete response by using the system of normal with BC, is tag that you insert this code for your team web app {module_webapps, 123456, i, {tag_author_id}} on your layout displayed products app page.  ID tag of the author is a field set up in the articles web app and a field of the data source to connect to your team application.

  • query to display data in table with several detail table

    Hi all

    I have a few cases with a table header that have more than 3 table of detail, and I have to generate the query to show all the data horizontally.

    tblHdr have column A (PK)

    tblDtl1 have column A (FK), B (PK)

    tblDtl2 have column A (FK), C (PK)

    tblDtl3 have column A (FK), D (PK)

    and I need a query to display data like this:

    AB1C3D1
    AB2C4D2
    AC5D3
    AC6

    all the Details of the table should display data based on the relationship of tblHdr (A).

    tblDtl1 have only 2 rows of data for the FK A

    tblDtl2 just for FK 4 lines of data

    tblDtl3 only 3 lines of data for the FK A

    Another example:

    AB1C1D1
    AB2C2
    A

    B3

    tblDtl1 only 3 lines of data for the FK A

    tblDtl2 have only 2 rows of data for the FK A

    tblDtl3 have only 1 rows of data for the FK A

    Please shed some light. for the record, I'll use this query in ADF, so I'll put using PLSQL in second priority.  I prefer to do it in the SQL query.

    Thank you

    Here are 3 ways. First test of data:

    drop table ta purge;
    create table ta as
    SELECT 'A' AS A FROM dual
    union all
    select 'B' from dual;
    
    drop table tb purge;
    create table tb as
    SELECT 'A' AS A, 'B1' AS B FROM dual
    UNION ALL
    SELECT 'A', 'B2' FROM dual ;
    
    drop table tc purge;
    create table tc as
    SELECT 'A' AS A, 'C1' AS C FROM dual
    UNION ALL
    SELECT 'A', 'C2' FROM dual
    UNION ALL
    SELECT 'A', 'C3' FROM dual
    UNION ALL
    SELECT 'A', 'C4' FROM dual ;
    
    drop table td purge;
    create table td as
    SELECT 'A' AS A, 'D1' AS D FROM dual
    UNION ALL
    SELECT 'A', 'D2' FROM dual
    UNION ALL
    SELECT 'A', 'D3' FROM dual;
    

    Now 3 solutions: full join, group by and pivot:

    with b as (
      select a, b,
      row_number() over(partition by a order by b) rn
      from tb
    )
    , c as (
      select a, c,
      row_number() over(partition by a order by c) rn
      from tc
    )
    , d as (
      select a, d,
      row_number() over(partition by a order by d) rn
      from td
    )
    select a, b, c, d
    from ta left join b using(a)
    full join c using(a, rn)
    full join d using(a, rn)
    order by a, rn;
    
    select a, max(b) b, max(c) c, max(d) d
    from (
      select a, null b, null c, null d, 1 rn
      from ta
      union all
      select a, b, null, null,
      row_number() over(partition by a order by b) rn
      from tb
      union all
      select a, null, c, null,
      row_number() over(partition by a order by c) rn
      from tc
      union all
      select a, null, null, d,
      row_number() over(partition by a order by d) rn
      from td
    )
    group by a, rn
    order by a, rn;
    
    select A,B,C,D from (
      select 'A' tab, a, null val, 1 rn from ta
      union all
      select 'B' tab, a, b,
      row_number() over(partition by a order by b) rn
      from tb
      union all
      select 'C' tab, a, c,
      row_number() over(partition by a order by c) rn
      from tc
      union all
      select 'D' tab, a, d,
      row_number() over(partition by a order by d) rn
      from td
    )
    pivot(max(val) for tab in('B' B, 'C' C, 'D' D))
    order by a, rn;
    
    A B C D
    A B1 C1 D1
    A B2 C2 D2
    A C3 D3
    A C4
    B

    Personally, I would prefer to view the data by using a 'join the union', in order to avoid the impression that the different detail records are related somehow.

    select ta.a, b, c, d
    from tb full join tc on 1=0
    full join td on 1=0
    right join ta on ta.a in (tb.a, tc.a, td.a);
    
    A B C D
    A B1
    A B2
    A C1
    A C2
    A C3
    A C4
    A D1
    A D2
    A D3
    B
  • Update calendar with a date picker and the text field

    Hello

    I have a box of text, dates and a button selector. When I click on the button, I want the calendar in a region to be updated with the details.

    For example: I select date: August 15, 2012 and text: meeting customer. When I click on the button (Update), calendar should display my meeting details for the respective date.

    Any suggestions please

    -Shema

    Although Santosh

    It's a normal insert processes for the elements of the Page.

    for example: insert into EMP (ENAME, HIREDATE) Values(:P3_NAME,:P3_HIREDATE);

    And you need to create a calendar of sql to do this for the extraction of data from this respected roll on this date...

    You must provide a query Select normal for this calendar of Sql

    For example, it is the request that I used in this page...
    Select ENAME from EMP HIREDATE

    Thank you

  • DataTemplate not display data, but showing the right amount of lines

    I just started to use Datatemplates to convert our answers on Publisher reports. Basically, I use the PASS-THROUGH method BI Server.
    Copy the SQL from the SQL field advanced in BI answers.
    Place the new SQL in DataTemplate
    Construction DataStructure

    It seems to a sufficient quantity of lines, but no data is displayed. I checked the data multiple times for misspellings and other simple items but I'm not. It seems to make a connection very well, but it does not show and value in data elements. It returns 6 empty lines.

    Attached XML example:
    < name of dataTemplate = "FiveDayCo" defaultPackage = "" than one dataSourceRef = "OracleRPD" > "
    Properties of <>
    < property name = "include_parameters" value = "true" / >
    < property name = "include_null_Element" value = "true" / >
    < property name = "include_rowsettag" value = "false" / >
    < property name = "scalable_mode" value = "off" / >
    < property name = "db_fetch_size" value = "300" / >
    < / properties >
    < Settings / >
    < lexicals / >
    < dataQuery >
    < sqlStatement = "COOR" name > <! [CDATA [SELECT "-match". "% response time of 5 day correspondence" "saw_0, 90% ' saw_1," "-correspondence".]] "% Response time of 5 day match"-90 saw_2,""-match details "". "" Type of correspondence' saw_3 OF finance WHERE ("-match details". "") (Match type' IN ('Customer Service', 'Systematics', 'Not available', 'Privacy')) AND ("Business Unit". ("' Business unit ID" = 6.00) AND ("'-record details" "." ") Record type' = 'Core') AND ("-matches details". "") (Correspondence of State' <>'closed') AND (("-primaire terminé Date prévue".)) "" Primary year expected "= cast (YEAR (date '' 2010-07-01) as char (4))) AND (" "-Date completed expected primary" "." ")" Primary planned calendar month "= MONTH (date ' 2010-07-01'))) [ORDER BY saw_1, saw_3]] > < / sqlStatement >"
    < / dataQuery >
    < dataStructure >
    < group name = "Coorespondence" source = "COOR" >
    < element name = "FiveDayCoorespondenceTime" source = function "saw_0" = "" / >
    < element name = "ValeurIPC" source = function "saw_1" = "" / >
    < element name = "Variance" source = function "saw_2" = "" / >
    < element name = "CoorespondenceType" source = function "saw_3" = "" / >
    < / Group >
    < / dataStructure >
    < / dataTemplate >

    A few things to check. The sql by itself returns the data?

    Also, you need the following: ? If a package is not used/needed, remove the reference.

    The following tag should suffice.

    Your datastructure code must be: (for the name of the element using the value (instead of source =) and I removed the syntax of the function since you don't specify any function like sum, average)








    For a reliable data model reference, check the following: http://blogs.oracle.com/xmlpublisher/2009/06/data_template_progression.html

    Hope that helps!

  • Display data from the database in a table

    Hello

    How to display data from my database in an ADF table using a backing bean? I created an arraylist in the bean, but only the last row of my query is displayed in the table...

    Thank you...

    Hello

    Create a simple Java class that implements Serializable. Create attributes that represent each column in your table. This class represents on the row of your table. A list of these objects, and you can fill your af:table.

    Visit this link below for an example.
    Re: Is it possible to create a static array of ADF and the tree?

    Kind regards
    Amélie Chan

  • How to display date / time in the browser console?

    How to display date / time in the browser console?

    You can set through the Options (gear icon) page in the Web Console (Firefox/tools > Web Developer).
    This applies to the browser console and the Web console.

  • Sometimes a web page is displayed with only text and no picures. It is not always the same site and is not always the case. If I'm going to explore for the same website that always works

    Sometimes a web page is displayed with only text and no picures. It is not always the same site and is not always the case. If I'm going to explore for the same website that always works

    Hello

    Also try a Ctrl + F5 refresh. This allows to bring the content of the page again.

  • My Apple Watch displays date yesterday instead of today's date. How can I fix it?

    My Apple Watch displays date yesterday instead of today's date. How can I fix it?

    Hi Steven

    It can help to restart your iPhone and your watch. Turn on both devices off the power together first, and then restart your iPhone before restarting your watch:

    -To switch off your watch: press and hold the button side until you see the cursor off the power; slide it to turn off;

    -To switch on: press and hold the side button until you see the Apple logo.

  • How to display data series changed after each step in labview gui, that is to say after the match point fantasy, after substring etc.

    Hi, I have a labview GUI that receives data serially through VISA and basically chops to the strings and realize games until I have values that I'm looking for. I have then convert Ascii string in decimal and feed the new values to a waveform. However, I discovered that some of the output values are incorrect. I checked this by pulling data through Realterm.

    Is it possible that I can see the modified data after each step in the user interface so that I can find where the problem is? I created indicators after each step, but they do not display data, I guess that its because the data is moving too quickly.

    I am very new to labview and struggled through every bit of this GUI, as none of you regular posters know. If you can suggest a solution, please know that I will probably ask more fundamental questions in order to implement your solution.

    I enclose my GUI with a screenshot of the same data through the Realterm. Basically any where you see xxxx TR TR or W xxxxW, know that it is the data between them is to say xxxx that corresponds to the data of interest. Everything else is ignored.

    I suspect that the problem lies in the string to decimal conversion and where 3 digit values increase to 4-digit values. That is, all values of less than 850 are correct but it is the maximum value is reached. My values are expected to reach 2500. Any help would be greatly appreciated.

    You have other debugging tools available to you.  You can use the run culminating to slow down the code and show you the data flowing from each wire.

    You can create a Subvi, which takes the data of each wire and written to a log file if you can review it later.

    You give not the screenshots to your message.

  • Copy the files to a flash to another drive "after a certain date only.

    It is possible to copy all the files to a flash drive to another flash drive "after a certain date only' uses the function of 'Windows Explorer '?  In this way I would like to avoid having to delete all target flash player before updating for the latest directories and files.

    Hello

    This can be done using Windows Explorer, you will need to create a program that runs the task. I suggest you to ask your question in the MSDN forums for assistance on this issue.

    http://social.msdn.Microsoft.com/forums/en-us/categories

  • How to display date information in a data log table

    Hello

    I want to display data during the data acquisition process. How can I add the time stamp as one of the column in the Table of 'results' located bottom left of the sample code?

    Thank you

    Ryan

    Here is an example of the use of ordinary table instead of the express. You will need to convert your dynamic data to a scalar with the dynamic data conversion function.

Maybe you are looking for

  • I did all the requirements but still not put pictures in my TABS

    I have adjusted the cache, checked all the boxes and set up the tabs as described, but again, I don't see no pictures in TABS?Any thoughts, please?

  • Mid-2015 MB Pro Power adapter problems black pine

    I had at least 10 portable Mac over the years and this is the first time I've seen that happen. The second axis on the adapter is black and will not charge the laptop. He's okay, sometimes if you stand up straight but it's absolutely not funny. You c

  • Satellite C660 - update Intel HD graphics card problem

    Hello Sorry for my level of English, I'm French I have a problem without a solution with my Satellite C660 (for the moment, I hope!) I downloaded the software google sketchup 8, dedicated to the development of architecture, but it does not work, I st

  • e-mails began to show in HTML. How to read as usual

    My dad is 93 and emails in VISTA are gobblygooh (her words), I think that its HTML code. How can I stop it?

  • Hidden restore partition...

    The original HD has the OS partition and the hidden restore partition.  Since then, I installed a larger hard drive and installed XP Pro (SP3).  I still have the original HD.  Is it possible to burn an image or a copy of the hidden partition on a CD