Alert Manager HTML Email Query

Hi,
Is it possible to send an email in HTML format using Alert Manager as I would like to send a URL as part of the text.
Thx in Advance.
Best Regards
Ramdas

Hi Pillair,
Thx for your response.
This has to be configured by a functional person rather than a technical person.
Hence I wanted to know if it is possible to send HTLML mails through the Alert Manager.
Best Regards
Ramdas

Similar Messages

  • Alert Manager

    Hi all,
    Good day...
    Has anyone created an alert through alert manager responsibility to get alerts if new user and new responsbility added to the user?? How do i do this?
    Please suggest...
    Thanks,
    baskar.l

    Alerts work by identifying when a row in a table is updated or created. So all you need to do is create an alert based on the appropriate FND_RESP table. Your query should pick up the columns you need and then place them into variables which can then be used in an email.
    If you go onto the alert manager responsibility and query the seeded alerts, you will see some examples which are very close to the one you want to develop.
    Hope that helps.
    Regards
    Tim

  • Alert Management

    Dear All,
    Please guide on Alert Management
    We created query for alert and we set alert frequency as every 1 Minute to popup alert immediately. But alert get popup on every minute in users Messages/alert window on respective day.
    I have set update messages (Min) = 1 in Generatl setting - > Services.
    Query
    select
         OI.Series as 'Series',
         OI.docnum as 'Incoming Excise Invoice Number',
         OI.docdate as 'Doc Date',
         OI.taxdate as 'Document Date',
         OI.cardcode as 'Card Code',
         OI.cardname as 'Card Name',
         OI.doctotal as 'Amount',
         OI.comments as 'Remark',
         OI.createDate as 'Date',
         OI.numatcard as 'Excise Ref. No'
    from oinv OI
    where   convert(varchar,OI.createDate,103) = CONVERT(varchar,getdate(), 103)
    I want to fire this alert only once.
    Is any setting we missed out?
    Regards
    Mahendra

    I am afraid your query will make your alert table growing like a monster.
    Your intension of just one alert for one new invoice to be checked every minute is understandable.  However, there is no easy logic to achieve what you need.  You will quickly find out, the alert will be fired as soon as the first invoice on the current day and every minute from then on.
    Thanks,
    Gordon

  • Converting Query results into HTML email

    Hi,
    I am using oracle 11g. I' m using the following procedure to send out html emails from a static query in the procedure and it works fine. I wanted to make it dynamic and pass the sql query as a parameter to procedure and build the html tags based on the query. Any thoughts?
    CREATE OR REPLACE PROCEDURE html_sql_results
    is
        v_rows clob;
        v_header clob;
        cursor v_cursor is
        select SR_NO,STATE,DUE_DT,PROCESS_DT,STATUS,DAY_NO,SEQ_NO
        from T_TABLE;
        BEGIN
        v_header := '<table border=1>
                  <tr style=''background:#8DB3E2''>
                  <td><p><b>SR_NO</b></p></td>
                  <td><p><b>STATE</b></p></td>
                  <td><p><b>DUE_DT</b></p></td>
                  <td><p><b>PROCESS_DT</b></p></td>
                  <td><p><b>STATUS</b></p></td>
                  <td><p><b>DAY_NO</b></p></td>
                  <td><p><b>SEQ_NO</b></p></td>
                  </tr>';
        v_rows := Null;
        FOR i in v_cursor
        LOOP
        v_rows  := v_rows ||
                '<tr>
                <td> <p>' || I.SR_NO||'</p></td>
                <td> <p>' || I.STATE||'</p></td>
                <td> <p>' || I.DUE_DT ||'</p></td>
                <td> <p>' || I.PROCESS_DT ||'</p></td>
                <td> <p>' || I.STATUS||'</p></td>
                <td> <p>' || I.DAY_NO ||'</p></td>
                <td> <p>' || I.SEQ_NO||'</p></td>
                </tr> ';
        END LOOP;
        if v_rows is not null then
        v_rows:= v_header ||v_rows ||' </table> ' ;
        dbms_output.put_line(v_rows); 
        email_results(v_rows);
        end if ;
        end ;
    /

    A possible way :
    SQL> var result clob
    SQL> DECLARE
      2
      3    ctx  dbms_xmlgen.ctxHandle;
      4    qry  varchar2(2000) := 'SELECT * FROM hr.employees WHERE department_id = :1';
      5
      6    xsl  xmltype := xmltype('<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
      7   <xsl:output method="html"/>
      8   <xsl:template match="/ROWSET">
      9    <table border="1">
    10     <tr style="background:#8DB3E2">
    11      <xsl:for-each select="ROW[1]/*">
    12       <td><p><b><xsl:value-of select="name()"/></b></p></td>
    13      </xsl:for-each>
    14      <xsl:apply-templates/>
    15     </tr>
    16    </table>
    17   </xsl:template>
    18   <xsl:template match="ROW">
    19    <tr><xsl:apply-templates/></tr>
    20   </xsl:template>
    21   <xsl:template match="ROW/*">
    22    <td><p><b><xsl:value-of select="."/></b></p></td>
    23   </xsl:template>
    24  </xsl:stylesheet>');
    25
    26    res  clob;
    27
    28  BEGIN
    29
    30    ctx := dbms_xmlgen.newContext(qry);
    31    dbms_xmlgen.setBindValue(ctx, '1', 90);
    32    dbms_xmlgen.setNullHandling(ctx, dbms_xmlgen.EMPTY_TAG);
    33    dbms_xmlgen.setXSLT(ctx, xsl);
    34
    35    :result := dbms_xmlgen.getXML(ctx);
    36    dbms_xmlgen.closeContext(ctx);
    37
    38    --dbms_output.put_line(res);
    39
    40  END;
    41  /
    PL/SQL procedure successfully completed.
    SQL> print result
    RESULT
    <table border="1"><tr style="background:#8DB3E2"><td><p><b>EMPLOYEE_ID</b></p></
    td><td><p><b>FIRST_NAME</b></p></td><td><p><b>LAST_NAME</b></p></td><td><p><b>EM
    AIL</b></p></td><td><p><b>PHONE_NUMBER</b></p></td><td><p><b>HIRE_DATE</b></p></
    td><td><p><b>JOB_ID</b></p></td><td><p><b>SALARY</b></p></td><td><p><b>COMMISSIO
    N_PCT</b></p></td><td><p><b>MANAGER_ID</b></p></td><td><p><b>DEPARTMENT_ID</b></
    p></td><tr><td><p><b>100</b></p></td><td><p><b>Steven</b></p></td><td><p><b>King
    </b></p></td><td><p><b>SKING</b></p></td><td><p><b>515.123.4567</b></p></td><td>
    <p><b>17/06/03</b></p></td><td><p><b>AD_PRES</b></p></td><td><p><b>24000</b></p>
    </td><td><p><b></b></p></td><td><p><b></b></p></td><td><p><b>90</b></p></td></tr
    <tr><td><p><b>101</b></p></td><td><p><b>Neena</b></p></td><td><p><b>Kochhar</b></p></td><td><p><b>NKOCHHAR</b></p></td><td><p><b>515.123.4568</b></p></td><td><
    p><b>21/09/05</b></p></td><td><p><b>AD_VP</b></p></td><td><p><b>17000</b></p></t
    d><td><p><b></b></p></td><td><p><b>100</b></p></td><td><p><b>90</b></p></td></tr
    <tr><td><p><b>102</b></p></td><td><p><b>Lex</b></p></td><td><p><b>De Haan</b></p></td><td><p><b>LDEHAAN</b></p></td><td><p><b>515.123.4569</b></p></td><td><p><
    b>13/01/01</b></p></td><td><p><b>AD_VP</b></p></td><td><p><b>17000</b></p></td><
    td><p><b></b></p></td><td><p><b>100</b></p></td><td><p><b>90</b></p></td></tr></
    tr></table>Typically, XSLT stylesheets may be stored in the database too, so that you can modify and use different presentation templates without touching the code.

  • Alert Manager Validation for sending Email

    Hi All,
    I am planning to use Alert Manager for sending out email in case if there is any locks in the database. I am not able to find a way to send a mail only when there is a lock in the database.
    Is there any way to do a validation on Oracle Alert manager before sending the mail ?
    Regards
    Sridhar M

    I am planning to use Alert Manager for sending out email in case if there is any locks in the database. I am not able to find a way to send a mail only when there is a lock in the database.
    Is there any way to do a validation on Oracle Alert manager before sending the mail ?Please see the docs referenced in old threads, it should be helpful.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Alert+AND+Manager&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Alert+AND+Diagnostics&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Alert+AND+Workflow&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Understanding how BB manage HTML in emails and attacchments.

    Hi all,
    I'm trying to understand how BB manage HTML in emails and in attachments.
    I created a simple HTML table with some color and no particular complications.
    If I send this table as a HTML email on my BB it will be showed correctly, with all color and attribute shown.
    If I package this html code into a file named try.html and than I send it as an email attachments on my BB I lost many attribute, including colors.
    Can you explain me why and eventually how to solve this problem?
    Thanks.

    I too am somewhat annoyed by the manner in which messages are displayed using the standard e-mail inboxes. I recently started using the Gmail application for my personal e-mail and am very happy with how cleanly messages are displayed. I hope I can find a similar application to handle my other addresses, because it is very difficult to scroll through a large volume of mail that contains HTML and URLs every day.
    If anyone knows of an application that more cleanly displays messages, please do tell. Otherwise, I'm going to be doing a bit of research this evening to see what I can find. I'll post back with my findings.

  • Send BW query results as HTML email from ABAP program

    I have published a code sample for sending BW query results as HTML email from ABAP program. if you have any questions or clarification, please post them here.
    the same can be accessed from this link.
    http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/b7658119-0a01-0010-39a9-b600c816f370
    Regards
    Raja
    Message was edited by: Durairaj Athavan Raja

    OK forget about my earlier post.
    do the following changes.
    declare the following variables:
    data: xtext type standard table of solix .
    DATA: atta_sub TYPE sood-objdes .
    after the call of FM SCMS_STRING_TO_FTEXT add the following code.
    CALL FUNCTION 'SO_SOLITAB_TO_SOLIXTAB'
      EXPORTING
        ip_solitab        = text
    IMPORTING
       EP_SOLIXTAB       = xtext .
    and after the following statement
    document = cl_document_bcs=>create_document(
                              i_type    = 'HTM'
                              i_text    = text
                              i_length  = conlengths
                              i_subject = subject ).
    add the following code
    CALL METHOD document->add_attachment
                EXPORTING
                  i_attachment_type    = 'htm'
                  i_attachment_subject = atta_sub
                  i_att_content_hex    = xtext.
    now you will have results both in the body as well as attachment. (this is for test you can remove one of them )
    Regards
    Raja

  • Sending mail by alert management

    Dear All,
    I've scenario as below
    In one of our customer ,MD(Director of Company) wants Purchase Order and Sales Order Details daily by e-mail
    I've successfully configured email setting and I am Able to send e mail (Externally)
    I've created the simple query and mapped with alert management
    but ,from alert e-mail is not sending to recipient
    observation:
    Time interval I've set it to 8 pm every day
    user is not logged in to SAP at that time
    Is there any steps I've missed out ?
    any work around suggestion would be appreciable.
    Thanks & Regards
    M G

    Hi
    I've followed steps you have suggested
    and
    getting following error
    Looking for first schedule to be executed before/on 20140815 19:33
    Handling schedule
    StatusBar Success Message: This use of the software is subject to the End User License Agreement (EULA)
    Starting Scheduled Report: Query
    StatusBar Error Message: No printer device found
    Error #-10 encountered
    Executing XSLT transformation
    XML Input is Empty
      adding: BusinessOneAuditLoggerPid8668_20140815193332.Pid8668 (124 bytes security) (deflated 72%)
      adding: BusinessOneb1loggerPid8668_20140815193318.Pid8668 (124 bytes security) (deflated 83%)
    SAP Business One Client return code:0
    Unable to extract HTML report output to file C:\Windows\TEMP\Report.html Error code:-2028
    Unable to extract PDF report output to file C:\Windows\TEMP\Report.pdf Error code:-2028
    Unable to extract XML report output to file C:\Windows\TEMP\Report.xml Error code:-2028
    No HTML body found nor attachments - there is nothing to send
    An error occured while distributing results
    SAP B1 client did not update new scheduyle date and time! Deactivating the schedule to prevent infinite loop.
    An error occured while creating report by SAP B1 Client
    Schedule processed

  • Alert Manager Question

    Hi All
    I create a new alert to send a message to a specified mail if insert or update ocuured on po_requisiion_lines_all
    and the query restrict requisions created by a specific employee and the amoount > 25,000
    and i test the query it return 3 rows but no messages sent to the desired e-mail
    i want to know if i miss steps or not
    thanks

    Hi,
    What is your application release?
    Please see these docs.
    11i, Can we send email alerts (configured in Alert Manager responsibility) in Apps Release 11i [ID 224415.1]
    How to determine what email system is being utilized for Oracle Alert processing? [ID 428193.1]
    How Do You Set Up A Test Event Alert That Sends An Email. [ID 455688.1]
    How Do You Set Up A Test Periodic Alert That Sends An Email [ID 455687.1]
    Thanks,
    Hussein

  • When I forward an HTML email with embedded graphics to someone, it forwards it as plain text.. this is driving me batty.. how do I forward such mails INTACT??

    I have the latest Thunderbird installed on a new 64-bit Winblows Eight netbook.. fantastic program, but one problem is driving me absolutely batty, and after using the latest Thunderbird for weeks, I simply can't figure out how to fix it..
    I'm on a lot of mfr. and other kinds of mailing lists, like eBay watch list alerts, and so on.. these are not s p a m (although I get plenty of that.. who doesn't).. but lists I WANT to be on..
    Many such emails from those mailing lists are in HTML format with embedded graphics.. I'm not talking about graphic file attachments, but embedded graphics which are coming from the senders' servers, and appear AS a graphic in the email.. sometimes such emails are one huge graphic with hardly any text.. all well and good..
    However, here's the problem.. when I want to forward such an email to a friend, Thunderbird ALWAYS formats it as plain ASCII text.. I know this because I look in the "sent mail" folder, and can see that it has turned an HTML email with embedded graphics into plain ASCII text..
    I absolutely can't figure out how to get it to forward an HTML email with embedded graphics INTACT, so the sender receives it looking the way it looks when I receive it from a mailing list, or an advertiser, or eBay, or whoever..
    Is Thunderbird capable of forwarding an HTML email with embedded graphics INTACT?.. If so, how / where do I turn on that capability?..
    If the capability to do this isn't built into the program, is there an add-on I can install that will give it that ability?..
    I am not new to computers.. but this really has me stumped.. I want to put Thunderbird on my 32-bit Vista laptop and stop using its horrible "Windoze Mail" program, which I've been using for years, and is slower than snot, and has all kinds of other problems..
    So, assuming whoever reads this FULLY understands my question, PLEASE tell me how to get Thunderbird to have the ability to forward an HTML email with embedded graphics AS-IS, so the receiver(s) I forward it to see it exactly the way I see it when I receive it.. if that ability is built in, please tell me how to turn it on.. if that ability is not built-in, please tell me what add-on I need to install to give Thunderbird this capability.. if Thunderbird absolutely can't forward an HTML email with embedded graphics at all, please also tell me that..
    A virtual box of candy and a dozen long-stemmed roses to anyone who can give me a solution that works..
    Thanks..

    Dear Mr. Toad (my all-time favorite ride at Disneyland ;-) ..
    Thanks so much for your detailed reply.. my netbook is in the bedroom, turned off.. I (so far) only use it in the evening, in the bedroom.. I've saved your response, and will try your suggestions, and let you know if they solve the problem I described. I really appreciate you taking the time to post such a detailed reply..
    I can't answer your Thunderbird "configuration" questions, because I'm in the living room, using the crap Vista laptop, on which I plan to install Thunderbird, and then take Windoze Mail out in the street and drive over it a few times.. I'll get back to you one way or the other, and let you know if your instructions solved the problem, or not..
    I don't understand why Thunderbird "out of the box", so to speak, simply doesn't forward HTML emails with embedded graphics, (like Outlook Excess, and Winblows Mail do).. without having to go through those steps. I personally HATE HTML email, but over the years, it's become more and more prevelant.. so it's a problem I must fix..
    Thanks again..
    Harv..

  • How to Configure Windows NT Mail on Alert Manager - System - Option

    Hi
    This is Regarding Oracle Financial Application.
    In 11i, Alert Manager, there is an option to configure Windows NT Mail to Send and Recieve Mails (Oracle Alerts-Message).
    Anybody knows, what is the configuration?
    Our Company Mail Server is Window NT.
    But, Our Oracle Application Server is Solaris Machine.
    We want to configure the Mail settings .. while sending Oracle Alert from Oracle application, it should reach our NT Mail server.
    In Unix settings Alert is working fine.
    But, How to do the Windows NT Mail settings on this Application ?
    Please reply on the following mail id : [email protected]
    It's very urgent.
    Thanks,
    Sheeja.

    Hi
    This is Regarding Oracle Financial Application.
    In 11i, Alert Manager, there is an option to configure Windows NT Mail to Send and Recieve Mails (Oracle Alerts-Message).
    Anybody knows, what is the configuration?
    Our Company Mail Server is Window NT.
    But, Our Oracle Application Server is Solaris Machine.
    We want to configure the Mail settings .. while sending Oracle Alert from Oracle application, it should reach our NT Mail server.
    In Unix settings Alert is working fine.
    But, How to do the Windows NT Mail settings on this Application ?
    Please reply on the following mail id : [email protected]
    It's very urgent.
    Thanks,
    Sheeja.

  • 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.

  • Creating first Alert - not sending email

    Hi guys, hoping someone can point me in the right direction for creating an Alert.
    I've followed :
    How Do You Set Up A Test Event Alert That Sends An Email. [ID 455688.1]
    However once I've got my alert created, when I carry out the step to update the table which should result in an email, I get nothing.
    Can anyone suggest what might be wrong ?
    Contents of the doc I followed :
    How do you set up a test event alert that sends an email?
    Solution
    1. Navigate to the Alert > Define window in Oracle Alert manager.
    2. Use the 'Alert' for the application.
    3. Check the enabled checkbox.
    4. Enter 'Test Event Alert Email' for the Name.
    5. Select Event tab.
    6. Enter 'Alert' for the application.
    7. Enter the 'ALR_DISTRIBUTION_LISTS' table.
    8. Check either the 'After Insert' or 'After Update' check box, or both.
    9. Enter the following select:
    SELECT 123245
    into &test_num
    FROM DUAL
    Click on the Verify button to ensure select works.
    10. Select 'Actions' button.
    11. Enter 'Test Email' for Action Name.
    12. Set Action Level to Detail.
    13. Drill down on 'Actions Details' button.
    14. Set 'Action Type' to Message.
    15. In the 'To' field, enter your valid email address.
    16. In Subject field enter 'Test Periodic Alert Email'
    17. Select Text and enter 'Test &test_num'.
    18. Save and close out to Alert Define Window.
    19. Select Action Sets button.
    20. Enter 1 for Seq number.
    21. Enter 'Test Email Number'
    22. Check the Enabled box.
    23. Drill down on 'Action Set Details' button.
    24. Select 'Outputs' tab.
    25. Check the 'Check for Duplicates' box.
    26. Select 'Members' tab.
    27. Check the enabled box for the Action.
    28. Save and exit out to the Alert Define Window.
    29. Drill down on 'Alert Details' button.
    30. Select 'Outputs' tab.
    31. Enter 'test_num' for description.
    32. Enter 10 for Detail and Summary
    33. Enter 999,999 for Number Form.
    34. Check the 'Check For Duplicates' box.
    35. Select the 'Installation' tab.
    36. Enter 'APPS' for the Oracle ID.
    37. Enter the current Operating Unit being used.
    38. Check the Enabled check box.
    39. Save and exit form.
    40. Navigate to Alert > Distribution Lists.
    41. Enter 'Application Object Library' for the application.
    42. Enter 'Test Email Group' for Name.
    43. Enter your email address for the 'To' Mail Recipients.
    44. Save.
    45. Check for alert to run under the Request > View Window.
    46. If it completes successfully, check for email.

    I've found the workflow administration screen and theres a section which says :
    Business Event Local System
    Enter the Workflow Business Event System Name and System Processing Status.
    System Name          DEV.xxxxxx.COM
         This is the system name of the database where this instance of Oracle Workflow is installed.
    Status          Enabled
    is that it ?

  • How to use/import CM Tags in html email templates?

    Hi guys
    I would like to start designing html email templates and send mailings for my clients. Can anyone tell me how I can easily insert CM tags so that the template will be easily adapted to the content of the certain email in the email manager like Campagin Monitor?
    Thanks!
    Bob

    Hi Nancy O.
    I would like to design my own templates and instantly insert the right tags and so, so that I can import the templates to websites like Campaign Monitor and my clients can open templates when sending new mailsings.
    The goal is to have my own designed templates for my clients with their layouts which they can use for their mailings. Also extending the newsletter (adding new article fields) should be possible etc.
    Can you tell me what codes I need and what I should pay attention to in order to design nice templates that will appear correctly in nearly each mailbox?
    Thanks in advance!
    Bob

  • How to view all pages of a multi-page HTML email in Mac Mail 5+ (Lion to Mavericks)?

    In previous versions of Mac Mail (up to that included with Snow Leopard, Mail 4), it was possible to scroll through all pages of a multi-page HTML email, like that send from the Tivoli Storage Manager reporting system.
    Since Lion, that has not been possible. The first page displays, but that's it.
    As a possible complication, I'm accessing an Exchange server, not IMAP.
    I have not been able to find a setting that might be related to this, nor have I found anyone who seems to be perturbed by this issue. Perhaps there's very few of us trying to read multi-page Tivoli reports on a Mac.
    In any case, I would prefer not to switch to a different mail app, or sign on to the Outlook Web Service version of our email to see the full report.
    Any thoughts?

    I've been able to find someone willing to do some testing that I can't do without installing old versions of Reader on my computer.  The surprising (to me) result is that the Submit button causes the problem.  By simply removing the Submit button, Reader 10 is now able to print page 1.  The Submit button was set up to do a "mailto".  I don't know whether other destinations also cause the problem of the page not printing with old versions of Reader.

Maybe you are looking for

  • Workplace in inbound delivery

    Hi Guru, Why we need a workplace system in addition to the R/3 system when doing the inbound delivery? How to stall it? What's the relationship for workplace & R/3? how does it works? Thanks

  • Co code copy problem

    Hi, I copied 0001 co code to 555, i also copied INT chart of a/cs, now while changing the chart of a/c from INT to 111, it is showing error message "RESET COMPANY CODE DATA BEFORE CHANGING THE CHART OF A/CS" But after copy, i just changing the chart

  • Web Content Overlay-Youtube Error

    Hi All, I want to avoid folio bloat by using the Web Content Overlay linked to an HTML page with a Youtube embed link. Works like a charm on my iPad 2 except for something strange that happens if I tap outside the boundry of the HTML window/viewport.

  • ESS Delivered Country Services!

    Hi All, I am working on ESS Implementation and I am encountering a problem where we have 99 country grouping. Is there any SAP delivered Address services for 99 country grouping or should it be developed? Any pointers in this direction would be of mu

  • CS5 can't read Canon G-15 raw files - is there any fix for that?

    CS5 can't read Canon G-15 raw files - is there any fix for that?