Edition of text column data Format database columns of answers

Hello

We use Oracle Business Intelligence Enterprise Edition v10.1.3.4 on the cube for OLAP Oracle 11 g. Reports we create have (among other things) columns with an underlying type of VARCHAR data in oracle tables.

When we try to change the properties of such a VARCHAR column column, "Data Format" tab shows only 'Plain Text' as an option under the menu drop-down "Override default data Format". Options to display the text 'HTML' or 'LINKS', etc. are not available.

All entries on what can be done in the answers or the repository to get these options for formatting of column data are highly appreciated.

Thank you
Piyush

You set your HardenXSS to false in the instanceconfig.xml file? By default, OBIEE is set to true. Setting to false allows the HTML tags to appear as options for fields VAR. check it out here... Chapter 2, page 37.

http://download.Oracle.com/docs/CD/B40078_02/doc/bi.1013/b31766.PDF

Tags: Business Intelligence

Similar Questions

  • HP Photosmart B110: OCR analysis so I can edit scanend documents in Word format

    I can´t find the software I need to scan documents on my Phtosmart so that I can edit the text in Word format.  I can only scan the text as images.

    I think I should use: R: I , but they want me to pay for the software.

    I h ave wasted a lot of time trying to resolve this issue so far.

    Hello

    A lot of low end printers do not have this expensive software. If you use Word 2007 and above all, you can use the following free to scan to Word add-in:

    https://support.Office.com/en-GB/article/scan-and-edit-a-document-7a07a4bd-aca5-4ec5-ba73-4589ac8b9eed

    There are some free tools to the fottom from the following link:

    http://www.ehow.com/how_4620364_scan-document-Word.html

    Kind regards.

  • Where that we manage for the display and entry date formats

    the specification of the user that is displayed as DD-MON-YYYY dates. Is there a config or properties file that contains the date format for display? Is there a drop down calendar which can be positioned next to an input field to date for a question on a screen?
    Thank you
    Allan

    Hi Allan,

    Just had a look at this takeover bid 10.1 on my machine.

    I noticed that for an attribute date as on a screen, when you use Input type = Year, Month and Day edits (in the file screens), it seems to display the three drop-down lists in the same order (day, month, year), regardless of what's been defined in the configuration line "input-date-formats" in messages. file .properties (locale).

    However, I was not sure of your email if the DD-MON-YYYY format was necessary for the entriesto date, or just for the display of date output. If the latter, then using the following in your messages. (place) .properties file...

    output-date-format = yyyy-MMM-dd
    

    ... will translate dates displayed like this: 1980-Jan-27

    To force the OWD to accept only dates of entry of user in the format '1980-Jan-27' then you can edit the line input-date-formats of configuration:

    input-date-formats = yyyy-MMM-dd
    

    ... However, it is rare to restrict the dates of entry into a single format. As you will see in the messages. (locale) .properties file entry-date-formats is set to a combination of common entry to the regional settings date formats, in addition to the ISO international date format (YYYY-MM-DD, e.g. 1980-01-27).

    See you soon,.
    Jasmine

  • Group by month/year DATE FORMAT column

    Hi Chaps,
    I have a recordset that retrieves data from a database and then presents the data in a table. The data are grouped by "PROJID', which is repeated for each"PROJID"with a control to show/hide to show all the"jobid"relating to this particular"PROJID.
    That's what I have so far:

    Code:
    SELECT              
    tbl_projects.projid,
    tbl_projects.projtitle,
    tbl_projects.projdue, DATE_FORMAT(tbl_projects.projdue, '%%d/%%m/%%Y') as projdue_format,
    tbl_projects.projtype, 
    tbl_projects.projinvtype,
    tbl_projects.FK_custid,
    tbl_projects.projcompletedate
    tbl_languaget.langtname,
    tbl_doctype.doctypename,
    tbl_jobs.jobid,
    tbl_jobs.FK_projid,              
    tbl_jobs.jobname,              
    tbl_jobs.FK_langid,              
    tbl_jobs.jobpages,              
    tbl_jobs.jobshipped,
    tbl_jobs.jobinvsent,   
    tbl_jobs.jobtranslatorcharge,    
    'tbl_jobs' as fromtable,
    tbl_customers.custid,
    FROM tbl_projects  
    INNER JOIN tbl_jobs              
    ON tbl_projects.projid=tbl_jobs.FK_projid  
    INNER JOIN tbl_languaget              
    ON tbl_languaget.langtid=tbl_jobs.FK_langid  
    INNER JOIN tbl_customers              
    ON tbl_customers.custid=tbl_projects.FK_custid
    INNER JOIN tbl_costs
    ON tbl_costs.FK_custid=tbl_customers.custid 
    INNER JOIN tbl_doctype
    ON tbl_doctype.doctypeid=tbl_jobs.FK_doctypeid
    WHERE tbl_projects.projstatus='Complete'        
    AND tbl_projects.projinvtype='Costing Sheet'
    AND langtname!='TH'
    AND langtname!='ID'
    AND langtname!='KO'
    AND langtname!='JP'
    AND jobinvsent='y'
    AND FK_custid = %s
    ORDER BY projid ASC", GetSQLValueString($colname_rsInvPending, "int");
    $rsInvPending = mysql_query($query_rsInvPending, $conndb2) or die(mysql_error());
    //$row_rsInvPending = mysql_fetch_assoc($rsInvPending);
    $totalRows_rsInvPending = mysql_num_rows($rsInvPending);
    Code:
    // REPEAT - FOR EVERY PROJECT
      <?php
      $previousProject = '';
      if ($totalRows_rsInvPending > 0) {
      // Show if recordset not empty
        while ($row_rsInvPending = mysql_fetch_assoc($rsInvPending)) {
          if ($previousProject != $row_rsInvPending['projid']) {
          // for every Project, show the Project ID
      ?>
    Code:
    // SHOW/HIDE CONTROL
        <tr>
        <td colspan="9" class="highlight"><span class="blueBold"><a href="#" onclick="toggle2('proj1<?php echo $row_rsInvPending['projid'] ?>', this)"><img src="../../Images/plus.gif" border="0" /></a> <?php echo $row_rsInvPending['projid'] ?> - </a></span><span class="blueNOTBold"><em><?php echo $row_rsInvPending['projtitle'] ?></em></span></td>
        </tr>
    Code:
    // SHOW/HIDE 
        <?php $previousProject = $row_rsInvPending['projid']; } ?>
        <tr class="proj1<?php echo $row_rsInvPending['projid'] ?>" style="display:none">
        <td>column 1</td>
        <td>column 2</td>

    What I want, is to put in another grouped by stage, where the "PROJID" themselves is in a region of show/hide, grouped by "projcompletedate" (year/month). 'projcompletedate' is in the DATE format, but how to get to PHP/SQL to make the month and year and then group them correctly?

         0) {
          // Show if recordset not empty
          do  {
          if ($previousMonth != $row_rsInvPending['themonth']) {
          // for every Month, show the Month Name
       ?>
        
          , 
        
        
        
        ', this)">  - 
         
    
        
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
          
          
          
    

    In one of your rows in the table, you have style = "" display: none; "." This would prevent the entire line to be displayed, even if she had some data in it.

  • Loading data: formatting of data for the timestamp column

    Hi all

    I have a table with a timestamp column, named created_date. I want to download this table data using load data page. but there is a problem when downloading data, I have a csv file in which data column created_date in two different format as follows,

    03/09/2013-03:33

    02/09/2013-15:24

    the above data throws an error ORA-01821: date format not recognized.

    In Data / Table Mapping page, I tried with HH12:MI MM/DD/YYYY: SS AM. What format should I use for am and pm?


    Please help me solve...

    Thanks in advance

    Lacombe

    I solved it by using the format MM/DD/YYYY HH:MIAM.

    Thank you

    Lacombe

  • DATE format - when you set the column in the table

    Hi friends,

    I came across a piece of code that applied a TO_DATE() function on a column of type date.

    I have two tables t1 and t2 and they have columns col1 and col2 respectively of type DATE
    t1
    col1 DATE
    
    t2
    col2 DATE
    There is also a variable var1 and is defined as follows:
    var1 DATE;
    now, I like conditions below in the code:
    AND to_date(t1.col1,'dd/mm/yyyy') = to_date(t2.col2,'dd/mm/yyyy')
    AND to_date(t1.col1,'dd/mm/yyyy') = to_date(var1,'dd/mm/yyyy')
    This code has failed on the Production with an error: ORA-01861 literal does not match the format string

    I changed the code to remove TO_DATE() and it worked fine. Dev said that they used this function for that if the two columns or variable is in the date format of diff.,... they can be brought into harmony.
    for example if col1 is dd/mm/yyyy and col2 is dd/mm/yyyy, then there will be a problem.

    My doubt is... in a given environment if we create a table and define a DATE type column, or define a variable of type DATE, their format may be different at any time? I think that no.?

    In this scenario, the date format can be different?

    Thank you

    your thoughts are correct. A date is a date, the question of how it is shown on the interface is a different matter.

  • Cut the text column's timestamp hh

    Hi all

    I'm cutting the text column's timestamp hh: 2014-02-18 08:39:56

    I tried the format of data as hh: mm, but it does not work as she filed is defined as text and also Cast (Cast (as float) as timestamp) / cast (as a timestamp) did not work.

    many will appreciate any advice on how to solve this problem!

    Hello

    It is a new feature available in 11g...

    Column properties Goto--> column properties--> format of data--> custom--> hh: mm

    This will display the format hh: mm in the timestamp format.

    Thank you

    prassu

  • Choose between MySQL and Oracle - problem with MySQL text columns?

    Hello.

    New to this forum and Oracle please go easy on me.

    I'm selecting data in a MySQL database.

    This SQL works very well: -.
    Select 'Device_Label' Device"@ed_link «»
    where "Device_ID" = 6665;
    Here, the MySQL Device_Label column is of type varchar (255).

    This SQL fails with the error - ORA-00904: "Device_Tag": invalid identifier
    Select 'Device_Tag' Device"@ed_link «»
    where "Device_ID" = 6665;
    Here, the MySQL Device_Tag column is of type text.
    Column Device_Tag certainly exists and is populated.

    Is the problem related to the MySQL type text column, and is there a solution?

    Thank you.

    Hello
    The ora-997 because of the entry door is not a restriction of the Oracle. You cannot use a table defined as a long in the create table... as select statement..., you would see the problem even if it was a copy of Oracle for Oracle.
    If one of the columns of MySQL are translated as a long in Oracle you will hit this problem.
    The bypass alone is to avoid columns long or you can try to create a view in MySQL by using the cast function, which converts the columns that translate to long something and then use it in the create statement.

    Kind regards
    Mike

  • Copy of Acrobat Reader text columns

    I know that you can use the ALT key while selecting a text box with the mouse and therefore manually copy and paste the player text columns in separate columns of text in Excel, but it's quite tedious.

    Highlighting a section in an entire page that is displayed as columns and then paste into Excel will most likely result a single column with all the text in a line in a single cell. Text of the columns is separated by a space instead of a tab or a coma.

    Player is clearly able to format text in columns on the screen so that the information must be stored in the file so that it can interpret the provision in such a manner.

    Then why can't I copy that it's on the screen and paste into several columns of text in Excel?

    I did several searches on this and have not met anyway to do this using the player.

    There is no such thing as spaces or "column breaks" in the PDF files. Each word, each character, you see is placed on the page regardless of everything above. When you export to Excel (or any other format) attempts of application of "guess" what the file structure should be and convert it into a usable format, but it does not always succeed because it is an extremely complex operation and there are a lot of factors involved.

    For example, the spacing between the columns in the screenshot above is not the same. Whose to say that the text in the second column is not actually part of the third, because they are very close to one another? To the human eye, it's easy to see that they are separated because there is a line between them and because the second column contains numbers and the third argument contains text, but for a computer algorithm which is a very difficult decision to come to.

  • How do I get the text of a JEditorPane with the updated rtf data formatting?

    I want to store the contents of a JEditorPane with rtf data in the database so that I can recover again and show it on the JEditorPane exactly as it was created first. To do this, I need real rtf, not only the text data.

    If I use jEditorPane1.getText (), I get null.

    Finally, I found jEditorPane1.getStyledDocument .getText () (0, jEditorPane1.getStyledDocument () .getLength ()) which returns the text, without any formatting.

    I need the text with the rtf formatting codes to keep the formatting.

    Any ideas?

    Through the EditorKit.

  • Problem of matrix report with model RTF - text columns

    I have problem with matrix necessary report...

    I did it before using the pivot function in rtf export then the stylesheet xsl fo... model

    My problem here is in this case, the desired column (value - the center column) is the text column, and the pivot is based on the aggregate (sum or count) function that I don't want in my case.

    Attached my XML, and sample to in the excel sheet...

    and to understand the business, it's for quality module in EBS... The user can take 3 samples in the same sample for the same item, I want to show the name of tests alongside its results grouped by the number of the sample.

    any help would be much appreciated...

    This can be achieved through custom PivotTable.

    I created the RTF template for your condition.

    PFA (model and output)

  • Kerning in a left-aligned text column

    How do you get the text to go to the right-hand side of a text column when you have a left-aligned paragraph? When I adjust the tracking/kerning there seems to be a right auto dash that I can't work on the deletion of about 5mm.

    Image attached, shows what I mean... I want the first line to go further in all, but he's not going past the guide I put in place.

    Picture 1.png

    Two possibilities: either you have "Lines balancing ragged" enabled (which will try to make each line the same length), or it is caused by the paragraph composer (which attempts to balance the amount of white space at the end of each line).

    Solution # 1: clear the balance of the jagged lines.

    Solution # 2: use the single line composer - who will fill each row until the scope before continuing with the next and the right side will not be as well inconsistent as it is now.

  • How can I change the size of the text column universally?

    I have created a book of a customer to ID CS4. The client decided that he would like a more narrow column of text throughout the book. (Each chapter of the book is its own file). I thought that this could be accomplished by going on the master pages, change margins and reapply the master pages, but it does not work. It does not change the text column, but the image containing the text does not change with it. Except changing the image manually, is there a way to change the existing dimensions of text column universally in a chapter? (I hope I'm being clear on what I'm asking.)

    This would have worked "as what" If the executives were on master pages, I think, but always possible even without master frames if executives adjustment the margins of the page. The secret is 'layout adjustment' which must be turned on before making changes in the margin.

    Go to the Layout > setting layout... and turn on, then make your changes on the master page. No doubt, you're ready for oversets that the adjustment of the width of the frame is likely to cause.

    Peter

  • Change the date format on a database level

    Hello

    I know how to change the date format on a per connection layer.
    Can I change something in the format once and for all on a level username / the oracle instance level?


    Thank you
    Maxim.

    The table below lists priorities of NLS parameter: http://download.oracle.com/docs/cd/B19306_01/server.102/b14225/ch3globenv.htm#g1012681

    This is why many people say that the safest way to avoid the problem of date format is format of date, hardcode in every SQL statement. A logon trigger should also be an option if you are sure that the application doesn't runs another
    ALTER SESSION SET NLS_DATE_FORMAT = «...» ».

  • Data format of hyperlink

    I want to be in a position of the column in the query to access a certain URL, for example, suppose I have a column in the database containing data from URL in there, and I want the user to be able to access the URL for the report. I know I can use the data format 'Hyperlink', but I don't want the URL is displayed in this column, I want, for example, the value of 'Visit website' to appear and when the user clicks on this link, the underlying URL would be open in a separate window.

    somehow, I'm not able to view code... just text

    Replace "visit our Web site.

    '|| Cast (DealHeader.AnotherColumntobeshown as varchar (50)). »

    How your url is stored in the database column? Mine is stored as
    http://server/...

Maybe you are looking for

  • Reinstall OS tc4400

    Hello I have a computer (tablet PC tc4400) who is in a desperate need to be reformatted and then reinstall the operating system.  I have the product key Windows XP Tablet Edition, but I don't see anywhere on microsoft.com and hp.com on where to downl

  • Repeatedly offered Windows Live Essentials 2011 (KB243419)

    Managed to install "windows Live Essentials 2011 (KB243419).  My computer wants to install a second time but the stalls of the installation at the beginning of the attempt.  I want to cancel the second attempt to install this update.

  • What are the programs should go to start?

    Hellomy computer is slow, so I read that I should look at the programs that run at startup. These are programs that run at startup, and I was wondering if I should remove an any of them: http://prntscr.com/1zlgf2 Thank you!

  • Music of Smartphones from blackBerry watch player only about 10% of the music on my media card

    My media card has about 250 songs on it, and when I go to the music player, it shows only a small part of the songs I actually.  I am trying to get all songs into the music somehow player. When I go to the media section, "Explores" shows me everythin

  • Sync blackBerry Smartphones Microsoft Outlook - Vista errors

    Hello I have a new 8300 and I try to sync with my outlook.  I use VISTA.  I loaded the Desktop Manager and it worked the first time but now it doesn't.  Whenever it starts and when it gets to the third step, he stops, freezes, then I get the message: