Html table in email notification

Hi,
I have a complex type variable in my payload. This complex type has 2 columns. Hold Name and Hold Reason. There can be multiple Hold Names and Hold reasons. Hence i want to show this in a tabular format in the email activity in BPEL. Can someone help me on this.
Eg: <holds>
<holditem>
<name>INV_PO </name>
<reason> Invalid PO </reason>
</holditem>
<holditem>
<name>INV_PO_LINE </name>
<reason> Invalid PO Line </reason>
</holditem>
</holds>
Email Template should look like:
Holds:
INV_PO Invalid PO
INV_PO_LINE Invalid PO Line
Thanks,
Lakshmi.

I managed to do this using assign activities in a BPEL You can get tags using &lt; and this method works when emailing outlook.
I used strings and a BPEL loop to build up rows into a table.
The assigns ended up looking like:
<copy>
<from>string('&lt;table border=1&gt;&lt;TR&gt;
&lt;th&gt;Error Log ID&lt;/th&gt;
&lt;th&gt;Creation Date&lt;/th&gt;
&lt;th&gt;Component&lt;/th&gt;
&lt;th&gt;Composite&lt;/th&gt;
&lt;th&gt;Integration Name&lt;/th&gt;
&lt;th&gt;Message Identifier&lt;/th&gt;
&lt;th&gt;Other Data&lt;/th&gt;
&lt;th&gt;Error Message&lt;/th&gt;
&lt;th&gt;Dump&lt;/th&gt;
&lt;/TR&gt;')</from>
<to>$ErrorTable</to>
</copy>
This dosen't show here properley I used & l t ; and & g t ; (without spaces inbetween)
Edited by: RobertMetcalf on May 16, 2012 9:38 AM
Edited by: RobertMetcalf on May 16, 2012 9:39 AM

Similar Messages

  • How to create a HTML Table in Workflow Notification ?

    Hi,
    I have a requirement to display multiple records in a HTML table in Workflow Notification. I have developed the code. In my Notification, I am seeing HTML tags and not a formatted HTML report. Appreciate your help and comments.
    The following is what I have done in WF.
    1. Define attribute in WF of type Document
    2. Define Message in Text Body ( Should i also copy the same thing in HTML Body ??)
    The following is my PL/SQL
    Variable l_table is defined as varchar2(30000)
    -- HTML Table Heading
    l_table := '<table><tr><td>Amount</td>
    <td>Description</td>
    <td>Type 1099</td>
    </tr>';
    WF_ENGINE.SetItemAttrText(itemtype,
    itemkey,
    'FRB_DISTRIBUTION_HISTORY',
    l_table);
    When I get a notification, I get the following sample
    <table><tr><td>Amount</td>
    <td>Description</td>
    <td>Type 1099</td>
    <td>Receipt Required Flag</td>
    <td>Invoice Id</td>
    <td>Invoice Distribution Id</td>
    </tr><tr><td>100</td>
    <td></td>
    <td>MISC7</td>
    <td></td>
    <td>429684</td>
    <td>464834</td>
    </tr></table>
    I am missing something, Can you please let me know, what am i missing.
    Kiran

    Hi Matt,
    I am working on AP_WFAPPROVAL_PKG (Oracle EBS Invoice Approval Package).
    I have defined a Workflow Attribute as Type 'Document' (in Workflow Builder)
    In my AP_WFAPPROVAL_PKG Package, I am retrieving my values and returning it to a variable of type varchar2(32000) and seting the WF variable(displayed below).
    WF_ENGINE.SetItemAttrText(itemtype,
    itemkey,
    'FRB_DISTRIBUTION_HISTORY', -- This is my WF Attribute of type 'Document'
    l_table);
    When I see the notification, i get the format displayed below (I do see the correct values generated, but they appear as tag, and not as a HTML Table Report)
    <table><tr><td>Amount</td>
    <td>Description</td>
    <td>Type 1099</td>
    <td>Receipt Required Flag</td>
    <td>Invoice Id</td>
    <td>Invoice Distribution Id</td>
    </tr> <tr><td>60</td>
    <td></td>
    <td>MISC7</td>
    <td></td>
    <td>429681</td>
    <td>464827</td>
    </tr><tr><td>40</td>
    <td></td>
    <td>MISC7</td>
    <td></td>
    <td>429681</td>
    <td>464828</td>
    </tr>
    Please advise
    Kiran

  • HTML Content in Email Notifications

    Hi
    I was wondering if HTML content is supported in BPM Email notifications. The html code in the BPM UI task email notification is coming as plain HTML in the email, can you please let me know if there is any flag that needs to be turned on to process the HTML code before the email is sent out?
    Thanks
    Sasi

    i think standard notification doesn't support this.

  • Need to send HTML table via email

    Hi Experts,
    I am using the FM EFG_GEN_SEND_EMAIL to send email but unable to send html content through this. I know I could use SO_SEND_OBJECT FM too which automatically sends the email in HTML format but it doesn't have from option(FROM EMAIL ID)
    I tired manually chaning the format from RAW to HTM via debugging and then found that its sending the html format email.
    Request you to please let me know if we could achieve the same.
    Thanks,
    Rajwin

    Hi,
    rcently we idd this requirment .
    But every thing we did it from ABAP side   not from WDJ Side
    Generation of PDF after enterring the data will be send via email along with PDF Data so try to use  Smart Forms
    Regards,
    Govindu

  • How to send html email notification in bpel

    hi gurus,
    i want to send html email notification from bpel.
    before, i already successful send html email with attachment, but when i send an email without attachment, then the body message will turn into a plain text.
    as i check from the email accepted, email with attachment will have a mime type "text/html" but if no attachment then it will be "text/plain"
    from the bpel configuration, by default the mime type already set to "text/html; charset=UTF-8", below is the sample configuration in my bpel process
    [quote]
    <copy>
                                    <from>string('text/html; charset=UTF-8')</from>
                                    <to variable="varNotificationReq"
                                        part="EmailPayload">
                                        <query>ns10:Content/ns10:MimeType</query>
                                    </to>
                                </copy>
    [/quote]
    i think this suppose to be a easy configuration, but i'm not sure whether i miss something in configuration the email process or this is a bugs in bpel.
    environment:
    linux
    jdev 11.1.1.6
    do u guys ever facing a same problem or have a solution to this ? please throw some light.
    thanks
    ===
    update, i found a temporary solutions.
    so i add a attachment from the process design, and then i change it from the source.
    [quote]
    <copy>
                                    <from>
                                        <literal>
                                            <Content xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
                                                <MimeType xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">multipart/alternative</MimeType>
                                                <ContentBody xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
                                                    <MultiPart xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
                                                        <BodyPart xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
                                                            <MimeType xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"/>
                                                            <ContentBody xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"/>
                                                            <BodyPartName xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"/>
                                                        </BodyPart>                                            
                                                    </MultiPart>
                                                </ContentBody>
                                            </Content>
                                        </literal>
                                    </from>
                                    <to variable="varNotificationReq"
                                        part="EmailPayload">
                                        <query>ns10:Content</query>
                                    </to>
                                </copy>
    <copy>
                                    <from>string('text/html; charset=UTF-8')</from>
                                    <to variable="varNotificationReq"
                                        part="EmailPayload">
                                        <query>ns10:Content/ns10:ContentBody/ns10:MultiPart/ns10:BodyPart[1]/ns10:MimeType</query>
                                    </to>
                                </copy>
                                <copy>
                                    <from>string('your message')</from>
                                    <to variable="varNotificationReq"
                                        part="EmailPayload">
                                        <query>ns10:Content/ns10:ContentBody/ns10:MultiPart/ns10:BodyPart[1]/ns10:ContentBody</query>
                                    </to>
                                </copy>
    [/quote]
    make sure you put the mime type multipart/alternative into the email payload content. by default, when you add attachment, it will generate mime type multipart mixed automatically.
    if you don't change it to multipart/alternative, your email will show a attachment, but actually your email doesn't contain any attachment.
    and then for the message and mimetype make sure you have that ns10:bodypart, because this email already been set as a multipart email.
    when you add attachment, by default it will generate 2 body part, first one is for the body message and the second one is for the attachment. since i only want to use the body message only, then i have to erase the second bodypart
    with this workaround, i can send a html email without attachment perfectly.
    but i have to take note, when i updating the email process from process design, then the source will be generated again automatically, and the edited one will be replaced.
    thanks.

    Make sure you upload all of the images used in your email to a server you control. Then, change your image paths to point to those uploaded images with absolute links.
    You will get marked as spam if you attempt to send images as attachments to a large list of recipients and most email clients won't download images to begin with, so make sure your html email makes sense with broken pictures.
    CSS support is spotty across email clients, if you use css, make sure it's inline, not embedded in the <head> or externally linked in the <head>. Some email clients strip out the <head> section entirely.
    Basically, you need to design your html email as if you haven't moved out of the 90's yet, as far as web design is concerned, in order to get maximum cross client compatibility.
    Then, when you're ready, I would suggest using a service like www.icontact.com or www.constantcontact.com if your subscriber list is anywhere over 100 or so recipients.

  • Help! How to send Dynamic HTML table as an email?!

    hi
    i want to send a dynamic html table as an email
    i am using php/mysql and have a mysql database
    i have a dynaimc table contins some data from the database
    i have a form with textbox to write the email in and a submit button
    i want to send the the table (or the information in the table) when i submit the form
    is that possible???
    plz help!

    Ok, now I have you.  You create a queary to select the data you want, then use this code
    $data = mysqli_query($dbc, $query) or die(mysqli_error($dbc));
    while ($row = mysqli_fetch_array($data))    {
    //Sending Email to form owner
    $header = "From: [email protected]\n"
      . "Reply-To: $email\n";
    $subject = "Data From DB into email";
    $email_to = "[email protected]";
    $message =
    $row['first_name'].
       $row['last_name']
    mail($email_to, $subject ,$message ,$header ) ;
    So for each column, you will enter this
    $row['first_name'].
    So if the column is state, you would put
    $row['state'].
    Hopefully this is the answer you were looking for.
    Gary

  • Auto Email notification based on data from Table

    I need to send a auto email notification based on the information updated on the table. Like when response table is updated as 90 for ( column users).A Email should automatically trigger to the different users listed in a table named (email).. I have stored the value of users in a table named response and the person to whom i need to be email has been stored in table name email.
    I'm using Oracle 10g Express edition
    Let me know how this can be done automically.

    Wrong forum...should be over in the Database Forum or PLSQL forum. You need to add a trigger to the table and the trigger needs to utilize the UTL_MAIL or UTL_SMTP packages. You can get more info on UTL_MAIL here or more info on UTL_SMTP here
    and here is some example code for a trigger:
    create or replace trigger my_trigger
    after insert or update
    on my_table
    for each row
      begin
       utl_mail.send(sender     => '[email protected]',
                     recipients => '[email protected],[email protected]',
                     cc         => '[email protected]',
                     bcc        => '[email protected]',
                     subject    => 'utl_mail test',
                     message    => 'if you get this message it worked!');
    end my_trigger;UTL_MAIL and UTL_SMTP may need some configuring before you use them, see the links above for details.

  • HTML button in the eMail notification sent by Workflow

    I have a workflow which send eMail notification to the users. I want to add 2 HTML buttons for approve and reject on this email notification.
    For this I have embedded the following HTML snippet in the advanced properties (Message Body) of the email action in the workflow -
    <!DOCTYPE html><HTML xmlns="http://www.w3.org/TR/REC-html40" xmlns:v = "urn:schemas-microsoft-com:vml" xmlns:o = "urn:schemas-microsoft-com:office:office" xmlns:w = "urn:schemas-microsoft-com:office:word" xmlns:m = "http://schemas.microsoft.com/office/2004/12/omml"><HEAD><TITLE></TITLE> <META content="text/html; charset=us-ascii" http-equiv=Content-Type> <META name=GENERATOR content="MSHTML 10.00.9200.17183"></HEAD> <BODY> <P><IMG style="TEXT-ALLIGN: left" src="../Site%20Assets/abc_icon.png"></P> <P><STRONG>******************************************<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Styled Workflow eMail<BR>******************************************</STRONG></P> <P><STRONG>Full Name: [%Current Item:FullName%]</STRONG></P><FONT color=#0000ff size=2 face=Consolas><FONT color=#0000ff size=2 face=Consolas><FONT color=#0000ff size=2 face=Consolas> <P></FONT></FONT></FONT><INPUT id=btnApprove type=button value=Approve>&nbsp;&nbsp;<INPUT id=btnReject type=button value=Reject></P></BODY></HTML>
    <!DOCTYPE html><HTML xmlns="http://www.w3.org/TR/REC-html40" xmlns:v = "urn:schemas-microsoft-com:vml" xmlns:o = "urn:schemas-microsoft-com:office:office" xmlns:w = "urn:schemas-microsoft-com:office:word"
    xmlns:m = "http://schemas.microsoft.com/office/2004/12/omml"><HEAD><TITLE></TITLE> <META content="text/html; charset=us-ascii" http-equiv=Content-Type> <META name=GENERATOR content="MSHTML 10.00.9200.17183"></HEAD>
    <BODY> <P><IMG style="TEXT-ALLIGN: left" src="../Site%20Assets/abc_icon.png"></P> <P><STRONG>******************************************<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    Styled Workflow eMail<BR>******************************************</STRONG></P> <P><STRONG>Full Name: [%Current Item:FullName%]</STRONG></P><FONT color=#0000ff size=2 face=Consolas><FONT color=#0000ff size=2
    face=Consolas><FONT color=#0000ff size=2 face=Consolas> <P></FONT></FONT></FONT><INPUT id=btnApprove type=button value=Approve>&nbsp;&nbsp;<INPUT id=btnReject type=button value=Reject></P></BODY></HTML>
    However when the user receives the mail, the buttons appear as plain text. Moreover the images are also missing.
    Am I  missing any specific configuration? Is there anything more that needs to be done to render a HTML button and images in an email generated from a workflow?
    I would appreciate, if anyone could please help me resolve this issue.

    Hi Arghadip Kar,
    Im glad you liked my name. )
    Anyhoo, you are correct. A Task is used. I checked in SWI1 and the task associated with the mail is TS90000101. (not a ws) Does this help at all?
    In the Business Process, it is the part where the system informs a Training coordinator that a training request by an employee have been approved by his/her manager.
    Do I still check the FM below or are there any other way given the info above?
    Thank you!
    Olekan

  • Email notifications begin sent in text format rather than html format

    Hi all,
    I have encountered a strange issue wherein i get email notifications in text format with all html code in the email(trying to open wf emails in netscape navigator)...but for all others the emails are begin sent in correct and decent HTML format......is there any prefernce that has to be set up in local mail client for me to receive email notifications in HTML format.
    Thanks in advance
    Aparna

    Open the message and see if there are contents in HTML body.
    If you need the message in HTML format, make sure the correct HTML tags are in place in HTML Body.
    If you do not need the message in HTML format, make sure the HTML Body is empty.

  • Monitor exclusive lock on a table and send notification email through EM

    Hi,
    I have Oracle10g and EM10G running on different servers.
    now one of my plsql code creates an exclusive lock on one of my tables.
    i want to monitor this exclusive lock on this table through the EM. and when the exclusive lock on the table is continuing for more than 1 hour, i want an email notification sent to me by the EM.
    How can i do this?
    Can someone help me achieve this above situation.
    Thanks.
    Philip.

    One of the nice about OEM is that a lot of the things are self explanatory. E.g. I never read docs to set up our first user defined metrics. It is really just to dive in there. Define a metric and the sql you want to use for monitoring the lock. Then you just go and create email notification for this when it hits warning or critical treshold.

  • Email notification error...

    Hi All,
    I have created new procedure for email notification. When i execute the procedure email is triggered but in the email body it gives error message as mentioned below. Actually its not error message it outputs the code.
    CREATE OR REPLACE Procedure PROC_STATUS_MAIL_TEST
    IS
          l_ana_report  VARCHAR2(32767); --empty_clob; --clob :=
          l_header VARCHAR2(1000);
          l_footer VARCHAR2(200);
          cnxn UTL_SMTP.connection;
    BEGIN
               l_ana_report := '<style type="text/css">
        <!--.style1 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt; font-style: normal; color: #FF0000}-->
        <!--.sidebar1 { font-family: Arial, Helvetica, sans-serif; font-size: 10px}-->
        <!--.text { font-family: Arial, Helvetica, sans-serif; font-size: 12px}-->
        </style>
        <center><b><font face="Arial">Ana Run Summary Report '
                    || TO_CHAR(SYSDATE, 'DD-MON-YYYY HH:MI AM') || '<br><br></font></b></center>'
                    || ' <div align="center"><table width="95%" border="1" cellspacing="0" cellpadding="1" </div>'
                    || '<span style="font-size: 10pt; font-family: Arial"> </span> '
                    || '<tr bgcolor=b4b4b4><td align="center"> <font size="3"> <b>'
                    || 'Ana</b></td><td align="center"><font size="3"> <b>'
                    || 'Start Time</b></td><td align="center"><font size="3"> <b>'
                    || 'End Time</b></td><td align="center"><font size="3"> <b>'
                    || 'Run Duration (mins)</b></td><td align="center"><font size="3"> <b>'        
                    || 'Status</b></font></td></tr> ' || UTL_TCP.CRLF;
                    FOR curr_refresh IN (SELECT AN.ANA_ID,AN.NAME ANA_NAME,ARH.RUN_START_TIME START_TIME,ARH.RUN_END_TIME END_TIME,
                                         ROUND(((ARH.RUN_END_TIME-ARH.RUN_START_TIME)*24*60),2) RUN_TIME_SECS,ARH.JOB_STATUS STATUS
                                         FROM
                                         RUN_HISTORY ARH,ANA AN,
                                              (SELECT ANA_ID FROM ANA_SELECTED_DATA_TYPES
                                               WHERE DATA_TYPE_ID IN (SELECT DATA_TYPE_ID FROM DATA_TYPE_LU
                                               WHERE IND IN ('P','L'))) ADT
                                          WHERE
                                         ARH.ANA_ID=ADT.ANA_ID
                                         AND AN.ANA_ID=ARH.ANA_ID
                                         AND ARH.RUN_START_TIME>TO_DATE(SYSDATE-20)
                                         ORDER BY ARH.RUN_START_TIME DESC)  LOOP  
               l_ana_report  := l_ana_report ||
               '<tr><td align="center">'|| curr_refresh.ana_name                 
                  || '</td><td align="center">' || curr_refresh.start_time || '</td><td align="center">'
                  || curr_refresh.end_time || '</td><td align="center">'|| curr_refresh.RUN_TIME_SECS ||
                  '</td><td align="center">'|| curr_refresh.STATUS ||
                  '</td> </tr>' || UTL_TCP.CRLF;
                   exit when length (l_ana_report) > 32500;  
          END LOOP;
           l_ana_report := l_ana_report || '</table><br><br>';
        --   l_body := UTL_TCP.CRLF ||
        --   UTL_TCP.CRLF || l_ana_report;
        --   l_footer := UTL_TCP.CRLF || '--' || K_BOUNDARY || '--' || UTL_TCP.CRLF;
         l_footer := UTL_TCP.CRLF ||
         '<b> Note: This is an auto generated email. Please do not reply to it. Contact the IT team for any further information.</b>'||  UTL_TCP.CRLF;
                FOR curr_email IN (SELECT global_name instance_name,
                REU.EMAIL_USER_LAST_NAME last_name,
                REU.EMAIL_USER_FIRST_NAME first_name,
                REU.EMAIL_USER_EMAIL_ID,
                '[email protected]' mail_from
                                 FROM EMAIL_USER REU,EMAIL_GROUP REG,GLOBAL_NAME
                                             WHERE REU.EMAIL_GROUP_ID = REG.EMAIL_GROUP_ID
                                                   AND REG.EMAIL_GROUP_NAME = 'Business'                                           
                                  ) LOOP
                cnxn := UTL_SMTP.open_connection('smtprelay.aceins.com', 25);
                UTL_SMTP.helo(cnxn, 'smtprelay.aceins.com');
                UTL_SMTP.mail(cnxn, '[email protected]');
                UTL_SMTP.rcpt(cnxn, curr_email.EMAIL_USER_EMAIL_ID);
            l_header := 'MIME-Version: 1.0'||'
            To: ' || curr_email.last_name || ' <' || curr_email.EMAIL_USER_EMAIL_ID || '>
            From: ' || curr_email.mail_from || '
            Subject: Ana Run Status Report for ' || curr_email.instance_name || ' on ' || to_char(sysdate, 'DD-MON-YYYY') || '
            Reply-To: [email protected]
            Content-Type: text/html;' || UTL_TCP.CRLF || UTL_TCP.CRLF;
          -- l_email := UTL_TCP.CRLF || l_header || l_ana_report || l_footer;
                UTL_SMTP.data(cnxn, l_header || l_ana_report || l_footer);                   
                UTL_SMTP.quit(cnxn);
                DBMS_OUTPUT.put_line('mail sent to ' || curr_email.EMAIL_USER_EMAIL_ID);
          END LOOP;
    END PROC_STATUS_MAIL_TEST;Email body:-
    <style type="text/css">
    <!--.style1 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt; font-style: normal; color: #FF0000}-->
    <!--.sidebar1 { font-family: Arial, Helvetica, sans-serif; font-size: 10px}-->
    <!--.text { font-family: Arial, Helvetica, sans-serif; font-size: 12px}-->
    </style>
    <center><b><font face="Arial">Ana Run Summary Report 29-JUL-2011 01:22 PM<br><br></font></b></center> <div align="center"><table width="95%" border="1" cellspacing="0" cellpadding="1" </div><span style="font-size: 10pt; font-family: Arial"> </span> <tr bgcolor=b4b4b4><td align="center"> <font size="3"> <b>Analysis</b></td><td align="center"><font size="3"> <b>Start Time</b></td><td align="center"><font size="3"> <b>End Time</b></td><td align="center"><font size="3"> <b>Run Duration (mins)</b></td><td align="center"><font size="3"> <b>Status</b></font></td></tr> <tr><td align="center">PCSUM CE US</td><td align="center">28-JUL-11</td><td align="cente ...... and so on
    Can anyone please guide me if anything wrong with syntax or code. I checked on google but couldnt get, still googling out.
    Regards,
    Sunny
    Edited by: k_17 on Aug 1, 2011 2:41 PM

    The below is mesage it displays in the body where as it should appear as html page. Three days back it had worked proper but off sudden it changed. The code is same.
    <style type="text/css">
        <!--.style1 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt; font-style: normal; color: #FF0000}-->
        <!--.sidebar1 { font-family: Arial, Helvetica, sans-serif; font-size: 10px}-->
        <!--.text { font-family: Arial, Helvetica, sans-serif; font-size: 12px}-->
        </style>
        <center><b><font face="Arial">Analysis Run Summary Report 29-JUL-2011 01:22 PM<br><br></font></b></center> <div align="center"><table width="95%" border="1" cellspacing="0" cellpadding="1" </div><span style="font-size: 10pt; font-family: Arial"> </span> <tr bgcolor=b4b4b4><td align="center"> <font size="3"> <b>Analysis</b></td><td align="center"><font size="3"> <b>Start Time</b></td><td align="center"><font size="3"> <b>End Time</b></td><td align="center"><font size="3"> <b>Run Duration (mins)</b></td><td align="center"><font size="3"> <b>Status</b></font></td></tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">28-JUL-11</td><td align="center">28-JUL-11</td><td align="center">11.62</td><td align="center">Completed</td> </tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">28-JUL-11</td><td align="center">28-JUL-11</td><td align="center">11.62</td><td align="center">Completed</td> </tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">28-JUL-11</td><td align="center">28-JUL-11</td><td align="center">11.62</td><td align="center">Completed</td> </tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">22-JUL-11</td><td align="center">22-JUL-11</td><td align="center">9.1</td><td align="center">Completed</td> </tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">22-JUL-11</td><td align="center">22-JUL-11</td><td align="center">9.1</td><td align="center">Completed</td> </tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">22-JUL-11</td><td align="center">22-JUL-11</td><td align="center">9.1</td><td align="center">Completed</td> </tr> <tr><td align="center">Australia Ledger LG (EP,IL&ALAE,PL&ALAE)</td><td align="center">22-JUL-11</td><td align="center">22-JUL-11</td><td align="center">13.1</td><td align="center">Completed</td> </tr> <tr><td align="center">Australia Ledger LG (EP,IL&ALAE,PL&ALAE)</td><td align="center">22-JUL-11</td><td align="center">22-JUL-11</td><td align="center">13.1</td><td align="center">Completed</td> </tr> <tr><td align="center">Australia Ledger LG (EP,IL&ALAE,PL&ALAE)</td><td align="center">22-JUL-11</td><td align="center">22-JUL-11</td><td align="center">13.1</td><td align="center">Completed</td> </tr> <tr><td align="center">Australia Ledger LG (EP,IL&ALAE,PL&ALAE)</td><td align="center">22-JUL-11</td><td align="center">22-JUL-11</td><td align="center">13.1</td><td align="center">Completed</td> </tr> <tr><td align="center">Australia Ledger LG (EP,IL&ALAE,PL&ALAE)</td><td align="center">22-JUL-11</td><td align="center">22-JUL-11</td><td align="center">13.1</td><td align="center">Completed</td> </tr> <tr><td align="center">Australia Ledger LG (EP,IL&ALAE,PL&ALAE)</td><td align="center">22-JUL-11</td><td align="center">22-JUL-11</td><td align="center">13.1</td><td align="center">Completed</td> </tr> <tr><td align="center">Australia Ledger LG (EP,IL&ALAE,PL&ALAE)</td><td align="center">22-JUL-11</td><td align="center">22-JUL-11</td><td align="center">13.1</td><td align="center">Completed</td> </tr> <tr><td align="center">xAdhoc LM - Energy Sweden AY NoF LL</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">2.42</td><td align="center">Completed</td> </tr> <tr><td align="center">xAdhoc LM - Energy Sweden AY NoF LL</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">2.42</td><td align="center">Completed</td> </tr> <tr><td align="center">xAdhoc LM - Energy Sweden AY NoF LL</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">2.42</td><td align="center">Completed</td> </tr> <tr><td align="center">PCSUMM4 CE PreXL A&H Total US$ - Viewer</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">22.17</td><td align="center">Completed</td> </tr> <tr><td align="center">PCSUMM4 CE PreXL A&H Total US$ - Viewer</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">22.17</td><td align="center">Completed</td> </tr> <tr><td align="center">PCSUMM4 CE PreXL A&H Total US$ - Viewer</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">22.17</td><td align="center">Completed</td> </tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">10.97</td><td align="center">Completed</td> </tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">10.97</td><td align="center">Completed</td> </tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">10.97</td><td align="center">Completed</td> </tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">10.53</td><td align="center">Completed</td> </tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">10.53</td><td align="center">Completed</td> </tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">10.53</td><td align="center">Completed</td> </tr> <tr><td align="center">xAdhoc LM - Energy Sweden AY NoF LL</td><td align="center">12-JUL-11</td><td align="center">12-JUL-11</td><td align="center">.9</td><td align="center">Completed</td> </tr> <tr><td align="center">xAdhoc LM - Energy Sweden AY NoF LL</td><td align="center">12-JUL-11</td><td align="center">12-JUL-11</td><td align="center">.9</td><td align="center">Completed</td> </tr> <tr><td align="center">xAdhoc LM - Energy Sweden AY NoF LL</td><td align="center">12-JUL-11</td><td align="center">12-JUL-11</td><td align="center">.9</td><td align="center">Completed</td> </tr> <tr><td align="center">PCSUMM4 CE PreXL A&H Total US$ - Viewer</td><td align="center">12-JUL-11</td><td align="center">12-JUL-11</td><td align="center">18.7</td><td align="center">Completed</td> </tr> <tr><td align="center">PCSUMM4 CE PreXL A&H Total US$ - Viewer</td><td align="center">12-JUL-11</td><td align="center">12-JUL-11</td><td align="center">18.7</td><td align="center">Completed</td> </tr> <tr><td align="center">PCSUMM4 CE PreXL A&H Total US$ - Viewer</td><td align="center">12-JUL-11</td><td align="center">12-JUL-11</td><td align="center">18.7</td><td align="center">Completed</td> </tr> <tr><td align="center">PCSUMM4 CE PreXL A&H Total US$ - Viewer</td><td align="center">12-JUL-11</td><td align="center">12-JUL-11</td><td align="center">28.78</td><td align="center">Completed</td> </tr> <tr><td align="center">PCSUMM4 CE PreXL A&H Total US$ - Viewer</td><td align="center">12-JUL-11</td><td align="center">12-JUL-11</td><td align="center">28.78</td><td align="center">Completed</td> </tr> <tr><td align="center">PCSUMM4 CE PreXL A&H Total US$ - Viewer</td><td align="center">12-JUL-11</td><td align="center">12-JUL-11</td><td align="center">28.78</td><td align="center">Completed</td> </tr> </table><br><br> <b> Note: This is an auto generated email. Please do not reply to it. Contact the IT team for any further information.</b>Regards,
    Sunny

  • OIM 11g - email notification

    Dear All,
    I need to create quick POC that will involve provisioning to multiple resources during OIM profile creation. One consolidated e-mail notification should be sent as a result.
    1. I never used simulated/fake/manual resource. If you used it in the past maybe you can guide me through as for how to create it?
    2. How to make sure that centralized e-mail is sent at the end (all resources are provisioned)?
    I was planning to create default role or use ALL USERS role that will be attached to access policies for different resources. When HR record comes, OIM user profile is created and default role (ALL USERS, for example) is assigned.
    This role will trigger execution of access policies that will create accounts on the target platforms.
    My challenges are:
    1) ONE consolidated email notification upon SUCCESSFUL completion (default event that somehow should be triggered maybe by job?, custom task that sets the flag in custom table upon successful completion? or maybe I overengineering .....)
    2) send user to manual queue if creation of the user account on any of the target resources fail.
    If you can provide any guidance as for how this could be done I would appreciate it very much
    Thank you for your time

    1. The process is outlined here: http://iamreflections.blogspot.com/2010/08/oim-howto-leverage-standard-connector.html
    2. There are two parts to this question.
    The first part is to figure out the triggering event. If you know what resource will be last provisioned you can simply put a task that is fired on completion of the final provisioning task that then checks the result of all other resources using the APIs. If you don't know which resource will be last you could let the final provisioning task in each resource have a follow up task that sets a variable on the user form, then have another folllow up task that checks if all values are set and if so do the appropriate thing (if not just exit)
    Traditionally you would assign a task to the sysadmin using the API if you wanted a manual intervention (http://otndnld.oracle.co.jp/document/products/id_mgmt/idm_904/doc_cd/javadocs/operations/Thor/API/Operations/tcProvisioningOperationsIntf.html#reassignTasksToUser(long[], long)) but there is the new concept of queues that I actually haven't worked with (http://otndnld.oracle.co.jp/document/products/id_mgmt/idm_904/doc_cd/javadocs/operations/Thor/API/Operations/tcQueueOperationsIntf.html) that may be what you are looking for.
    Email sending tends to be easier using Javamail than trying to leverage the email framework once you want something that isn't very basic.
    Hope this helps
    /Martin

  • Approve in email notification

    Hi,
    Oracle Workflow has the standard functionality of approving the from a mail, where the user has to login to E-BS and then approve. I would like to develop a functionality where the user just click a button in the mail and the workflow gets approved. Can anyone please help how should I develop such a scenario.
    Description:
    Email should have a approve button and the user should just click the button and approval should be done. (No login)
    Please help..
    Regards,
    Boris

    Hi Boris,
    You can approve a notification from email by just clicking on Approve/Reject link in email without login to application.
    For this you need to do below steps.
    1. The recipient user has the valid email address set, for which the email notification has to be received.
    2. The recipient user notification preference should be 'MAILHTML' i.e 'HTML Mail with attachments', you can set it from preferences section after login with the user
    3. You can see the notification preference and email address details from wf_local_roles table..
    4. The notification Mailer should be up and running (Outbound thread count should >=1 and Inbound thread count = 1)

  • Insert an HTML Table tag as a value in a Tree Table

    Hi helper,
    Can I insert an HTML Table tag inside a TreeTable (Hierarchical data) using AdvancedDataGrid as a value?
    I need to create a Tree table in flex and I have beside normal int values some cells that need to show a certain images in an HTML Table I will create.
    Is it possible?
    Please advice
    Thanks
    Jo

    <div class=Section1><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'>It depends on where you get the list of images<o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'><o:p> </o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'>Alex Harui<o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'>Flex SDK Developer<o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'><a href="http://www.adobe.com/"><span style='color:blue'>Adobe<br />Systems Inc.</span></a><o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'>Blog: <a href="http://blogs.adobe.com/aharui"><span<br />style='color:blue'>http://blogs.adobe.com/aharui</span></a><o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'><o:p> </o:p></span></p><br /><br /><div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in'><br /><br /><p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>From:</span></b><span<br />style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'> Yossi Bar<br />[mailto:[email protected]] <br><br /><b>Sent:</b> Monday, February 09, 2009 1:14 AM<br><br /><b>To:</b> [email protected]<br><br /><b>Subject:</b> Re: Insert an HTML Table tag as a value in a Tree Table<o:p></o:p></span></p><br /><br /></div><br /><br /><p class=MsoNormal><o:p> </o:p></p><br /><br /><p class=MsoNormal style='margin-bottom:12.0pt'>A new message was posted by<br />Yossi Bar in <br><br /><br><br /><b>Developers</b> --<br><br />  Insert an HTML Table tag as a value in a Tree Table<br><br /><br><br />Thanks Alex, <br><br />What is the way to implement HorizontalLIst of images for<br />AdvancedDataGridColumn? <br><br /><br><br />In the code here I create a tree table and in Actual column I show an image: <br><br /><br><br />&lt;mx:AdvancedDataGrid width=&quot;100%&quot; height=&quot;100%&quot;<br />folderClosedIcon=&quot;{null}&quot; folderOpenIcon=&quot;{null}&quot;<br />defaultLeafIcon=&quot;{null}&quot;&gt; <br><br /><br><br />&lt;mx:dataProvider&gt; <br><br />            &lt;mx:HierarchicalData<br />source=&quot;{dpHierarchy}&quot;/&gt; <br><br />        &lt;/mx:dataProvider&gt; <br><br />        &lt;mx:groupedColumns&gt; <br><br />         &lt;mx:AdvancedDataGridColumn<br />headerText=&quot;&quot; width=&quot;50&quot;/&gt; <br><br />            &lt;mx:AdvancedDataGridColumn<br />dataField=&quot;Region&quot; backgroundColor=&quot;haloSilver&quot;<br />headerText=&quot;Region title&quot;<br />headerRenderer=&quot;mx.controls.Label&quot;/&gt; <br><br />            &lt;mx:AdvancedDataGridColumnGroup<br />headerText=&quot;Group Header&quot;<br />headerRenderer=&quot;mx.controls.Label&quot;&gt; <br><br />&lt;mx:AdvancedDataGridColumn dataField=&quot;Territory_Rep&quot;<br />headerText=&quot;Territory Rep&quot;<br />headerRenderer=&quot;mx.controls.Label&quot;/&gt; <br><br />&lt;mx:AdvancedDataGridColumn dataField=&quot;Actual&quot;<br />headerText=&quot;Actual title&quot;<br />headerRenderer=&quot;mx.controls.Label&quot;&gt; <br><br />&lt;mx:itemRenderer&gt; <br><br />&lt;mx:Component&gt; <br><br />&lt;mx:VBox horizontalAlign=&quot;center&quot;&gt; <br><br />&lt;mx:Image width=&quot;50&quot; source=&quot;{data.Actual}&quot;/&gt; <br><br />&lt;/mx:VBox&gt; <br><br />&lt;/mx:Component&gt; <br><br />&lt;/mx:itemRenderer&gt; <br><br />&lt;/mx:AdvancedDataGridColumn&gt; <br><br /><br><br />&lt;mx:AdvancedDataGridColumn dataField=&quot;Estimate&quot;<br />headerText=&quot;Estimate title&quot; headerRenderer=&quot;mx.controls.Label&quot;/&gt;<br /><br><br />            &lt;/mx:AdvancedDataGridColumnGroup&gt;<br /><br><br />        &lt;/mx:groupedColumns&gt; <br><br />    &lt;/mx:AdvancedDataGrid&gt; <br><br /><br><br />Please advise, <br><br /><br><br />Thanks <br><br /><br><br />Jo <o:p></o:p></p><br /><br /><div class=MsoNormal><br /><br /><hr size=2 width=200 style='width:150.0pt' align=left><br /><br /></div><br /><br /><p class=MsoNormal style='margin-bottom:12.0pt'>View/reply at <a<br />href="http://www.adobeforums.com/webx?13@@.59b7d1ae/2">Insert an HTML Table tag<br />as a value in a Tree Table</a><br><br />Replies by email are OK.<br><br />Use the <a<br />href="http://www.adobeforums.com/webx?280@@.59b7d1ae!folder=.3c060fa3">unsubscribe</a>< br />form to cancel your email subscription.<o:p></o:p></p><br /><br /></div>

  • Email notification was sent out twice

    I created two jobs using DBMS_SCHEDULER.CREATE_JOB. The first job was to update the table and the second job was to check the status of the first job in dba_scheduler_job_run_details. I also add email notification on the second job by using DBMS_SCHEDULER.ADD_JOB_EMAIL_NOTIFICATION which sends the email to myself. The problem was the email notification was sent to me twice everytime when I do that. My script is as the follows.
    DBMS_SCHEDULER.ADD_JOB_EMAIL_NOTIFICATION (
    job_name => 'KUDSJ_ENOT_ADBD_ENDPROC'
    ,recipients => '[email protected]'
    ,sender => '[email protected]'
    ,subject => 'Company Schedule Job - %job_owner%.%job_name% - %event_type%'
    ,body => '%event_type% occurred at %event_timestamp%. %error_message%'
    ,events => 'JOB_SUCCEEDED');
    DBMS_SCHEDULER.SET_ATTRIBUTE(
    'KUDSJ_ENOT_ADBD_ENDPROC', 'logging_level', DBMS_SCHEDULER.LOGGING_FULL);
    I am not sure where the problem is. Please help. Thanks.
    cy

    You meant that I should set recipients to null when I do the remove_job_email_notification. I did drop_job and remove_job_email_notification a couple of times already. Could you tell me more specific? Thanks.
    This is what I did.
    DBMS_SCHEDULER.DROP_JOB(job_name => 'KUDSJ_ENOT_ADB_XXXXX');
    DBMS_SCHEDULER.REMOVE_JOB_EMAIL_NOTIFICATION(job_name => 'KUDSJ_ENOT_ADB_XXXXX', events => 'JOB_STARTED, JOB_SUCCEEDED');
    cy

Maybe you are looking for

  • Error while uploading EBS

    Hi All, While uploading EBS I am getting below error. "Field BSEG-HKONT. is not an input field" I am trying to post below transaction through EBS upload for Direct Debit. Vendor A/c To Main Bank Bank will send a vendor name in statement, Eg: CARDLINK

  • I can no longer open most videos sent to me.

    Hi, I can no longer open most videos sent to me on Facebook - my warranty is expired even though my MacBook Air is just a little over a year old - any suggestions would be appreciated.  TIA

  • I deleted music in the iTunes app but the files are still in the iTunes Media folder

    Hi everyone, I am doing my best to free up some HD space and decided to get rid of some of my music library in iTunes. For the record, my iTunes content is accessed from an external HD. My goal is to move the library back to my Mac's HD instead of th

  • How to get start

    Hi, I want to combine a web cemra in my web application but I dont know how or from where to get started, and to to learn the JMF, how to install it with eclipse etc. Any help is appreciated. Thanks.

  • Tree control with xml last node!

    The question is how to view the tree lastleaf as last nodename + nodevalue in an xmlobject? <node1> <node1a>10 </node1a> </node1> <node2> <node2a> <node2b>20 </node2b> </node2a> </node2> I want the tree structure like: Node1 (folder icon) Node1a = 10