EventQueue not firing event node

I'm not having any luck getting an XMLEvent node to fire and assign workflow
variables from TextMessages send to the eventQueue with WLI 2.0 sp2 from an
external application. I've checked to make sure the root element is the
same as the event node definition. While monitoring the "Active JMS
Destinations" in the console, I do see the number of "Messages Received" for
the eventQueue increase. The xml string sent to the queue is as follows:
<?xml version="1.0" encoding="UTF-8"?><policy-check-response><timesheet
id="1070"/><hasErrors>true</hasErrors></policy-check-response>
There is no document type...does the root element not only have to match the
event node definition, but also be the first line? Please HELP!
The process flow is as follows (Steps 1-4 succeed, #5 never happens)
1)WLPI task "Mark As Done" fires external xml request --> 2) external app
listener --> 3)external app ... --> 4)external app queue sender posts xml
response to eventQueue -- 5)xml event node assigns workflow variable based
on external app's xml message response.
Jon Wilmoth
Software Architect
eSage Group
(206) 264-5675 (Voice & Fax)
[email protected]
http://www.esagegroup.com

Jon
I must be in a good mood or something. Attached you will find a jar file
that you can import via the tools option. This template contains a task that
posts the XML message you specified along with an event to consume the
message. Please take a look at the eventKey that has been defined under the
configuration option as well as the event node.
Thanks
Tony Lodge
WLI Senior Engineer
"Jon Wilmoth" <[email protected]> wrote in message
news:3b96c4fa$[email protected]..
I'm not having any luck getting an XMLEvent node to fire and assignworkflow
variables from TextMessages send to the eventQueue with WLI 2.0 sp2 froman
external application. I've checked to make sure the root element is the
same as the event node definition. While monitoring the "Active JMS
Destinations" in the console, I do see the number of "Messages Received"for
the eventQueue increase. The xml string sent to the queue is as follows:
<?xml version="1.0" encoding="UTF-8"?><policy-check-response><timesheet
id="1070"/><hasErrors>true</hasErrors></policy-check-response>
There is no document type...does the root element not only have to matchthe
event node definition, but also be the first line? Please HELP!
The process flow is as follows (Steps 1-4 succeed, #5 never happens)
1)WLPI task "Mark As Done" fires external xml request --> 2) external app
listener --> 3)external app ... --> 4)external app queue sender posts xml
response to eventQueue -- 5)xml event node assigns workflow variable based
on external app's xml message response.
Jon Wilmoth
Software Architect
eSage Group
(206) 264-5675 (Voice & Fax)
[email protected]
http://www.esagegroup.com
[jon.jar]

Similar Messages

  • Sharepoint 2013 document library incoming email without attachment not firing event and not getting email

    sharepoint document library incoming email without attachment not firing event and not getting email
    If email contains attachment it works. Is there any setting in document library that will allow emails and eventhandler to fire with out attachment?
    MCTS Sharepoint 2010, MCAD dotnet, MCPDEA, SharePoint Lead

    What is the purpose of email sent to document library if no attachment. What document library will do what that email if it cant find attachment to save and create a spdoc object. If you want to store email/communication body then opt for site mailbox
    app.
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • JTabbedPane not firing event?

    Hi all,
    The source of my problem might not the JTabbedPane itself, however. I think I need some expert's advice here.
    First, I'm coding with IntelliJ. That IDE offers an excellent debugger, and what drives me crazy, is that my problem doesn't occur when I set a watch point on a given line...
    Here is what I try to do:
    I'd like a String outside the tabbed pane to be updated everytime the user changes the currently selected pane. For the story, that string is in fact the title of a TitledBorder instance.
    To implement that, I programmed a ChangeListener, that I added to the tabbed pane. Here is its code, omitting imports :
    public class TabbedPaneListener implements ChangeListener
    protected JTabbedPane tabbed_pane;
    protected TitledBorder titled_border;
    public TabbedPaneListener(JTabbedPane tp , TitledBorder tb)
    tabbed_pane = tp;
    titled_border = tb;
    public void stateChanged(ChangeEvent e)
    String new_title = tabbed_pane.getTitleAt(tabbed_pane.getSelectedIndex());
    titled_border.setTitle(new_title);
    Here is what happens when I run my program normally:
    the title of the Border doesn't update when I swap between tabs, instead, it will only update when I do some actions, anywhere.
    Here is what happens when I run my program, in debug mode, setting a watch point inside the stateChanged() method:
    the title of the border updates accurately, i.e. everytime I swap between panes.
    Any input is welcome. If you have a better idea for implemeting this little "update" trick, tell me! Thanks

    seems to need a call to repaint() before it will update
    works OK like this
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.border.*;
    class Testing extends JFrame
      TabPanel[] tabPanels = new TabPanel[4];
      JPanel jp = new JPanel();
      TitledBorder tbdr = BorderFactory.createTitledBorder("Tab 1");
      public Testing()
        setLocation(300,200);
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        jp.setBorder(tbdr);
        final JTabbedPane tp = new JTabbedPane();
        for(int x = 0; x < tabPanels.length; x++)
          tabPanels[x] = new TabPanel();
          tp.addTab("Tab "+(x+1),tabPanels[x]);
        jp.add(tp);
        getContentPane().add(jp);
        pack();
        tp.addChangeListener(new TabbedPaneListener(tp,tbdr));
      class TabbedPaneListener implements ChangeListener
        protected JTabbedPane tabbed_pane;
        protected TitledBorder titled_border;
        public TabbedPaneListener(JTabbedPane tp , TitledBorder tb)
          tabbed_pane = tp;
          titled_border = tb;
        public void stateChanged(ChangeEvent e)
          String new_title = tabbed_pane.getTitleAt(tabbed_pane.getSelectedIndex());
          titled_border.setTitle(new_title);
          repaint();
      public static void main(String[] args){new Testing().setVisible(true);}
    class TabPanel extends JPanel
      JTextField tf1 = new JTextField(10);
      JTextField tf2 = new JTextField(10);
      public TabPanel()
        add(tf1);
        add(tf2);
    }

  • Event node not consuming messages

    Hi
    I am sending an XML message from a different application to WLI destination WLI_BPM_Event
    queue using JMS and have an event node in a workflow in BPM waiting for the message.
    I see the message reaching the destination ( in console ) but it is in pending
    state and is not being consumed by the event node. On the other hand if I use
    a dummy workflow template to post the same xml message to WLI_BPM_EVENT queue
    in WLI, the message is being consumed by the event node in the original workflow.
    Do you have any idea as to what could be the reason for this?
    Here is the sample code in onMessage of my MDB that is sending the message to
    BPM. It is a simple starting point and I am not worried of multiple instances
    of workflow too. This code is triggered by the bean after it receives an XML message
    from BPM and processes it.
              QueueConnectionFactory workFlowQConnectionFactory =
         ServiceLocator.getInstance().getQueueConnectionFactory("com.bea.wlpi.QueueConnectionFactory");
    Queue workFlowQ = ServiceLocator.getInstance().getQueue("com.bea.wli.bpm.EventQueue");
    QueueConnection workFlowQConnection = workFlowQConnectionFactory.createQueueConnection();
    QueueSession acctRespSession = workFlowQConnection.createQueueSession(
    false, Session.AUTO_ACKNOWLEDGE );
    QueueSender acctRespSender = acctRespSession.createSender( workFlowQ
    TextMessage acctCreationResponse = acctRespSession.createTextMessage();
    StringBuffer response = new StringBuffer();
    response.append("<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>");
    if ( accountCreated ) {
    response.append("<accountCreated>yes</accountCreated>");
    } else {
    response.append( "<accountCreated>no</accountCreated>" );
    acctCreationResponse.setText( response.toString() );
    logger.info("Sent message " + acctCreationResponse.getText() );
    acctRespSender.send( acctCreationResponse );
    Thanks
    Sreeram

    Hi Chris
    How come I don't see a destination by that jndi name in the list of destinations
    under the WLIJMSServer in admin console? I double checked in two separate installations.
    I didn't do any custom configurations either and that was a default EAI domain
    configuration. I see com.bea.wli.bpm.EventQueue and not com.bea.wli.bpm.Event
    Thanks
    Sreeram
    Chris Stead <[email protected]> wrote:
    Hi Sreeram,
    Try using com.bea.wli.bpm.Event (not com.bea.wli.bpm.EventQueue).
    Cheers,
    Chris
    Sreeram wrote:
    Hi
    I am sending an XML message from a different application to WLI destinationWLI_BPM_Event
    queue using JMS and have an event node in a workflow in BPM waitingfor the message.
    I see the message reaching the destination ( in console ) but it isin pending
    state and is not being consumed by the event node. On the other handif I use
    a dummy workflow template to post the same xml message to WLI_BPM_EVENTqueue
    in WLI, the message is being consumed by the event node in the originalworkflow.
    Do you have any idea as to what could be the reason for this?
    Here is the sample code in onMessage of my MDB that is sending themessage to
    BPM. It is a simple starting point and I am not worried of multipleinstances
    of workflow too. This code is triggered by the bean after it receivesan XML message
    from BPM and processes it.
              QueueConnectionFactory workFlowQConnectionFactory =
         ServiceLocator.getInstance().getQueueConnectionFactory("com.bea.wlpi.QueueConnectionFactory");
    Queue workFlowQ = ServiceLocator.getInstance().getQueue("com.bea.wli.bpm.EventQueue");
    QueueConnection workFlowQConnection = workFlowQConnectionFactory.createQueueConnection();
    QueueSession acctRespSession = workFlowQConnection.createQueueSession(
    false, Session.AUTO_ACKNOWLEDGE );
    QueueSender acctRespSender = acctRespSession.createSender(workFlowQ
    TextMessage acctCreationResponse = acctRespSession.createTextMessage();
    StringBuffer response = new StringBuffer();
    response.append("<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>");
    if ( accountCreated ) {
    response.append("<accountCreated>yes</accountCreated>");
    } else {
    response.append( "<accountCreated>no</accountCreated>");
    acctCreationResponse.setText( response.toString() );
    logger.info("Sent message " + acctCreationResponse.getText());
    acctRespSender.send( acctCreationResponse );
    Thanks
    Sreeram

  • OnRowUpdating Event not firing in my DataGrid in custom web part in my production SharePoint 2013 Foundation instance

    Hi,
    I have a custom visual web part that I've developed for SharePoint 2013 Foundation.  I am using Visual Studio 2013 to develop this web part. 
    In my visual web part I have GridView that I use to update data in a SQL 2008 R@ Server Database.  In dev and test the OnRowUpdatingEvent fires properly, but in production it does not.  I have the same version of SharePoint running on dev/test/prod. 
    The main difference between the three environments is the hardware.  Production has a much beefier sever than dev and test.  Dev and test are also virtual machines where production is.
    At first I thought my problem was cache related, and I made adjustments per this article:
    http://www.dmcinfo.com/latest-thinking/blog/id/8657/fix-sharepoint-2013-distributed-cache-timeouts
    That didn't help because the event is still not firing.  I took my test application and pointed it to the production database, and that event still fires in test but not in production. So I believe that eliminates database permission errors since I'm
    using the same credentials in both instances.
    My guess is that I need to change some settings in the production environment, but I'm not sure at this point what that might be.
    Any suggestions on what settings to look at?
    Brian
    Brian Hochgurtel
    My blog

    Try this solution :
    http://stackoverflow.com/questions/5893373/c-sharp-rowupdating-method-not-called-when-update-is-clicked-in-a-gridview

  • CS Extension, Script UI and events not firing in Photoshop CS5

    Hi!
    I'm a bit confused with two technologies dealing with SWF panels. There was a technique in the previous versions of Photoshop when SWF content has been loaded into a ScriptUI Window. Is it changed? Or does it still work together with CS Extension extensions?
    I have a script that creates ScriptUI Window and then loads an SWF into it. It has a custom 'mousemove' event listener that helped to move this window around the screen. Now - in the new Photoshop CS5 (I tried 12.0.1 as well) - it seems like the 'mousemove' event is not fired for ScriptUI windows containing SWFs.
    I'm not sure, maybe it has something to do with the new SWF treament in CS5?
    If I'm wrong, then I'm sorry, if this question doesn't fall into this forum's area of expertise.
    Thank you!

    10x,
    You saved my ***!
    It actually has to include both the PHSP "AND" the PHXS host names for it to work - this is stupid!
    If I only use PHXS the extension manager is not able to install the extension, saying it cannot find a host that matches the manifest (even though my photoshop IS the extended variation, so in a sense it's more acurate manifest-wise), and if I only use the PHSP, it IS loaded but doesn't appear in the application!
    AND THERE IS NO DOCUMENTATION ON THIS PHENOMENON ANYWHERE!
    THIS IS BEYOND IRRESPONSIBLE!
    Thank you very much david, but please, as you are an adobe employee, get this message to the right people, if you can.
    I know the corporate agenda would probabely be the incentivise people to register to the 1500$ program to get the extension-builder, by keeping the alternative inconvenient, but this issue is beyond inconvenient, it's border-line cruelty!

  • Event.deactivate is not firing with flash plugin 10,2,152,26 embeded in IE 8 and above

    I am working on a portal which is built in flex. I wanted to perform some action based on my applications is in focus or out of focus. So  I tried to use two Events for this purpose Event.Activate and Event.Deactivate inside my flex code.
    These events fire perfectly in FF 3.0 and above, Safari, Chrome and these events get triggered till IE 7.
    But when I switch to IE 8 and above versions with latest flash player plugin 10,2,152,26 the Event.deactivate is not firing, and I am not able to detect whether my Flex application is out of focus.
    I tried doing some research around this issue both using Flex Events and Javascript approach using window.onfocusin and window.onfocusout, but still no luck in IE 8 and higher versions with latest Flash plugin 10,2,152,26.
    Has someone faced this kind of issue. Any help or solution to this problem would be appreciated. As we have a large number of users viewing this portal in IE 8 with latest flash plugin.
    The code is simple and I have pasted below:
    package {
      import flash.display.*;
      import flash.utils.*;
      import flash.events.*;
      public class Main extends Sprite {
        public function Main() {
          this.addEventListener(Event.ACTIVATE, activateListener);
          this.addEventListener(Event.DEACTIVATE, deactivateListener);

    this is a known issue (or, really a collection of issues) related to how the deactivate event works in different browsers.  check colin moock's blog.
    for most, but not all, purposes using a mouseleave event works well-enough.

  • How to select node in JTree without firing event?

    I have got standard situation. JTree in the left panel, and several edit boxes in right panel. Certainly, I have TreeSelectionListener, which on every tree node selection shows corresponding model values in edit boxes.
    I'd like to implement next logic:
    1. Something was changed in any edit box in right panel. Model has been changed.
    2. User clicks on different node in tree.
    3. Dialog "Message was not saved. Save?" with Yes/No/Cancel buttons are shown.
    Yes/No buttons are easy to handle.
    Question is about Cancel. I'd like on Cancel button left all edit boxes in their present state (do not restore values from saved model) and select back node, which wasn't saved.
    Problem is next. If I select node by setSelectionPath or smth like that, but... JTree fires event and my listener receives onTreeItemSelected back, which checks that node wasn't saved and ......
    Who does have any idea, or have done similar tasks? How can I select node and do not allow tree fire event this time?
    Thanks in advance.

    First, as soon as the model changes (when editing any
    combo box) some flag will be set. Now the logic which
    updates the combo boxes will do it only on a change of
    the current node and (this is new) if the flag wasn't
    set. You should have some flag anyway because somehow
    you must determine when to show the dialog, shouldn't
    you?Yes, I have got this logic implemented. But it's only the half :)
    I know exactly when my model has been changed, but if it was changed, i'd like to ask user what to do next - svae/loose changes/cancel
    And on cancel i'd like to select last edited tree node and do not get event from tree at that moment.
    >
    Second way, prevent selecting a new node if that flag
    has been set. You could do this by subclassing
    DefaultTreeSelectionModel and overriding some methods
    (setSelectionPath() et al).Ok. I'll investigate this.
    >
    MichaelThanks.

  • PlEASE HELP EASY QUESTION: unload event is not firing at all.

    Hi, onUnload event is not firing in Safari browser. I tried with different ways to capture that event but i failed to capture that event. So please help me on this, give suggestions to capture that event. Or any other event is firing when window is closing. Actually, i need to execute when window is closing. But in Safari the window is closing without firing of any events.

    Safari doesn't execute the unLoad action when closing windows, period!
    It only executes it when loading another page.
    I might be wrong but I think Safari doesn't allow you to close a window with Javascript at all. All close events are blocked.
    Maybe a SWF file can do it somehow. But I'm not sure...

  • WHEN-CUSTOM-ITEM-EVENT - not firing. Please Help

    Hi Grant,
    WHEN-CUSTOM-ITEM-EVENT - not firing. Please Help..
    I need a help from you.
    1) I have developed an form to browse the client machine and upload the file on server / table
    2) Registered the form in Oracle Apps 11.5.10.
    3) Currently i am able to open the File_Dialog and browse throught the clients machine
    But when ever user selects any file and says Open, i am not able to retrieve the file name. wHEN-CUSTOM-ITEM-EVENT is not
    firing. I am sure how we can invoke this CUSTOM-ITEM-EVENT.
    To devlop the form i have referred PERWSIMG.fmb - of Oracle (Apps) HRMS which uploads the employee photo in the Database.
    Hence i have used the same java code / Implementaion Class.
    Please help...
    Regards
    Sameer

    Hi Francois,
    You were right. I re-loaded the zip file and the original version works. Odd, as I don't remember ever modifying those files.
    But my original issue still remains.
    The only code I've added is this:
    Color mycolor = this.getBackground() ;
    setBackground(mycolor);to the CalendarFrame constructor. How could this be causing the trigger to not fire?
    Could it be the way I created the bean? I copied all the java files to my project, attached the libraries, created a deployment profile. Everything compiles without errors or warnings, and the jar is created without issues. The java console doesn't give any errors either.
    Thanks for all your help,
    A
    Edited by: Abigail Parmar on Mar 26, 2009 1:01 PM

  • Kinect is not firing MultiSourceFrameArrived event after some time

    Hi,
    I am using Kinect v2 with EmguCV in my application. I am performing some image processing task on the acquired frame. I noticed that after some time (1-2 minutes) the Kinect is not firing MultiSourceFrameArrived event.
    Below is the snippet of the code-
    public partial class KinectForm : Form
    KinectSensor kinect;
    MultiSourceFrameReader reader;
    CoordinateMapper coordinateMapper;
    public KinectForm()
    kinect = KinectSensor.GetDefault();// Get the connected kinect Sensor
    coordinateMapper = this.kinect.CoordinateMapper;
    reader = kinect.OpenMultiSourceFrameReader(FrameSourceTypes.Color | FrameSourceTypes.Depth);
    kinect.Open();// Start reading the data from kinect
    InitializeComponent();
    private void FrameArrivedDisplayMode(object sender, MultiSourceFrameArrivedEventArgs e)
    var reference = e.FrameReference.AcquireFrame(); // Get a reference to the arrived frame
    ColorFrame colorFrame = reference.ColorFrameReference.AcquireFrame(); // Access color frame
    DepthFrame depthFrame = reference.DepthFrameReference.AcquireFrame(); // Access depth frame
    if (colorFrame != null && depthFrame != null)// Do not proceed, if any frame is expired
    RenderColorPixels(colorFrame);
    RenderDepthPixels(depthFrame);
    // Lots of image processing is being performed here
    if (colorFrame != null) colorFrame.Dispose();
    if (depthFrame != null) depthFrame.Dispose();
    private void KinectForm_FormClosing(object sender, FormClosingEventArgs e)
    if (this.reader != null)
    this.reader.Dispose();
    this.reader = null;
    if (this.kinect != null)
    this.kinect.Close();
    this.kinect = null;
    private void displayModeRadioButton_CheckedChanged(object sender, EventArgs e)
    if (displayModeRadioButton.Checked)
    reader.MultiSourceFrameArrived += FrameArrivedDisplayMode;
    else
    reader.MultiSourceFrameArrived -= FrameArrivedDisplayMode;
    The above code was working earlier, but later on once I added more processing on the data, the event was not fired at all after some point of time.
    I am disposing the frame every time. Why this is happening? How to fix this problem?
    Thanks

    Carmine, Thanks a lot for prodding the references. I am in the process of designing it.
    Meanwhile, since as you said the above code was holding the frame data and disposing the frame after processing it, so I though of changing the style little bit. Please see the code below-
    private void FrameArrivedDisplayMode(object sender, MultiSourceFrameArrivedEventArgs e)
    var reference = e.FrameReference.AcquireFrame(); // Get a reference to the arrived frame
    ColorFrame colorFrame = reference.ColorFrameReference.AcquireFrame(); // Access color frame
    DepthFrame depthFrame = reference.DepthFrameReference.AcquireFrame(); // Access depth frame
    if (colorFrame != null && depthFrame != null) // Do not proceed, if any frame is expired
    ColorFrame.CopyConvertedFrameDataToArray(ColorFramePixels, ColorImageFormat.Bgra);
    depthFrame.CopyFrameDataToArray(DepthFrameData);
    colorFrame.Dispose();
    depthFrame.Dispose();
    //Here I am doing image processing
    Now, this way I am not using some of the frames but it should work, since the frame is disposed earlier.
    But still after some time, the event is not fired out.
    Why? Can you tell me the reason?
    Thanks
    Ravi

  • JDialog dispose() not firing windowClosing()/windowClosed() event

    I have a small dialog that has 'OK' and 'CANCEL' buttons. When the user clicks on the 'X' in the top right hand corner to close the window, the windowClosing() event is fired on all listeners. However, calling dipose() when i click on the 'OK' or 'Cancel' buttons does not fire the event. I am sure this should work without a problem but i just cannot see what is going wrong.
    Andrew

    I'd have to test this, but there's some sort of logic to think that calling hide or dispose would not generate events. What would be the point? You know it's going to be closed, so you should tell anyone who needs to know. You can get the list of listeners and fire your own event if you wanted.
    Window.dispose() does fire a window closed event, though.
    If you want to simulate closing... This is from code I had written... some of it you can replace as appropriate (isJFrame(), etc).
          * Closes the window based on the window's default close operation. 
          * The reason for this method is, instead of just making the window
          * invisible or disposing it, to rely on either the default close
          * operation (for JFrames or JDialogs) or rely on the window's other
          * listeners to do whatever the application should do on the "window
          * closing" event. 
         private void doClose() {
              int closeOp = getDefaultCloseOperation();
              // send the window listeners a "window closing" event... 
              WindowEvent we = new WindowEvent(getWindow(), WindowEvent.WINDOW_CLOSING, null, 0, 0);
              WindowListener[] wl = getWindow().getWindowListeners();
              for(int i = 0; i < wl.length; i++) {
                   // this handler doesn't need to know...
                   if(wl[i] == this) {
                        continue;
                   wl.windowClosing(we);
              // if still visible, make it not (maybe)...
              if(getWindow().isVisible()) {
                   switch(closeOp) {
                        case WindowConstants.HIDE_ON_CLOSE:
                             getWindow().setVisible(false);
                             break;
                        case JFrame.EXIT_ON_CLOSE:
                        case WindowConstants.DISPOSE_ON_CLOSE:
                             getWindow().setVisible(false);
                             getWindow().dispose();
                             break;
                        case WindowConstants.DO_NOTHING_ON_CLOSE:
                        default:
         * Gets the default close operation of the frame or dialog.
         * @return the default close operation
         public int getDefaultCloseOperation() {
              if(isJFrame()) {
                   return ((JFrame)getWindow()).getDefaultCloseOperation();
              if(isJDialog()) {
                   return ((JDialog)getWindow()).getDefaultCloseOperation();
              // "do nothing" is, for all intents and purposes, the way AWT
              // Frame and Dialog work.
              return WindowConstants.DO_NOTHING_ON_CLOSE;

  • JSC on Tomcat 5.5.20 - Session/Applicaton Bean events not firing

    Hi,
    I am running a JSC app on Tomcat 5.5.20.
    Session and application bean events init and destroy are not firing.
    they work fine on my development machine using the Sun App server..
    Anyone have any ideas?
    Thanks
    Colin

    Hi,
    This is actually a Tomcat bug that was introduced from versions 5.5.20 and higher.
    If you create your application in a path that contains spaces you will encounter this problem.
    The workaround is to create your application at a path with no spaces.
    Here's the bug on Tomcat's website:
    http://www.mail-archive.com/[email protected]/msg37222.html
    It should be fixed in Tomcat 5.5.24
    You won't even need to create a listener or add any jar files.
    Hope this helps
    Yousuf

  • Output--- automatic mail is not firing to sold to party.

    Dear Gurus,
        My client requirement is to sent mail to sold party when saving a sales order.
      For this I creted a new output type with following assignments
    In General data tab:acess sequence assigned and Access to conditions is checked
    In Default values tab: Dispatch time(send immadiately), transmission medium(External send), partner function(Sp
    ),Communication strategy(CS01) assigned.
    In Time tab: no information given
    In Storage system tab :Storage mode(print and archive),Document type(SDOORDER) info given.
    In Print tab: print parameters(sales org) assigned.
    In mail tab: nothing assigned.
    In sort order tab:nothing assigned
    In mail title and texts: En and DE languages are assigned.
    in processing routines: program and form routine is assgned.
    in partner functions: External send+ SP is maintained.
    and in condtion record maintained in VV11 tcode with details
    Partner function and in communication assigned printer and  selected check box print immadiately and release after out.
    But automatic mail is not firing when saving the sales order, but in change sales order in menu bar selected sales document and issue output to and selected print then mail is firing to the sold to party, pls tell me where i had done the mistake.
    Rgrads,
    kishore.
    Edited by: kishore gopala on Sep 13, 2008 1:42 PM

    Check whether you have maintained the email address in the customer master of Sold to party in the General Data>Address Tab> Under Communication Area??
    In the SCOT Transaction, check under SMTP (SMTP Mail Server)-->under INT (Internet) --> an  '*' asterisk has been maintained or not.
    Check the status of the email output in the Sales Order, is it showing with a green traffic light???
    If it is showing with a green traffic light you can manually see the status of the mail mesages in Transaction SOST.(by executing, by putting the Sender Id)
    If they have not gone you will be able to see them queued up there.
    Select the individual messages and press execute button. By doing this email outputs will be released.
    Hope this helps you.
    Caution: One word of caution is that SCOT is a very critical transaction. And if you are working on a live server, do not play with it as it controls the entire SAPconnect Administration Nodes.
    Hope this helps.
    Regards,
    Vivek

  • WHEN-NEW-ITEM-INSTANCE TRIGGER NOT FIRING IN FORM PERSONLIZATION

    We are upgrading to R12, when-new-item-instance trigger written for radio group not firing. using USO-821 Order Administrator Responsibility the function order capture.After clicking on actions push button
    opening Copy Quote for this Form Personalization written.
    For Radio Group Copy-Group when-new-item-instance trigger written but this trigger not firing,but In 11i Instance its Firing.
    trigger-event: when-new-item-instance
    Trigger-object:copy_group
    condition:when copy_group='ALL'
    Action: showing message.
    The same when-new-instance trigger written in form item level and trigger execution hierarchy properties 'OVERRIDE'.
    Just I am thinking this overriding by Item level trigger of form.
    Please kindly help me quickly .What I need to do?
    How can I make trigger to Fire?
    Please kindly give solution.....Its very urgent Requirement.pls help me.
    Regards,
    Basavaraj

    Please kindly help me quickly .What I need to do?
    > Please kindly give solution.....Its very urgent Requirement.pls help me.
    Kindly log a SR for urgent issues.
    Thanks,
    Hussein

Maybe you are looking for

  • Multi mapping and File Content Conversion

    Hi, I've created a similar interface to the the one in this blog /people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm--yes-it146s-possible In the Config, I receive a CSV and use FCC in the File Adapter to build the XML file. Because of the mult

  • Cs5 - images have weird grid-like/pixelation distortion i cant get rid of! help!

    i've just downloaded the trial of photoshop cs5 (it took ages mind you!) and when i go to open (or create) a file that is larger (eg 1000x750 pixels) there is this weird grid that distorts the image (it's not the grid you can turn off and on or the g

  • Periodic X segfault (Intel graphics SNA bug)

    After a recent update, I have been having some major issues with X periodically segfaulting.  Unfortunately, the stack trace does not reveal much.  Complete Xorg log: [ 4.300] X.Org X Server 1.16.0 Release Date: 2014-07-16 [ 4.300] X Protocol Version

  • Copy of Solaris ver 2.4!

    Hi, We are running solaris ver 2.4 (yes, 2.4!!) on some old sun boxes. My understanding is that the CAD software we are running on these machines requires ver 2.4 - we have problems running it on solaris 2.5. My problem is that we have lost the ver 2

  • White Balance Options

    Hi, Under Develop, when I select White Balance, all I receive in the drop down menu are "auto", "custom", and "as shot". I should be given the options of "Tungsten", "shade", "daylight", etc. How can I get the full selection of White Balances? I have