JS CS3 Dynamic XML Dropmenu

I'm trying to create a dynamic drop menu dialog that is populated by an xml file. I think I have the xml file setup correctly but not sure how to get the second drop menu to populate according to the first drop menu selection. Would the best way be to have the myDialog.fDetails.fPath.dd.onChange = function () { set the path and section value in var curitem= xmlbooks.path[0].section[0].size.name[j].text();
This is the xml file:
<books>
    <path>/c/temp/
        <section>Book1
          <size>
            <name>Double Page Spread 420 x 275</name>
            <width>420</width>
            <height>275</height>
          </size>
          <size>
            <name>Single Page Spread 210 x 275</name>
            <width>210</width>
            <height>275</height>
          </size>
          <size>
            <name>1/2 Page Horizontal 180 x 120</name>
            <width>180</width>
            <height>120</height>
          </size>
          </section>
          <section>Book2
          <size>
            <name>Double Page Spread 440 x 275</name>
            <width>440</width>
            <height>275</height>
          </size>
          <size>
            <name>Single Page Spread 220 x 275</name>
            <width>220</width>
            <height>275</height>
          </size>
          <size>
            <name>1/2 Page Horizontal 120 x 190</name>
            <width>120</width>
            <height>190</height>
          </size>
          </section>
      </path>
This will run in ESTK
var booksXMLFile = File("/c/booklist.xml");
if(booksXMLFile != null){
var mybooks = booksXMLFile.open("r", undefined, undefined);
if(mybooks == true){
        var xmlbooksStr = booksXMLFile.read();
    }else{
        alert("Could not load booklist.xml file.")
booksXMLFile.close();
var xmlbooks = new XML (xmlbooksStr);
var mybooks= xmlbooks.path.section.length();
$.write(mybooks);
var myDialog = new Window('dialog', ' Books');
    myDialog.fDetails = myDialog.add('panel',undefined,'Book details');
    myDialog.fDetails.alignChildren = 'left';
    myDialog.fDetails.fPath = myDialog.fDetails.add('group');
    myDialog.fDetails.fPath.group = myDialog.fDetails.fPath.add('group');
    myDialog.fDetails.fTitle = myDialog.fDetails.add('group');
    myDialog.fDetails.btnGroup = myDialog.fDetails.add('group');
    with (myDialog.fDetails){
    fPath.group.orientation = 'column';
    fPath.group.alignChildren = 'right';
    fPath.group.preferredSize = [90,15];
    fPath.group.st  = fPath.group.add('statictext',undefined,'Select Book:');//first drop menu
    fPath.dd = fPath.add('dropdownlist', undefined, undefined)
        for (i=0;i<mybooks;i++)
        var curitem= xmlbooks.path.section[i].text();
        fPath.dd.add("item",curitem);
    fTitle.st  = fTitle.add('statictext',undefined,'Select Size:');
    fTitle.st.preferredSize = [90,15];//second drop menu
    fTitle.dd = fTitle.add('dropdownlist', undefined, undefined)
            for (j=0;j<mybooks;j++)
        var curitem= xmlbooks.path[0].section[0].size.name[j].text();
        fTitle.dd.add("item",curitem);
    fTitle.dd.enabled = false;
    btnGroup.btn = btnGroup.add('button', undefined, 'Alert Selection');
    btnGroup.alignment = 'right';
myDialog.fDetails.fPath.dd.onChange = function () {
    if(myDialog.fDetails.fPath.dd.selection) {
            myDialog.fDetails.fTitle.dd.enabled = true;
myDialog.fDetails.btnGroup.btn.onClick = function() {
    var myValStr
    if (myDialog.fDetails.fPath.dd.selection == null ){
        myValStr = "Make Book Selection \n"
        }else{
        myValStr = ""   
    if (myDialog.fDetails.fTitle.dd.selection == null ){
        myValStr = myValStr + "Make Size Selection"
    if(myValStr.length >1){
    alert(myValStr);
    }else{
        myDialog.close();
        alert("Thanks for your selections.");
myDialog.show();

var booksXMLFile = File("/c/booklist.xml");
if(booksXMLFile != null){
var mybooks = booksXMLFile.open("r", undefined, undefined);
if(mybooks == true){
        var xmlbooksStr = booksXMLFile.read();
    }else{
        alert("Could not load booklist.xml file.")
booksXMLFile.close();
var xmlbooks = new XML (xmlbooksStr);
var mybooks= xmlbooks.path.section.length();
$.write(mybooks);
var myDialog = new Window('dialog', ' Books');
    myDialog.fDetails = myDialog.add('panel',undefined,'Book details');
    myDialog.fDetails.alignChildren = 'left';
    myDialog.fDetails.fPath = myDialog.fDetails.add('group');
    myDialog.fDetails.fPath.group = myDialog.fDetails.fPath.add('group');
    myDialog.fDetails.fTitle = myDialog.fDetails.add('group');
    myDialog.fDetails.btnGroup = myDialog.fDetails.add('group');
    with (myDialog.fDetails){
    fPath.group.orientation = 'column';
    fPath.group.alignChildren = 'right';
    fPath.group.preferredSize = [90,15];
    fPath.group.st  = fPath.group.add('statictext',undefined,'Select Book:');
//first drop menu
    fPath.dd = fPath.add('dropdownlist', undefined, undefined)
        for (i=0;i<mybooks;i++)
        var curitem= xmlbooks.path.section[i].text();
        fPath.dd.add("item",curitem);
    fTitle.st  = fTitle.add('statictext',undefined,'Select Size:');
    fTitle.st.preferredSize = [90,15];
//second drop menu
    fTitle.dd = fTitle.add('dropdownlist', undefined, undefined)
    fTitle.dd.enabled = false;
    btnGroup.btn = btnGroup.add('button', undefined, 'Alert Selection');
    btnGroup.alignment = 'right';
fTitle.dd.preferredSize = [90,15];
myDialog.fDetails.fPath.dd.onChange = function () {
    if(myDialog.fDetails.fPath.dd.selection) {
                     for (j=0;j<mybooks;j++)
        if (xmlbooks.path.section[j].text() == myDialog.fDetails.fPath.dd.selection.text){
        var myindex =j;     
        break;      
var mylength = xmlbooks.path.section[myindex].size.length();
//reset the list
myDialog.fDetails.fTitle.dd.removeAll();
for(i = 0; i<mylength ;i++){
   var curitem = xmlbooks.path.section[myindex].size[i].name.text();
myDialog.fDetails.fTitle.dd.add("item",curitem);
        myDialog.fDetails.fTitle.dd.enabled = true;
myDialog.fDetails.btnGroup.btn.onClick = function() {
    var myValStr
    if (myDialog.fDetails.fPath.dd.selection == null ){
        myValStr = "Make Book Selection \n"
        }else{
        myValStr = ""  
    if (myDialog.fDetails.fTitle.dd.selection == null ){
        myValStr = myValStr + "Make Size Selection"
    if(myValStr.length >1){
    alert(myValStr);
    }else{
        myDialog.close();
        alert("Thanks for your selections.");
myDialog.show();
// Rather than add an insane amount of length to this post i just edited it.
// The issue was xmlbooks.path[0].section[j], which was limiting it to the first instance of path

Similar Messages

  • CS3 javascript XML and attribute adding.

    I've been trying to get something working in CS3 javascript XML for some time and it is getting really frustrating.
    Say I have:
    var someXML = new XML("<anElement/>");
    someXML.@xxx = "something";
    $.writeln(someXML.toXMLString());
    gives the output I'd expect (<anElement xxx="something"/>);
    But I need the name of the attribute to be dynamic.  As far as I can see I should be able to either:
    someXML.getAttribute("xxx") = "something";
    or
    someXML.@["xxx"] = "something";
    both these cases give an error of 'Cannot set property xxx'.  I'm using CS3 version 5.0.4 (the debug build because most of the time I'm working directly with the API - not through scripting).
    I looking for ideas to try...
    Ian

    Hi Ole, thanks for the reply.
    I am aiming to manipulate XML using standard javascript functions - nothing directly to do with indesign, though other parts of the script does interact with it.  Basically the scripts allow a user to set some configuration options and that is in an XML string format (if it was the indesign XML Hierarchy XMLElements, etc I'm pretty sure I could get things to work - worst case I could add to the scripting support in a plugin and make it work...).
    I had an idea (driving home after a frustrating day), Since the XML I'm processing is small, I can move forward by crudely making a string from the XML object, inserting the attribute into the string and then re-new'ing the XML object.  With large comments about why - unless someone can come up with a reason/fix for the javascript-XML not working (I suppose it may just be the number of InDesign/Extendscript versions I have installed - CS2/CS3/CS4, indesign and server).
    Ian

  • How can you update the content of a textfield in a dynamic xml form from MSAccess and VBA

    I am trying to use the code below to update a field in a dynamic xml form created by Livecycle.
    I can read the field content but cannot change it.
    What am I missing?
    Thanks
    R
    Sub test()
    Dim oPDF As AcroPDDoc
    Dim FileDestName As String
    Dim jso As Object
    Dim ofld As Object
        FileSrcName = "C:\Documents and Settings\My Documents\ADOBE Forms\NoVB.pdf"
        Set oPDF = CreateObject("AcroExch.PDDoc")
        Set jso = oPDF.GetJSObject
        Set ofld = jso.getfield("form1.TopForm.Header.Subform1.Contact")
        Debug.Print ofld.Value
         ofld.Value = "HHH"
        Debug.Print ofld.Value
    oPDF.Save PSsavefull, FileSrcName
    oPDF.Close
    Set jso = Nothing
    Set oPDF = Nothing
    End Sub

    You need to research the difference between an AcroForm and an XFA form.  You're trying to access a "Field" object, which is an AcroForm object.  An XFA form does not have fields, it has nodes.  The JavaScript you are using is specific to AcroForms and you are working with an XFA form.

  • Adobe Livecycle Designer ES 2 - Adobe Dynamic XML Forms?

    How can you convert a dynamic XML form design in a static PDF Form design? I tried to save a dynamic XML Form as a static PDF Form, and then tried to preview it in Designer but the layout change scripts were working which should work only for dynamic xml forms and not for the static pdf forms. Please suggest another way to do it. Thanks in advance.

    You use Master Pages to set layout that you want to use on multiple pages.
    Design what you want in a Master Page and then assign it to the pages you want in Object>Pagination>Place: and choose On Page> whatever you called your Master Page.

  • Adobe Reader for Android to work with dynamic XML PDF forms?

    Any possibility that Reader for Android will ever work with dynamic XML PDF forms created by Abobe Acrobat Pro?

    GoodReader ($4.99), ezPDF Reader ($2.99) and PDF Expert ($9.99) are well rated and support many more features.
    Here a link for your reference: http://indesignsecrets.com/for-interactive-pdf-not-all-readers-are-equal.php

  • Build a web gallery with amazing flash slideshows with dynamic XML files

    Build a web gallery with amazing flash slideshows with dynamic XML files
    Screenshot:
    Features
    Features
    Transitions, zooming and panning effect You can  choose from  Random, Wipe from Left, Fade to White, Cross Expansion and  other 60-plus  transition effects. Zooming and panning effect is  optional for advanced flash  templates.
    XML-driven This flash slideshow are XML-driven. The XML  document allows more personalized controls over the flash.
    Auto-playback and repeat mode The flash slideshow will play  automatically after preloading, and it can repeat playback.
    Dynamic customization Besides XML control, the  advanced  templates provide many more custom options, so that you can  create slideshow  that fits into your existing web design: width ,  height, border color,  background color, thumbnail size, etc. More about  dynamic customization
    Usage and demo visit: http://webdesigndevelopment.blog.com...swf-xml-files/

    Please excuse the bump...
    Anyone with a LR flash gallery that starts with slideshow in play mode?
    Can it even be set to do this?
    The only code in the style.xml that looks like it might be realted is line 12 <playOptions playMode="pause"/>, changing that to "play" does nothing.
    Thanks,
    Donnie

  • How can i exclude information pages from being printed in a dynamic XML form?

    Hi there,
    i am building a dynamic XML form in Adobe LiveCycle Designer ES2.
    In this form there are pages with information that help the end user fill out the form, but to use - those who process the forms after they have been sent to us - these pages with information are irrelevant.
    Is there a way to tell the form to omit these pages when printing.
    Currently i have set the pages mentioned to be only visable on-screen.  But doing so results in an empty page being printed (only the master page information is visable.)
    Any ideas how i can solve this issue?
    Thank you.

    Create a new master page and set that page to visible screen only. Set your subforms to use that master.

  • Dynamic XML TAGS in PL/SQL

    Hi I wish to have dynamic xml tags in pl/sql e.g. say i have a table xml_table with xml_tag and tag_value as two columns. Let us say it has a rows
    XML_TAG = timezone
    TAG_VALUE = UK
    I want the output in the following format
    <timezone>UK</timezone>.
    Any ideas how to achieve it using ORACLE functions and not concatenate <> to the columns? Help would be much appreciated.

    This is a forum discussing questions related to Oracle Portal. I'd recommend you to take a look at XDB and XSQL, on Oracle's Web site at http://otn.oracle.com.
    Hope it helps,
    Peter

  • Adobe LiveCycle Dynamic XML forms & Apple iPad

    Are Adobe LiveCycle Dynamic XML forms viewable/useable by Apple iPad and Apple phone or other mobile devices? 

    According to Adobe, you can with LiveCycle ES4. At least, that's how I read their blog post on ES4 Mobile forms support.
    Of course, there have been several discussions started about this in the Adobe forums.
    Re: Unable to view the form in Mobile which was created using LiveCycle
    Re: I created a form using Adobe Livecycle, but I cannot open the form on Ipad or Samsung tablet pc.
    Re: Trouble using form on Android and/or iOS devices
    Re: help help...Making existing livecycle fillable form mobile(ios/android adobe reader) compatible
    Hope these help.

  • Dynamic XML PDF not importing fields

    I have a PDF developed in Livecycle and saved as a dynamic XML.
    My database is MS Access and from this I've exported a query saved as an XML file, a XSD schema and an XSL stylesheet. (files attached)
    I'm trying to populate the PDF from the above mentioned files client-side. I have the fields set up to display in a table with repeating rows.
    It seems that I've set everything up okay and I get no error generated in the log file when I preview the PDF in Livecycle, but, the fields are not
    being generated.
    I suspect maybe this is because I don't have the nested forms set up properly for a flowed subform. But I should get at least the first row generated
    shouldn't I, if it is reading the nodes in the XML?
    Attached is (a mock-up) of the PDF along with the XML, XSD and XLS. This form should flow to other pages when dynamically built and I'm hoping to
    display the header on each page (the header will be on the Master Page -- it will contain site links, etc.)
    I hope to not only import data to a PDF this way but also to export fields from the PDF in the same way for database edits...
    Can anyone tell me what I'm doing wrong in the attached?
    And, on another note... do all of the above need to be in the same folder together on the server or can I put the PDF in one folder and the XML, XSD
    and XLS a different folder? (Or the PDF and XLS in the same folder and XML and XSD files in a different folder, etc.)...
    Thanks for any reponses on this.
    - ed
    PS: Below is the XSD schema code (since I can only upload the 3 other files here)
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:od="urn:schemas-microsoft-com:officedata">
    <xsd:element name="dataroot">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element ref="WMS_x0020_BMI_x0020_Percentile_x0020_ZScore" minOccurs="0" maxOccurs="unbounded"/>
    </xsd:sequence>
    <xsd:attribute name="generated" type="xsd:dateTime"/>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="WMS_x0020_BMI_x0020_Percentile_x0020_ZScore">
    <xsd:annotation>
    <xsd:appinfo/>
    </xsd:annotation>
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="LastName" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="255"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="Firstname" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="255"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="PreHeight" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="50"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="PreWeight" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="50"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="PreBMI" minOccurs="0" od:jetType="double" od:sqlSType="float" type="xsd:double"/>
    <xsd:element name="PreBMIPercentile" minOccurs="0" od:jetType="double" od:sqlSType="float" type="xsd:double"/>
    <xsd:element name="PreZScore" minOccurs="0" od:jetType="double" od:sqlSType="float" type="xsd:double"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>

    Sorry for the delay in replying to this post. I got stuck at a friend's from the weekend snow we had... and am finally back on my own computer.
    Just before leaving Friday I found the problem with the form not displaying data fields read from the XML.
    It's a bit embarrassing to admit but, per Steve's instruction here to change the form preview properties (file/form properties) (thanks, Steve!) - I changed the preview from 'print one-sided' to 'interactive' and noticed that I had not set up the link to the XML under 'Data File'. Duh! So, it is reading the data from the XML now.
    However... For the form to display, I had to (under 'connection properties) take the XSLT file off. Under 'Connection Properties' the form is set up as XML Schema with the link to the XSD set up.
    The problem now is that a few of the dynamic fields are numbers. These number fields in the database only have two digits to the right of the decimal point (as in 93.79) but when the form loads these fields in the table in preview mode these fields contain 8 digits to the right of the decimal point (as in 93.79362082). I don't know why this is except that maybe it is because it's no longer reading from the XSLT file. All I want it to do is read the field exactly as it is in the database...
    The table on the form doesn't display as it should either. The table expands with the rows its presenting but this runs to the very bottom of the page and doesn't flow to the next page. I've tried changing the size of the 'root' form on the Master page as well as the size of the 'parent' subform of the table subform but the table still runs to the bottom of the page... I'll keep playing around with this until I fix it unless someone can point me in the right direction...
    Thanks for any leads on this...
    (new corrected file attached)
    Graham, this stuff really is interesting! These handful of files working together to build a dynamic PDF, reading the database XSD schema, an XML file and the XSL file as well as throwing in some Javascript functions is really cool... I'm also (hopefully) planning to have Cold Fusion query the database, depending on the login person's admin privilages, parse the fields from the database and build the XML file from this data 'on the fly' at login... Quite a lot going on in the background here to build the PDF! (I wish I could answer your question about the stylesheet but, obviously from the above, I'm a novice at this - I'm new at this and trying to grope my way around this stuff in the dark. These forums have been helpful as well as googling questions, but, there is still a learning curve here. I'm pretty rough with Javascript as well and that's a big feature of this stuff...)
    Thanks to anyone for direction on getting this file to display properly and the number fields to show the same as in database...
    - ed

  • Dynamic XML with Weblogic ?

    hello all !!
    May be this question is already answered, and sorry for that, but here again !
    I am trying to use Weblogic server, in order to process XML files, this files
    make a query to my Oracle Data Base, Before this I was using Cocoon (apache) to
    generate the dynamic XML with the query's result, is there a way to make the same
    thing with Weblogic ? anybody know how to do it ? do yu have a simple example
    ? here is a sample code that I use with cocoon.
    <?xml version="1.0" ?>
    <?cocoon-process type="xsp"?>
    <xsp:page language="java" xmlns:sql="http://www.apache.org/1999/SQL"
    xmlns:xsp="http://www.apache.org/1999/XSP/Core"
    xmlns:request="http://www.apache.org/1999/XSP/Request">
    <page title="SQL Search Results">
    <sql:execute-query>
    <sql:driver>oracle.jdbc.driver.OracleDriver</sql:driver>
    <sql:dburl>jdbc:oracle:thin:@IP_Address:1521:cta</sql:dburl>
    <sql:username>User</sql:username>
    <sql:password>Password</sql:password>
    <sql:doc-element>My_table</sql:doc-element>
    <sql:row-element>record</sql:row-element>
    <sql:query>select * from My_table</sql:query>
    </sql:execute-query>
    </page>
    </xsp:page>
    Thanks a lot for your help !
    Gustavo Mejia
    INFOTEC

    Since Cocoon is a servlet, just install it in Weblogic.
    "Gustavo Mejia" <[email protected]> wrote in message
    news:3b5ca3fa$[email protected]..
    >
    hello all !!
    May be this question is already answered, and sorry for that, but hereagain !
    >
    I am trying to use Weblogic server, in order to process XML files, thisfiles
    make a query to my Oracle Data Base, Before this I was using Cocoon(apache) to
    generate the dynamic XML with the query's result, is there a way to makethe same
    thing with Weblogic ? anybody know how to do it ? do yu have a simpleexample
    ? here is a sample code that I use with cocoon.
    <?xml version="1.0" ?>
    <?cocoon-process type="xsp"?>
    <xsp:page language="java" xmlns:sql="http://www.apache.org/1999/SQL"
    xmlns:xsp="http://www.apache.org/1999/XSP/Core"
    xmlns:request="http://www.apache.org/1999/XSP/Request">
    <page title="SQL Search Results">
    <sql:execute-query>
    <sql:driver>oracle.jdbc.driver.OracleDriver</sql:driver>
    <sql:dburl>jdbc:oracle:thin:@IP_Address:1521:cta</sql:dburl>
    <sql:username>User</sql:username>
    <sql:password>Password</sql:password>
    <sql:doc-element>My_table</sql:doc-element>
    <sql:row-element>record</sql:row-element>
    <sql:query>select * from My_table</sql:query>
    </sql:execute-query>
    </page>
    </xsp:page>
    Thanks a lot for your help !
    Gustavo Mejia
    INFOTEC

  • How to parse a dynamic xml in java

    I have to parse a dynamic xml document : the different TheItemNames and the racine are changing . So , can you help me with a code because to parse a xml document you must presents the racine and TheItemNames

    My previous post gives me an idea on how to use ArrayList of ArrayList as dynamic 2 dimensional array.
    More info bellow
    ArrayList rows = new ArrayList()
    ArrayList columns_of_row0 = new ArrayList()
    rows.insertAt(0) = columns_of_row0;
    ArrayList columns_of_row1 = new ArrayList()
    rows.insertAt(1) = columns_of_row1;and so on..
    You can't use the code exactly or similar way, it would depend on how this array grows in your application.
    But this and my previous post should give an idea on how to insert and retrieve elements from ArrayList when
    treated as 2 dimensional array.
    Hope this helps.

  • Runtime Error For Converting Static pdf to Dynamic Xml Form pdf

    Hi All,
    I am converting my static pdf to dynamic xml form pdf using Adoble Livecycle Designer ES 8.2 it is giving runtime error dialog.
    My static pdf size is 12MB and it contains 46 pages(mostly all pages will have images). Do we have any limitations for converting static pdf to dynamic xml form pdf ?
    Error message image file is attatched to this thread.
    Can any body please help me on this.
    Advance Thanks
    Prasad Sagala

    Hi Paul,
    With out dividing into smaller chunks, Do we have any other alternative?
    Because in my other pdf reports having more than 50 pages (in between 100-600). If i want do divide smaller chunks it will be the long process.
    Thanks
    Prasad Sagala

  • Dynamic XML Forms In Mars

    Hi,
    In the Mars Dev Guide, page 140 the note mentions that only static XML forms are addressed in the guide. Is there any available documentation regarding dynamic XML forms?
    Thanks,
    Kip

    Although there are no examples in the guide, XML Dynamic forms are actually easier to make in Mars format than static.  The easiest way to get an idea of what to do is to make a dynamic XML form and then save it in Mars format.  The XFA form description becomes an XML file in the Mars package.

  • Dynamic xml messages in alerts

    Hi,
    I have a ccBPM where I throw an alert on an application exception.
    I want to include the entire xml message in the alert and email it to assigned users. I tried doing a document-to-string conversion of the xml message and putting the string in alert message as &messagestring& but the value gets stripped after first 80 characters or so.
    Does anyone have experience in having dynamic xml messages in alerts? Is there any other way of doing it?Any insights are appreciated.
    Thanks and Regards,
    Suresh.

    The way we did is, before raising the alert we sent the whole message in an email (mail adapter) to the group email id.
    Sudhir /Michal can answer this best.
    regards
    SKM

Maybe you are looking for

  • Burning to folder and then to dvd

    Hello, I am getting into a complete mess trying to burn my project in PE7 to a folder ( can't even see "burn to folder" option!) I need to comlpete this project today so can u PLEASE give me the steps I need to take. I did look in forums, but still n

  • OVM 3.1.1 shared virtual disk

    Hi All, Is it possible to configure shared virtual disk in OVS 3.1.1 as it was in OVS 2.x ? Thanks in advance

  • Macbook pro osx 10.7.5 won't shut down

    Can someone please tell me how to resolve this? I've been to Activity Monitor and, though I'm not sure what I'm looking at, I don't think anything else is actually in progress. I'm trying to avoid doing a hard shut down.

  • Service Teplates vs Virtual Machine Templates vs Cloning

    I need to find the method with the best performance for creating new virtual machines when a customer joins our private cloud. The use case is as follows. Our customers will submit their application settings via our customer portal Then our software

  • Edited Clips resized when trying to make a movie

    I've went through my videos and have the clips that I want to keep. When I go back in and add them to a new sequence, they are zoomed in for some reason. So I thought I had some setting wrong. But when I bring a new video clip in that I haven't edite