Using the HTML tags in Oracle Alerts

Hi all,
Can we use the HTML Tags in Oracle Alerts at Alert Details window in Text(D) Column?
Please Provide solution to format the data which is sending to Mail from Oracle Alerts.

What version of ebusiness are you running? You should be able to utilise html tags without an issue in 11i.

Similar Messages

  • How to use the HTML tags in the reports.

    hi.
    can any one tell me how to use the HTML tags in the reports.
    i m using the forms 10 g rel 2 and reports 10 g rel 2 and application server 10g rel 2.

    Set the Contains HTML Tags property of an object to Yes, then the tags in the object's text (if any) will be used to format the object.

  • Can i use HTML coding in oracle alerts

    Hi,
    I have a doubt in oracle alerts.
    can i use html coding in oracle alerts.
    If so can anyone please help me out this.
    Thankig you,
    Regards,
    RR

    hi vingorius ,
    No you cant include html but u can use variables
    To add a variable in a text message to provide context for the iBot attachment
    1. Click the following option:
    If sent as attachment, include this text
    2. Type the text into the text box with a session variable, a repository variable, or a presentation variable using the syntax shown in the following table:
    Variable Type
    Syntax
    Repository @{Variable_Name}
    Session @{NQ_SESSION.Variable_Name}
    Presentation @{Variable_Name}
    For example, Dear, @{NQ_SESSION.Variable_Name}, here is your personalized Weekly Sales Territory Update.
    NOTE: If you want to use the @ character, you need to precede it with the \ (back slash) character to separate it from the variable syntax. For example, Dear @{NQ_SESSION.DISPLAYNAME}, \@ New York, appears as Dear Joe Smith, @ New York.
    Source : BI Guide
    Thanks,
    Saichand.v

  • Controlling the HTML added by Oracle Reports

    Hi,
    I'm having a problem with the HTML being added to the output of my report when it is run on the web. Oracle Reports seems to add all these table tags and a buch of other HTML tags that are not really needed. The tags do not affect the output of the HTML, but it does affect the way the output is saved if you do a save as into a text field. I have done some test and found if I can get Oracle reports from adding all that extra junk that is not needed, the report would run great.
    So the main question here is how can I control the HTML tags Oracle Reports adds when it creates HTML output.
    Thanks,
    Tom

    Jimmy,
    I can’ tell you which product is better in your situation. HTML DB is used to develop applications, so reporting is just one of many features. But based on what you want to create, HTML DB would be a suitable tool for this task. You can create reports, link to those reports, link from report rows to other pages. Let users specify a number of parameters that can be used in the where-clause of your queries, etc. There are limitations of course, especially if you have some advanced printing needs. But since you already have licenses for all Oracle products, I’d suggest you give it a try and see if HTML DB meets your needs.
    Regards,
    Marc

  • How can I eliminate HTML tags from Oracle Text Snippet?

    I perform a search on many tables and on many columns of those tables.
    Some of those columns are VARCHAR2 and some CLOB.
    Also, some of the searchable data are HTML and some are plain text.
    My problem is that ctx_doc.snippet fetches the HTML tags.
    For example I get this, as a snippet result in one of my searches: Qual Germany n1 <p>Test Qual Germany n1</p>
    I want the result to be fetched without the HTML tags.
    In my index configuration I have used NULL FILTER and HTML_SECTION_GROUP.With that configuration I managed to eliminate the HTML tags but not in all cases!
    For example:
    I search table CONTENTS columns TITLE(VARCHAR2) and MAIN_TEXT(CLOB)
    I created the following procedure that concatenates the two columns:
    CREATE OR REPLACE PROCEDURE CONTENTS_PROC( p_id in rowid, p_lob IN OUT clob)
    IS
    BEGIN
    FOR c1 IN (SELECT main_text||' '||title data FROM contents WHERE ROWID = p_id)
    LOOP
    dbms_lob.copy( p_lob, c1.data,
    dbms_lob.getlength( c1.data ));
    END LOOP;
    END;
    I created a user Datastore:
    BEGIN
    ctx_ddl.create_preference( 'content_trans_datastore', 'user_datastore' );
    ctx_ddl.set_attribute( 'content_trans_datastore', 'procedure', 'CONTENTS_PROC' );
    END;
    and finally I create the index:
    CREATE INDEX content_trans_ot_idx ON contents(ORACLE_TEXT_COLUMN)
    INDEXTYPE IS ctxsys.CONTEXT PARAMETERS ('datastore content_trans_datastore SYNC(ON COMMIT) STORAGE INDEX_STORAGE filter ctxsys.null_filter section group ctxsys.html_section_group');
    When I perform the search on those data: <p> <strong>Test Doc-Test </strong> </p> the snippet I get is: Test Doc-Test.
    That's fine, the html tags are removed!
    In another case I search table NCP columns NAME(VARCHAR2) and BODY(VARCHAR2)
    I created the following procedure that concatenates the two columns:
    CREATE OR REPLACE PROCEDURE NCP_PROC( p_id in rowid, p_lob IN OUT clob)
    IS
    BEGIN
    FOR c1 IN (SELECT name||' '||body data FROM ncp WHERE ROWID = p_id)
    LOOP
    dbms_lob.copy( p_lob, c1.data,
    dbms_lob.getlength( c1.data ));
    END LOOP;
    END;
    I created a user Datastore:
    BEGIN
    ctx_ddl.create_preference( 'ncp_trans_datastore', 'user_datastore' );
    ctx_ddl.set_attribute( 'ncp_trans_datastore', 'procedure', 'NCP_PROC' );
    END;
    and finally I create the index:
    CREATE INDEX ncp_trans_ot_idx ON ncp(ORACLE_TEXT_COLUMN)
    INDEXTYPE IS ctxsys.CONTEXT PARAMETERS('datastore ncp_trans_datastore SYNC(ON COMMIT) STORAGE INDEX_STORAGE filter ctxsys.null_filter section group ctxsys.html_section_group');
    When I perform the search on those data: test <strong> </strong>http://deleteme.com the snippet I get is: test <strong> </strong>http://deleteme.com!!!!!!!!!!
    How is this possible? Why in the first case the HTML tags are eliminated and in the second case they are not?
    Thanks,
    Margarita
    Edited by: user13312701 on 07-Sep-2010 08:51

    Doing various tests I found out that the problem is when I need to search in multiple columns of a table.
    That is when I create a user_datastore that uses a procedure that concatenates the columns.
    And especially when the data with the html tags is in a VARCHAR2 column.
    e.g
    --create the table*
    CREATE TABLE CONTENT_TRANS (content_trans_id NUMBER,
    main_text CLOB,
    title vARCHAR2(2000),
    oracle_text_column VARCHAR2(1));
    alter table "CONTENT_TRANS" add constraint CONTENT_PK primary key("CONTENT_TRANS_ID") ;
    --Insert dummy data*
    Insert into CONTENT_TRANS
    (CONTENT_TRANS_ID,MAIN_TEXT,TITLE)
    values
    (1,'lorem','lorem <p>qualification</p> 2.1 ');
    Insert into CONTENT_TRANS
    (CONTENT_TRANS_ID,MAIN_TEXT,TITLE)
    values
    (2,'lorem','lorem <br>qualification</br> 2.1 ');
    --CREATE THE procedure that concatenates main_text(CLOB) and title(VARCHAR2)*
    CREATE OR REPLACE PROCEDURE CONTENT_TRANS_PROC( p_id in rowid, p_lob IN OUT clob)
    IS
    BEGIN
    FOR c1 IN (SELECT main_text||' '||title data FROM content_trans WHERE ROWID = p_id)
    LOOP
    dbms_lob.copy( p_lob, c1.data,
    dbms_lob.getlength( c1.data ));
    END LOOP;
    END;
    --Create the user datastore*
    BEGIN
    ctx_ddl.create_preference( 'content_trans_datastore', 'user_datastore' );
    ctx_ddl.set_attribute( 'content_trans_datastore', 'procedure', 'CONTENT_TRANS_PROC' );
    END;
    --Create the index*
    CREATE INDEX content_trans_ot_idx ON content_trans(ORACLE_TEXT_COLUMN)
    INDEXTYPE IS ctxsys.CONTEXT PARAMETERS ('datastore content_trans_datastore SYNC(ON COMMIT) filter ctxsys.null_filter section group ctxsys.html_section_group');
    exec ctx_doc.set_key_type('PRIMARY_KEY');
    --Perform the query
    SELECT SCORE(1),ct.content_trans_id, ctx_doc.snippet('content_trans_ot_idx', ct.content_trans_id, 'lorem') as snippet
    from content_trans ct
    where contains(ct.ORACLE_TEXT_COLUMN, 'lorem', 1) > 1;
    Results WITH NOT WANTED HTML TAGS:
    6     1     <b>lorem</b> <b>lorem</b> &lt;p&gt;qualification&lt;/p&gt; 2.1
    6     2     <b>lorem</b> <b>lorem</b> &lt;br&gt;qualification&lt;/br&gt; 2.1
    Edited by: user13312701 on 13-Oct-2010 01:18

  • Table/colum used in html pages in oracle apps

    Hello All,
    If we want to find table name against oracle forms in apps . then we can find it from help -> Diagnostics -> examine .But how we will find table name used against HTML Page in oracle apps?
    Thanks..

    Hi,
    It should be in the "About This Page" link -- See these thread for details.
    RECORD HISTORY (or) WHO COLUMNS in R12???
    RECORD HISTORY (or) WHO COLUMNS in R12???
    An alternative would be opening the page in JDeveloper and viewing the source code.
    Thanks,
    Hussein

  • Sorting values by escaping the html tags

    Hi Friends,
    My problem is described below...
    I am facing an issue where I need to sort (main title/ alternate title) by escaping the html tags.
    eg 'Amex' should always be before 'Singer'
    Amex in DB is like Amex.
    Syngo in DB is like &lt;i&gt;Singer&lt;/i&gt
    something can be --- <i>hello<i>
      sql.append("SELECT DISTINCT NVL(ItemDocMeta.xMainTitle, ItemDocMeta.xAlternateTitle) AS generatedPageTitle,");
    other conditions
    // order by
                sql.append(" ORDER BY LOWER(generatedPageTitle) ASC");
    Is there any SQL function that can make it easier?
    I tried using regex in the ith order by clause, but it doesnt work until i keep it in the select part. And I am unable to use regex in the select part with distinct.
    Thanks

    For example :
    SQL> set scan off
    SQL>
    SQL>
    SQL> with sample_data as (
      2      select 'again sort a column' str from dual union all
      3      select '<i>sort</i> a column' from dual union all
      4      select '&lt;i&gt;resort&lt;i&gt;' from dual
      5  )
      6  select str
      7  from sample_data
      8  order by regexp_replace(
      9             utl_i18n.unescape_reference(str)
    10           , '</?[^>]+>'
    11           )
    12  ;
    STR
    again sort a column
    &lt;i&gt;resort&lt;i&gt;
    <i>sort</i> a column

  • When is it a good idea, if ever, to use the font tag?

    Wonder if there is ever a need to use the <font> tag since it is deprecated in HTML 3.801.
    <font size="3" color="red">This is some text!</font>

    (sidenote: this was a trick question...it was deprecated in HTML 4.01   )
    I'm still on my first cup of coffee, but wasn't it deprecated in 4.0?
    http://www.w3.org/TR/REC-html40-971218/present/graphics.html#h-15.2.2
    http://www.w3.org/TR/REC-html40/present/graphics.html#edef-FONT
    And obsoleted in 4.01 Strict (recommended since 1999)
    http://www.w3.org/TR/html401/struct/global.html#version-info
    and obsolete in XHTML 1.01 (if not XHTML 1.0)?
    http://www.w3.org/TR/xhtml11/doctype.html#s_doctype
    Mark A. Boyd
    Keep-On-Learnin'

  • Struts portlet Instance Label problem: Appending the html tags in jsp

    I have created a struts portlet and given it a Instance Label. I have used struts-adapter-html.tld tld in my jsp which is referenced by my struts portlet. But the problem with using this taglib is that the portlet Instance Label is appended to all the html tags on the JSP as a result of which when the page is submitted, formbean will not pick any of the values as the name will not match. Has anyone has faced this kind of problem? How can I prevent the appending of the HTML tags with the portlet Instance Label?
    Please help me overcome this problem..
    Thanks in Advance ...

    1. To begin with, I would not recommend NOT to append portlet instance label to html tags. This is very much required. Take atleast 2 scenarios. If you dropped 2 instances for Same Portlet like News/Articles portlet etc on same page, you need to identify the html fields uniquely for each portlet so that backend java code works properly. Also if you have 2 different portlets assuming you did not give any name to form tag, and if you have html tags with same name, you need to identify them. Remember when portal or desktop is rendered, it is one big html file with html fragmetns from all .portlets files. So I am not sure if there is any option at all, to avoid the appending of instance label value to html tags.
    2. Coming to your usecase, I did had this problem once in 8.1 SPxx long back. All we did was, in the back end code, using BackingFile we could get the intance label value of the portlet. We can get this in pageflow also. Then pass this value and manually append this value to the html field of interest. In your case looks like you have Struts and tld tags. See somehow if you can get portlet instance label in jsp file and pass around to your tag lib code in request parameters etc. This is just one idea. I am not fully aware of your code, so try something along these lines.
    HTH
    Ravi Jegga

  • Safari 5.1 won't play .mov files using the embed tag

    Since upgrading to Lion (and Safari 5.1), any page that loads a .mov file using the <object><embed> tags gives me a "Plug-in Failure" error. If I take the HTML and load the same file using the <video> tag it works fine.
    Did Apple drop support for the embed tag? Is there something going on with my Quicktime plugin?
    Here is an example of a page with an embedded .mov:
    http://www.mediacollege.com/video/format/mpeg4/streaming/example.html
    Does this work for anyone running Safari 5.1 in Lion?

    please check to verify if you have the remains of plug-in attched to DivX and make sure you have installed quicktime plug-in by going to Safari -- Help -- Installed Plug-ins. If you ever uninstalled Divx without using Divxuninstaller, you'll meet this problem.
    Now download Divxinstaller.dmg and run it. Then you'll see the uninstaller in the corresponding application folder.
    Click uninstaller to fully uninstall Divx. Relaunch safari and enjoy!

  • How to use the Wire-Tag in Cairngorm 3 Observer Library?

    Dear Observer-Lib coders,
    Maybe I am posting my issue into the wrong forum, see this thread:
    http://forums.adobe.com/thread/756046
    I'd like to know how to use the Wire-Tag mentioned in the Observer-Lib docu, see:
    http://sourceforge.net/adobe/cairngorm/wiki/HowToUseCairngormObserver/
    Please let me know if there is anybody who knows how to use
    this Wire-tag. A small code example would be great, too!
    Thank you,
    masu

    Ok ... I solved it!
    see this thread: http://forums.adobe.com/thread/756046

  • Using the HTML SAP GUI inside the Enterprise Portal?

    Hello everyone
    In our company we plan to set up the SAP Enterprise Portal (NetWeaver 7.0). The first application we want to provide inside the portal is the SAP GUI that connects to our SAP ERP 2005 system via single sign on. Therefor two different approaches exist:
    1: Using the standard SAP GUI inside a portal iView. In this case every client pc needs the SAP GUI installed.
    2: Using the HTML SAP GUI. In this case we have to set up the integrated ITS in our SAP ERP system.
    Now I have some questions about the second approach. Is the functionality of the HTML GUI equal to the functionality of the standard GUI? If not, what are the restrictions? How high is the additional load on the network and SAP ERP system caused by the HTML GUI? Would you recommend this approach for a system with more than thousand SAP users?

    Hi Marc,
    At least if you consider using webgui, you should test the transactions properly as there are some issues for example with scandinavian characters and lines visible in lists of search helps.
    Also you might want to consider the limitations of the screen resolutions and space which the portal framwork already takes from the gui. This of course is a topic for both HTML/SAP GUI's.
    Kind regards,
    Ville

  • Should I use the FLOAT tag here?

    Hello again-  Should I be using the FLOAT tag in cases where I have several vertically stacked DIVs that have the WIDTH set at 100%? Or am I just being silly in thinking I should?  Thanks in advance-

    No.
    float is something you use when you need text to flow around something. And if you're trying to do a column or an aside, you'd definitely not want it to float, unless it sits inside a larger <div> or element with text.
    Here's an example:
    .container {
              width: 960px;
              margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
              background-image: url("../images/bkg.png");
              -webkit-box-shadow: 0 0 20px #111;
              box-shadow: 0 0 20px #111;
              padding: 1px;
    .sidebar1 {
              float: left;
              width: 180px;
              padding-bottom: 10px;
              color: #fff;
    .content {
              padding: 10px 0;
              width: 780px;
              float: left;
    Here, you have a container and a sidebar and main content area. Both are floated left, in that they start at the left hand side of the container.
    -Mark

  • Has iTunes stopped using the iTunNORM tag?

    Recently, I was trying to figure out whether I wanted to use info generated by the replay_gain algorithm in my iTunNORM tags, so I experimented with a couple of things, and one of things I did was to remove the iTunNORM tag completely from a copy of an aac file. I then added this song to iTunes, I noticed that the file remained unchanged, the iTunNORM tag was not created ( and yes I had the Sound Check feature on)
    So then I picked a song that I had, and I generated 3 aac's from it (one where I amplified the volume, one I decreased the volume, and one with the volume unchanged), so there was no iTunNORM tag in the files, no replay_gain tags in the files. I then added these songs to iTunes, and found out that soundcheck now works without adding the itunNORM tag to aac's; that is to say, if I have Sound Check off, then the 3 test acc's will play at different levels of loudness, and if it is on then they sound to be at the same level of loudness.
    Has anyone else noticed this behaviour?
    Has iTunes stop using the iTunNORM tag?
    BTW:
    I used foobar and qtaacenc (QuickTime commandline encoder) to create the aac files.
    I did this after I had upgraded to iTunes 11, I have since downgraded to 10.7 and I have gotten the same results. I am using the 64 bit windows version of iTunes.

    Also I'm very very interested in knowing the answer to your question.
    I posted yesterday some questions (among which your question itself) here "https://discussions.apple.com/thread/4791322" but nobody answered me yet.
    Did you find out at last if iTunes 10 stopped using the iTunNorm tag and where it eventually write soundcheck info into an mp3 file?
    Thank you very much for your anser.

  • Using the CellRepeater Tag

    Hi
    Is it possible to specify a table header using the cellRepeater Tag ? i am bale
    to get my table rendered dynamically using a cellRepeater tag but am not able
    to get the table header.
    The doc does not specify any attribute for table header . Wonder why it was omitted
    as this is such a cool tag .
    Any inputs to the above would be great
    Thanks
    Kar

    Eddie
    The whole reason for me using the cellrepetaer tag is that we have a requirement
    to dynamically create a table and its columns depending on the total number of
    result objects returned from domain . I was able to get the table dynamically
    created with the dynamically provided number of columns but was not able to incorporate
    table headers for the same . For example if we have 3 columns then we need 3 headers
    , if 2 cols then we need 2 headers etc.
    The way i got around it it have a separate cellrepeater tag and its purpose is
    just to render the column headers depending on the number columns available .
    Is there any struts equivalent to cellrepeater tag ? I wish there were :) but
    hey i still love this tag as it made my job a lot easier .
    Thanks
    Kar
    Eddie O'Neil <[email protected]> wrote:
    Kar--
    This isn't something that the cellrepeater supports in 8.1. It was
    really intended to just
    render cells without the top row set aside as the table header.
    You might be able to accomplish something similar using the repeater
    and occasionally rendering a
    </tr><tr> to close the current row, but I haven't tried this case myself.
    How would you want the table header on the cellrepeater to work?
    Eddie
    kar piyush wrote:
    Hi
    Is it possible to specify a table header using the cellRepeater Tag? i am bale
    to get my table rendered dynamically using a cellRepeater tag but amnot able
    to get the table header.
    The doc does not specify any attribute for table header . Wonder whyit was omitted
    as this is such a cool tag .
    Any inputs to the above would be great
    Thanks
    Kar

Maybe you are looking for