Error share blueprint bpmn

Hello,
i have designed a bpmn modell in the bpa suite which contains a lot of elements not provided in JDeveloper,
such as link events, transactions, pegged events ....
So i take a variant of this model and transformed this completly using the soa extensions .
The "validation of a service-oriented BPMN model in Oracle BPA Suite" (menu --> soa --> validate business process)
for the adapted model displays no error found.
But when i try to share it (menu --> soa --> share blueprint), there will be an error:
"There are cross edges in the BPMN model, remove the crossedges"
I have one pool with 2 lanes in the model.
All dead references shown in properties relationship are deleted.
Have anyone any idea how to get this model ready to transform?
Thank you for answering

Hi Danilo,
In what cases can appear that error? I have the same error and I can't share blueprint because of that.
What is it talking about?
And by the way: is there any document in which errors generated by BPA are described? I would by thankful, if you could give me any links... :)
Bye,
Pawel

Similar Messages

  • Error while converting BPMN to BPEL in Business Process Architect

    Hey,
    I am using Business Process Architect 11gR1 where I have modeled my process. Now that I have to move this model to BPM, I am using the option SOA -> share blueprint with IT in BPA. A dialog appears that asks to validate the model. I confim with "Yes" and it shows the conversion progress bar but after the while an error appears (a java exception). A report opens in my browser that has the following message
    Validation of a service-oriented BPMN model in Oracle BPA Suite
    Structure rules for BPMN in Oracle BPA Suite
    Rules for a service-oriented BPMN model in Oracle BPA Suite
    String not found: RULEKIND_NAMEd89733d0-d605-11db-0505-000fb0c4ad32
    The java exception is "Error while creating report:
    report: oraclebpmn2bpel, line 632
    Type error: cannot find function getErrNo in object.java.lang.IllegalArgumentException. (oraclebpmn2bpel#632)
    can anyone please help me as to why this happens and how it can be sorted out?
    Edited by: user10303310 on Dec 13, 2011 3:10 AM

    Hi Julika,
    The error message might not be related to the activities itself. I assume your model is not well structured. Consider that the following points aren't disregarded:
    * Never "jump" out of a particular branch into a different part of the model or into another branch
    * All functions/events have only one incoming/outgoing connection
    * Process parallel flows should be specified by splitting and joining AND/XOR rules, or they should contain either one splitting AND/XOR rule only for which there is no other connection between their paths, or one joining AND/XOR rule only that is met by all connections.
    Let me know if it did not help to fix your problem.
    Best regards,
    Danilo

  • Share blueprint - TypeError: Cannot call method "OutEdges" of undefined'

    Hello,
    I made a BPMN-model in the BPA-suite and want to share the blueprint with IT. The firsttime I succeeded. But when I change the model and want to share the blueprint with IT, I get the following error:
    internal error: TypeError: Cannot call method “OutEdges” of undefined’.
    I am working on a windows2003 platform, the version of the BPA-suite is 10.1.3.4 and the database is a Oracle 10g express edition.
    Does anyone recognise the problem and know the solution?
    Best,
    Jan Tammenga

    Hi Danilo,
    In what cases can appear that error? I have the same error and I can't share blueprint because of that.
    What is it talking about?
    And by the way: is there any document in which errors generated by BPA are described? I would by thankful, if you could give me any links... :)
    Bye,
    Pawel

  • System error's blueprint

    This is a tool that i've been working on for a couple of days, it needs work (so no flames) I want to make a similar linux compatable version aswell...
    It's basically a tool that I think network administrators and pen-testers / ethical hackers alike would find usefull all comments welcome, it has the following features:
    Ping computer
    net view
    nslookup
    net users
    tracert
    syskey encryption
    remote desktop
    netstat
    remote shutdown
    ping of deathScreenshot -->
    http://img138.imageshack.us/img138/4777/copyofblueprintfinallb7.jpg
    Source code: http://www.mediafire.com/?7myynwankml
    Class file: http://www.mediafire.com/?6zjdk3msmgm
    Source:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.lang.*;
    import java.lang.String.*;
                                            //======================System error's blueprint=======================
    class blueprint extends JFrame implements ActionListener
    JButton button1 = new JButton("Ping computer");
    JButton button2 = new JButton("network view");
    JButton button3 = new JButton("nslookup");
    JButton button4 = new JButton(" net users ");
    JButton button5 = new JButton("Tracert");
    JButton button6 = new JButton("syskey encryption");
    JButton button7 = new JButton("remote desktop");  
    JButton button8 = new JButton(" netstat ");  
    JButton button9 = new JButton("Remote shutdown");//shutdown.exe -i -l -s -r -a -f -m
    JButton button10 = new JButton("ping of death (DOS)");
    JButton button11 = new JButton("exit program");
    JButton button12 = new JButton("OK!");
    JLabel textLabel3 = new JLabel ("");  
    JLabel textLabel = new JLabel ("URL or IP address:");  
    JTextField text = new JTextField("127.0.0.1  ", 17);
    JLabel textLabel2 = new JLabel ("Coded by System error (: [email protected] ");
             //Create the window
    JTextArea textarea = new JTextArea(2,25);
    JTextArea textarea2 = new JTextArea(2,25);
    public blueprint()
      super ("System error's blueprint");
      setSize(500, 600);
      setResizable(false);
      setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      setVisible(true);
      Container content = getContentPane();                             //create layout manager
      FlowLayout layout = new FlowLayout();
      content.setLayout(layout);
      Container contentArea = getContentPane ();
      contentArea.setBackground(Color.black);                           //container
      button1.addActionListener(this);
      button1.setBackground(Color.black);
      button1.setForeground(Color.red);
      content.add(button1);
      setContentPane(content);
      Color customgreen = new Color (128, 0, 128);
      Color customblack = new Color (128, 0, 128);
      button2.addActionListener(this);
      button2.setBackground(Color.black);
      button2.setForeground(Color.red);
      content.add(button2);
      setContentPane(content);
      button3.addActionListener(this);
      button3.setBackground(Color.black);
      button3.setForeground(Color.red);
      content.add(button3);
      setContentPane(content);
      button4.addActionListener(this);
      button4.setBackground(Color.black);
      button4.setForeground(Color.red);
      content.add(button4);
      setContentPane(content);
      button5.addActionListener(this);
      button5.setBackground(Color.black);
      button5.setForeground(Color.red);
      content.add(button5);
      setContentPane(content);
      button6.addActionListener(this);
      button6.setBackground(Color.black);
      button6.setForeground(Color.red);
      content.add(button6);
      setContentPane(content);
      button7.addActionListener(this);
      button7.setBackground(Color.black);
      button7.setForeground(Color.red);
      content.add(button7);
      setContentPane(content);
      button8.addActionListener(this);
      button8.setBackground(Color.black);
      button8.setForeground(Color.red);
      content.add(button8);
      setContentPane(content);
      button9.addActionListener(this);
      button9.setBackground(Color.black);
      button9.setForeground(Color.red);
      content.add(button9);
      setContentPane(content);
      button10.addActionListener(this);
      button10.setBackground(Color.black);
      button10.setForeground(Color.red);
      content.add(button10);
      setContentPane(content);
      button10.addActionListener(this);
      button10.setBackground(Color.black);
      button10.setForeground(Color.red);
      content.add(button10);
      setContentPane(content);
      button11.addActionListener(this);
      button11.setBackground(Color.black);
      button11.setForeground(Color.red);
      content.add(button11);
      setContentPane(content);
      textLabel3.setForeground(Color.red);
      textLabel3.setBackground(Color.black);
      contentArea.add(textLabel3);
      setContentPane(content);
      textLabel.setForeground(Color.red);
      textLabel.setBackground(Color.black);
      contentArea.add(textLabel);
      setContentPane(content);
                                                                      //compnent interfaces
      text.setForeground(Color.red);
      text.setBackground(Color.black);
      contentArea.add(text);
      setContentPane(content);
      textLabel2.setForeground(Color.red);
      textLabel2.setBackground(Color.black);
      contentArea.add(textLabel2);
      setContentPane(content);
      textarea.setForeground(Color.red);
      textarea.setBackground(Color.black);
      contentArea.add(textarea);
      setContentPane(content);
      textarea2.setForeground(Color.red);
      textarea2.setBackground(Color.black);
      contentArea.add(textarea2);                           //rememeber for events the else{expression}
      setContentPane(content);
      } //end method
    public void actionPerformed(ActionEvent event)     // user events and actions here
    String clearscreen  = ("\n\n\n\n\n\n\n\n\n\n\n\nresults cleared\n\n\n\n\n\n\n\n\n\n");                                                                                                                                       
    String targetIP = text.getText();  //important code!
               //------------button 1------ping----//
    if(event.getSource() == button1)
      try
        String command1 = "C:\\WINDOWS\\system32\\ping.exe "+targetIP;
        Process p = Runtime.getRuntime().exec(command1);
        DataInputStream in = new DataInputStream(p.getInputStream());
              BufferedReader br = new BufferedReader(new InputStreamReader(in));
        try {         
              while ((command1 = br.readLine()) != null) {
                  System.out.println(command1);
                           JLabel textLabel5 = new JLabel (command1);
                           Container content = getContentPane();                             //create layout manager
                           FlowLayout layout = new FlowLayout();
                           content.setLayout(layout);
                           Container contentArea = getContentPane ();
                           contentArea.setBackground(Color.black);                           //container
                         textLabel5.setForeground(Color.red);
                         textLabel5.setBackground(Color.black);
                         contentArea.add(textLabel5);
                         setContentPane(content);
             } catch (IOException e) {
         } catch (IOException e1) {
             System.err.println("trying another method for ping");
       try
        String command1 = "C:\\WINNT\\system32\\ping.exe "+targetIP;
        Process p = Runtime.getRuntime().exec(command1);
        DataInputStream in = new DataInputStream(p.getInputStream()); //stream data input to show process
              BufferedReader br = new BufferedReader(new InputStreamReader(in));
        try {
              while ((command1 = br.readLine()) != null) { //readline from the bufferedReader
                  System.out.println(command1);
                           JLabel textLabel5 = new JLabel (command1);  //show results on GUI
                           Container content = getContentPane();                             //create layout manager
                           FlowLayout layout = new FlowLayout();
                           content.setLayout(layout);
                           Container contentArea = getContentPane ();
                           contentArea.setBackground(Color.black);                           //container
                         textLabel5.setForeground(Color.red);
                         textLabel5.setBackground(Color.black);
                         contentArea.add(textLabel5);
                         setContentPane(content);
             } catch (IOException e) {
         } catch (IOException e1) {
             System.err.println();
                 JLabel textLabel5 = new JLabel ();
                           Container content = getContentPane();                             //create layout manager
                           FlowLayout layout = new FlowLayout();
                           content.setLayout(layout);
                           Container contentArea = getContentPane ();
                           contentArea.setBackground(Color.black);                           //container
                         textLabel5.setForeground(Color.red);
                         textLabel5.setBackground(Color.black);
                         contentArea.add(textLabel5);
                         setContentPane(content);
                                //-------button 2-----net view--//
         if(event.getSource()== button1)return;       
         if(event.getSource()== button2)
      try
        String command2 = "C:\\WINDOWS\\system32\\net view ";
        Process p2 = Runtime.getRuntime().exec(command2);
        DataInputStream in = new DataInputStream(p2.getInputStream());
              BufferedReader br = new BufferedReader(new InputStreamReader(in));
        try {         
              while ((command2 = br.readLine()) != null) {
                  System.out.println(command2);
                           JLabel textLabel5 = new JLabel (command2);
                           Container content = getContentPane();                             //create layout manager
                           FlowLayout layout = new FlowLayout();
                           content.setLayout(layout);
                           Container contentArea = getContentPane ();
                           contentArea.setBackground(Color.black);                           //container
                         textLabel5.setForeground(Color.red);
                         textLabel5.setBackground(Color.black);
                         contentArea.add(textLabel5);
                         setContentPane(content);
             } catch (IOException e) {
         } catch (IOException e1) {
             System.err.println();
       try
        String command2 = "C:\\WINNT\\system32\\net view ";
        Process p2 = Runtime.getRuntime().exec(command2);
        DataInputStream in = new DataInputStream(p2.getInputStream());
              BufferedReader br = new BufferedReader(new InputStreamReader(in));
        try {
              while ((command2 = br.readLine()) != null) {
                  System.out.println(command2);
                           JLabel textLabel5 = new JLabel (command2);
                           Container content = getContentPane();                             //create layout manager
                           FlowLayout layout = new FlowLayout();
                           content.setLayout(layout);
                           Container contentArea = getContentPane ();
                           contentArea.setBackground(Color.black);                           //container
                         textLabel5.setForeground(Color.red);
                         textLabel5.setBackground(Color.black);
                         contentArea.add(textLabel5);
                         setContentPane(content);
             } catch (IOException e) {
         } catch (IOException e1) {
             System.err.println();
                 JLabel textLabel5 = new JLabel ();
                           Container content = getContentPane();                             //create layout manager
                           FlowLayout layout = new FlowLayout();
                           content.setLayout(layout);
                           Container contentArea = getContentPane ();
                           contentArea.setBackground(Color.black);                           //container
                         textLabel5.setForeground(Color.red);
                         textLabel5.setBackground(Color.black);
                         contentArea.add(textLabel5);
                         setContentPane(content);
                              //-------button 3-----nslookup--//
         if(event.getSource()== button2)return;       
         if(event.getSource()== button3)
      try
        String command2 = "C:\\WINDOWS\\system32\\nslookup "+targetIP;
        Process p2 = Runtime.getRuntime().exec(command2);
        DataInputStream in = new DataInputStream(p2.getInputStream());
              BufferedReader br = new BufferedReader(new InputStreamReader(in));
        try {         
              while ((command2 = br.readLine()) != null) {
                  System.out.println(command2);
                           JLabel textLabel5 = new JLabel (command2);
                           Container content = getContentPane();                             //create layout manager
                           FlowLayout layout = new FlowLayout();
                           content.setLayout(layout);
                           Container contentArea = getContentPane ();
                           contentArea.setBackground(Color.black);                           //container
                         textLabel5.setForeground(Color.red);
                         textLabel5.setBackground(Color.black);
                         contentArea.add(textLabel5);
                         setContentPane(content);
             } catch (IOException e) {
         } catch (IOException e1) {
             System.err.println("trying another method ");
       try
        String command2 = "C:\\WINNT\\system32\\nslookup "+targetIP;
        Process p2 = Runtime.getRuntime().exec(command2);
        DataInputStream in = new DataInputStream(p2.getInputStream());
              BufferedReader br = new BufferedReader(new InputStreamReader(in));
        try {
              while ((command2 = br.readLine()) != null) {
                  System.out.println(command2);
                           JLabel textLabel5 = new JLabel (command2);
                           Container content = getContentPane();                             //create layout manager
                           FlowLayout layout = new FlowLayout();
                           content.setLayout(layout);
                           Container contentArea = getContentPane ();
                           contentArea.setBackground(Color.black);                           //container
                         textLabel5.setForeground(Color.red);
                         textLabel5.setBackground(Color.black);
                         contentArea.add(textLabel5);
                         setContentPane(content);
             } catch (IOException e) {
         } catch (IOException e1) {
             System.err.println();
                 JLabel textLabel5 = new JLabel ();
                           Container content = getContentPane();                             //create layout manager
                           FlowLayout layout = new FlowLayout();
                           content.setLayout(layout);
                           Container contentArea = getContentPane ();
                           contentArea.setBackground(Color.black);                           //container
                         textLabel5.setForeground(Color.red);
                         textLabel5.setBackground(Color.black);
                         contentArea.add(textLabel5);
                         setContentPane(content);
             //------------------button 4-----net user------//
         if(event.getSource()== button3)return;       
         if(event.getSource()== button4)
      try
        String command2 = "C:\\WINDOWS\\system32\\net user";
        Process p2 = Runtime.getRuntime().exec(command2);
        DataInputStream in = new DataInputStream(p2.getInputStream());
              BufferedReader br = new BufferedReader(new InputStreamReader(in));
        try {         
              while ((command2 = br.readLine()) != null) {
                  System.out.println(command2);
                           JLabel textLabel5 = new JLabel (command2);
                           Container content = getContentPane();                             //create layout manager
                           FlowLayout layout = new FlowLayout();
                           content.setLayout(layout);
                           Container contentArea = getContentPane ();
                           contentArea.setBackground(Color.black);                           //container
                         textLabel5.setForeground(Color.red);
                         textLabel5.setBackground(Color.black);
                         contentArea.add(textLabel5);
                         setContentPane(content);
             } catch (IOException e) {
         } catch (IOException e1) {
             System.err.println("trying another method ");
       try
        String command2 = "C:\\WINNT\\system32\\net user";
        Process p2 = Runtime.getRuntime().exec(command2);
        DataInputStream in = new DataInputStream(p2.getInputStream());
              BufferedReader br = new BufferedReader(new InputStreamReader(in));
        try {
              while ((command2 = br.readLine()) != null) {
                  System.out.println(command2);
                           JLabel textLabel5 = new JLabel (command2);
                           Container content = getContentPane();                             //create layout manager
                           FlowLayout layout = new FlowLayout();
                           content.setLayout(layout);
                           Container contentArea = getContentPane ();
                           contentArea.setBackground(Color.black);                           //container
                         textLabel5.setForeground(Color.red);
                         textLabel5.setBackground(Color.black);
                         contentArea.add(textLabel5);
                         setContentPane(content);
             } catch (IOException e) {
         } catch (IOException e1) {
             System.err.println();
                 JLabel textLabel5 = new JLabel ();
                           Container content = getContentPane();                             //create layout manager
                           FlowLayout layout = new FlowLayout();
                           content.setLayout(layout);
                           Container contentArea = getContentPane ();
                           contentArea.setBackground(Color.black);                           //container
                         textLabel5.setForeground(Color.red);
                         textLabel5.setBackground(Color.black);
                         contentArea.add(textLabel5);
                         setContentPane(content);
                      //----------------button 5-------tracert---//
         if(event.getSource()== button4)return;       
         if(event.getSource()== button5)
      try
        String command2 = "C:\\WINDOWS\\system32\\tracert.exe "+targetIP;
        Process p2 = Runtime.getRuntime().exec(command2);
        DataInputStream in = new DataInputStream(p2.getInputStream());
              BufferedReader br = new BufferedReader(new InputStreamReader(in));
        try {         
              while ((command2 = br.readLine()) != null) {
                  System.out.println(command2);
                           JLabel textLabel5 = new JLabel (command2);
                           Container content = getContentPane();                             //create layout manager
                           FlowLayout layout = new FlowLayout();
                           content.setLayout(layout);
                           Container contentArea = getContentPane ();
                           contentArea.setBackground(Color.black);                           //container
                         textLabel5.setForeground(Color.red);
                         textLabel5.setBackground(Color.black);
                         contentArea.add(textLabel5);
                         setContentPane(content);
             } catch (IOException e) {
         } catch (IOException e1) {
             System.err.println("trying another method ");
       try
        String command2 = "C:\\WINNT\\system32\\tracert.exe "+targetIP;
        Process p2 = Runtime.getRuntime().exec(command2);
        DataInputStream in = new DataInputStream(p2.getInputStream());
              BufferedReader br = new BufferedReader(new InputStreamReader(in));
        try {
              while ((command2 = br.readLine()) != null) {
                  System.out.println(command2);
                           JLabel textLabel5 = new JLabel (command2);
                           Container content = getContentPane();                             //create layout manager
                           FlowLayout layout = new FlowLayout();
                           content.setLayout(layout);
                           Container contentArea = getContentPane ();
                           contentArea.setBackground(Color.black);                           //container
                         textLabel5.setForeground(Color.red);
                         textLabel5.setBackground(Color.black);
                         contentArea.add(textLabel5);
                         setContentPane(content);
             } catch (IOException e) {
         } catch (IOException e1) {
             System.err.println();
                 JLabel textLabel5 = new JLabel ();
                           Container content = getContentPane();                             //create layout manager
                           FlowLayout layout = new FlowLayout();
                           content.setLayout(layout);
                           Container contentArea = getContentPane ();
                           contentArea.setBackground(Color.black);                           //container
                         textLabel5.setForeground(Color.red);
                         textLabel5.setBackground(Color.black);
                         contentArea.add(textLabel5);
                         setContentPane(content);
                    //-----------button 6--------syskey---//
      if(event.getSource()== button5)return;       
         if(event.getSource()== button6)
      try
        String command2 = "C:\\WINDOWS\\system32\\syskey.exe";
        Process p2 = Runtime.getRuntime().exec(command2);
        DataInputStream in = new DataInputStream(p2.getInputStream());
              BufferedReader br = new BufferedReader(new InputStreamReader(in));
        try {         
              while ((command2 = br.readLine()) != null) {
                  System.out.println(command2);
                           JLabel textLabel5 = new JLabel (command2);
                           Container content = getContentPane();                             //create layout manager
                           FlowLayout layout = new FlowLayout();
                           content.setLayout(layout);
                           Container contentArea = getContentPane ();
                           contentArea.setBackground(Color.black);                           //container
                         textLabel5.setForeground(Color.red);
                         textLabel5.setBackground(Color.black);
                         contentArea.add(textLabel5);
                         setContentPane(content);
             } catch (IOException e) {
         } catch (IOException e1) {
             System.err.println("trying another method ");
       try
        String command2 = "C:\\WINNT\\system32\\syskey.exe ";
        Process p2 = Runtime.getRuntime().exec(command2);
        DataInputStream in = new DataInputStream(p2.getInputStream());
              BufferedReader br = new BufferedReader(new InputStreamReader(in));
        try {
              while ((command2 = br.readLine()) != null) {
                  System.out.println(command2);
                           JLabel textLabel5 = new JLabel (command2);
                           Container content = getContentPane();                             //create layout manager
                           FlowLayout layout = new FlowLayout();
                           content.setLayout(layout);
                           Container contentArea = getContentPane ();
                           contentArea.setBackground(Color.black);                           //container
                         textLabel5.setForeground(Color.red);
                         textLabel5.setBackground(Color.black);
                         contentArea.add(textLabel5);
                         setContentPane(content);
             } catch (IOException e) {
         } catch (IOException e1) {
             System.err.println();
                 JLabel textLabel5 = new JLabel ();
                           Container content = getContentPane();                             //create layout manager
                           FlowLayout layout = new FlowLayout();
                           content.setLayout(layout);
                           Container contentArea = getContentPane ();
                           contentArea.setBackground(Color.black);                           //container
                         textLabel5.setForeground(Color.red);
                         textLabel5.setBackground(Color.black);
                         contentArea.add(textLabel5);
                         setContentPane(content);
                  }  //-----------button 7--------remote desktop---------//
                  if(event.getSource()== button6)return;       
                  if(event.getSource()== button7)
      try
        String command2 = "C:\\WINDOWS\\system32\\mstsc.exe";
        Process p2 = Runtime.getRuntime().exec(command2);
        DataInputStream in = new DataInputStream(p2.getInputStream());
              BufferedReader br = new BufferedReader(new InputStreamReader(in));
        try {         
              while ((command2 = br.readLine()) != null) {
                  System.out.println(command2);
                           JLabel textLabel5 = new JLabel (command2);
                           Container content = getContentPane();                             //create layout manager
                           FlowLayout layout = new FlowLayout();
                           content.setLayout(layout);
                           Container contentArea = getContentPane ();
                           contentArea.setBackground(Color.black);                           //container
                         textLabel5.setForeground(Color.red);
                         textLabel5.setBackground(Color.black);
                         contentArea.add(textLabel5);
                         setContentPane(content);
             } catch (IOException e) {
         } catch (IOException e1) {
             System.err.println("trying another method ");
       try
        String command2 = "C:\\WINNT\\system32\\mstcs.exe ";
        Process p2 = Runtime.getRuntime().exec(command2);
        DataInputStream in = new DataInputStream(p2.getInputStream());
              BufferedReader br = new BufferedReader(new InputStreamReader(in));
        try {
              while ((command2 = br.readLine()) != null) {
                  System.out.println(command2);
                           JLabel textLabel5 = new JLabel (command2);
                           Container content = getContentPane();                             //create layout manager
                           FlowLayout layout = new FlowLayout();
                           content.setLayout(layout);
                           Container contentArea = getContentPane ();
                           contentArea.setBackground(Color.black);                           //container
                         textLabel5.setForeground(Color.red);
                         textLabel5.setBackground(Color.black);
                         contentArea.add(textLabel5);
                         setContentPane(content);
             } catch (IOException e) {
         } catch (IOException e1) {
             System.err.println();
                 JLabel textLabel5 = new JLabel ();
                           Container content = getContentPane();                             //create layout manager
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                

    System-error wrote:
    I preffer using a text editor rather than a full blown API,IDE not API (IDE is an advanced text editor and compiler all in one package, API is a interface (in the none-Java way) for programmers to use).
    IDE - http://en.wikipedia.org/wiki/Integrated_development_environment
    API - http://en.wikipedia.org/wiki/API
    know the command like - the "extends and implements keyword" and creating a sub() Extra classes do not automatically mean subclasses.
    class ect but i'm finding it awkward with using a text editor What part are you finding "awkward"?
    (maybe it'll have something to do with *.jar)(??) Jars are useful for deployment, however at the moment you just need to be able to compile and run the application from the command line. So I would not worry about Jars just yet.
    Now do you have a question, or is this just a request for someone to review your code?
    If the latter:
    button1 is never a good name for a button.
    You might want to look at Actions & AbstractAction rather than the large if statement.
    Most of the code is copy & paste code. You might want to have a RunCommandAction.

  • Internal error while transforming bpmn to bpel

    Hi,
    i designed a simple bpmn model and i’ve got an error while transforming the model into a bpel process.
    Steps i’ve done:
    1.     SOA > Transform business process into bpel process
    2.     the following semantic check was ok and there were no errors listed
    3.     I selected the check box “create log file”
    4.     Then an error occurs: “Unable to perform transformation. Internal error: There are semantic errors in this model. The errors have been displayed on the model”
    5.     After clicking OK, the log file appears: -- WARNINGS --: W#17 : Warning: in the current model, some functions are not connected to services.”
    6.     in the bpmn model there are two objects marked with a red line: an automated activity and a XOR gateway (data-based).
    I don’t know what’s wrong with these objects. I checked the properties of the automated activity, but “Abstract BPEL activity” is selected and so I don’t understand what the problem is.
    Are there dependencies, I don’t see? The assignments of both objects are correct. Are there other requirements i have to consider?
    Previous to the automated activity there’s another XOR gateway (data-based) with three branches (one of them is the obviously incorrect activity) and all three branches meet in the red marked XOR gateway.
    Any idea?
    Regards
    Julika

    Hi Julika,
    The error message might not be related to the activities itself. I assume your model is not well structured. Consider that the following points aren't disregarded:
    * Never "jump" out of a particular branch into a different part of the model or into another branch
    * All functions/events have only one incoming/outgoing connection
    * Process parallel flows should be specified by splitting and joining AND/XOR rules, or they should contain either one splitting AND/XOR rule only for which there is no other connection between their paths, or one joining AND/XOR rule only that is met by all connections.
    Let me know if it did not help to fix your problem.
    Best regards,
    Danilo

  • Sync Error Share Point & Onenote 2010

    I have verified that none of the columns are required, versioning is turned off and check in/check out is not required.  (http://office.microsoft.com/en-US/onenote-help/resolve-document-library-errors-when-using-onenote-2010-with-sharepoint-HA102647129.aspx?ver=14&app=onenote.exe)
    Yet I continue to get this error.
    This section cannot be synced because Check-in Check-Out or Required Properties are enabled in the SharePoint library. Disable Check-In Check-Out and Required Properties or move this notebook to a different location. (Error code: 0xE000078E)
    Some additional notes
    I can create the one note on share point and I have full rights to this share point site and the parent site.
    When I added a word document it required me to add a Title as a required field.  Is there some place that sets this as a required field for all libraries?  How do I override this?

    While everything appeared to be correct there was a location that required the title field even though it was not showing.  To resolve this issue I did the following.
    1. Library -> List Settings -> Advanced Settings
    2. Set "Allow management of content types?" equal to Yes and save
    3. Scroll down and it will show that the fields are required
    This fixed the issue for all new items but required us to delete the items added previously and re add them to resolve the issue.

  • Error When Creating BPA Server Connection in Jdeveloper

    Hi,
    I am trying to explore the concept of BPA Suite. I have created a BPMN process and enabled the option 'Share Blueprint with' under SOA. But when i am trying to make a BPA Server Connection in JDeveloper it is showing error like 'Connection Failed'. I am using Local Repository. Could you please help me on this issue.
    Thanks,
    Anju

    Yes, you can choose XE at installation time for the LOCAL database in BPA (ARIS). And, since you say you do connect from BPA before trying to connect from JDev, we know the database is up.
    One more thing to check is that both are the same version (10.1.3.4, hopefully).
    When do you see the connection failed during the setup? It is after you select "local server"? That is, can you see your BPA database (project) show in the drop down and you get the error when you enter the BPA credentials? Or, do you get the error selecting local server in the first place? If so, you should see if you can get a Database connection from JDev to the database on XE - it may be that JDev can't find the database for some reason (proxy settings perhaps).
    Heidi.

  • Export BPA 11g (BPMN 2.0) Model into OBPM 11g

    Hi,
    I am trying to export a BPMN 2.0 process from BPA 11g and import into OBPM 11g.
    My understanding is, Share blueprint option in BPA and oracle tutor can not be used, as the model is of BPMN 2.0
    Any suggestions/pointers will be highly appreciated.
    Edited by: 905033 on Oct 23, 2012 2:56 AM

    Hi:
    It seems that for BPA 11g, at least in release 11g R1 the option for sharing blue print is just for BPMN 1.x. For 2.0 is not even available the menu option.
    Let me try to make a couple of tests, trying to export it on an ARISAML format, and from there, to use another tool to convert it to BPMN.
    best

  • Impossible to install any version on Windows 8.1 error 0x851A0019

    Hi,
    Can you help me please to solve this problem i had and try to fix for 3 days.
    I try to install SQL Server 2012 Express Edition and i obtain this error message :
    "Could not find the Database Engine startup handle : error 0x851A0019"
    My OS is Windows 8.1
    I also try to install SQLServer 2008 Express Edition and i have the same problem
    But las year i installed with success on Windows Seven.
    I dont understand where is the problem with Windows 8.1
    I'm very frustrated againt Microsoft politics. We lost time for simple operations.
    Thanks in advance

    Hi,
    Can you help me please to solve this problem i had and try to fix for 3 days.
    I try to install SQL Server 2012 Express Edition and i obtain this error message :
    "Could not find the Database Engine startup handle : error 0x851A0019"
    My OS is Windows 8.1
    I also try to install SQLServer 2008 Express Edition and i have the same problem
    But las year i installed with success on Windows Seven.
    I dont understand where is the problem with Windows 8.1
    I'm very frustrated againt Microsoft politics. We lost time for simple operations.
    Thanks in advance
    Hello,
    AFAIK This error mainly points to fact that account which you are using to install SQL server does not have complete permissions. Ofcorese error can be due to many reaosns
    See if this link helps
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/6656d8ef-1df0-4e22-9e16-32ffb1754756/sql-server-2012-setup-fails-due-to-wait-on-the-database-engine-recovery-handle-failed?forum=sqlsetupandupgrade.
    If not
    What you should do is
    1. Uninstall SQL server completely.
    Uninstall all SQL Server components you can using Control Panel -> Programs and Features
    Backup the registry.
    Delete the following keys in regedit:
    --HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server 
    --HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer
    Go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall and delete all the sub-keys referencing SQL Server.
    Go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services and delete all the keys referencing SQL Server.
    More details in below link(see answer by Yo yo yu)
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/4d6158a1-b601-428c-aad4-a1716e76de1a/install-sql-server-problem?forum=sqlexpress
    Now after complete removal of SQL server is done.
    See Hardware and software req for SQl server 2012 make sure you read all instrauctions care fully and meet it before installing express.
    Copy the express edition files to local folder and run setup from there.RK on setup.exe and select run as administrator
    If you are using domain admin account make sure to add that account as local administrator
    If you still face error share setup log file as pointed out by Balmukund.
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • BPM 11.1.1.6 error creating process instance

    Hello!
    I am deploying BPM processes using JDeveloper 11.1.1.5 and SOA Server 11.1.1.6 and I am getting the following error:
    [2012-12-04T19:11:47.209+01:00] [WLS_SOA1] [NOTIFICATION] [] [oracle.integration.platform.blocks.tenant] [tid: [ACTIVE].ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: j.pla] [ecid: 004o0fC^L8nFw000jzwkno0003VU000K3D,0:1] [APP: soa-infra] [URI: /bpm/workspace/faces/jsf/worklist/worklist.jspx] NM or Event does not contain property, apps.context.header or fabric.enterpriseId
    [2012-12-04T19:11:47.614+01:00] [WLS_SOA1] [NOTIFICATION] [] [oracle.fabric.common.wsdl] [tid: [ACTIVE].ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: j.pla] [ecid: 004o0fC^L8nFw000jzwkno0003VU000K3D,0:1] [APP: soa-infra] [composite_name: Generico] [component_name: Generico] [component_instance_id: 120045] [URI: /bpm/workspace/faces/jsf/worklist/worklist.jspx] XMLSchema incremental build enabled.
    [2012-12-04T19:11:47.681+01:00] [WLS_SOA1] [ERROR] [] [oracle.soa.bpmn.engine.bpmn] [tid: [ACTIVE].ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: j.pla] [ecid: 004o0fC^L8nFw000jzwkno0003VU000K3D,0:1] [APP: soa-infra] [composite_name: Generico] [component_name: Generico] [component_instance_id: 120045] [URI: /bpm/workspace/faces/jsf/worklist/worklist.jspx] BPELFault {{http://schemas.xmlsoap.org/ws/2003/03/business-process/}selectionFailure} current Operation {INSTANCE_SUSPENDED}
    [2012-12-04T19:11:47.690+01:00] [WLS_SOA1] [ERROR] [] [oracle.bpm.services.instanceManagement] [tid: [ACTIVE].ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: j.pla] [ecid: 004o0fC^L8nFw000jzwkno0003VU000K3D,0:1] [APP: soa-infra] [URI: /bpm/workspace/faces/jsf/worklist/worklist.jspx] Initiate task could not be created for unknown reason for target process 'default/Generico!1.3*/Generico'. Verify server log for error cause.
    [2012-12-04T19:11:47.690+01:00] [WLS_SOA1] [ERROR] [] [oracle.bpm.services.instanceManagement] [tid: [ACTIVE].ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: j.pla] [ecid: 004o0fC^L8nFw000jzwkno0003VU000K3D,0:1] [APP: soa-infra] [URI: /bpm/workspace/faces/jsf/worklist/worklist.jspx] Exception[[
    exception.70204.type: error
    exception.70204.severity: 2
    exception.70204.name: Error creating process instance.
    exception.70204.description: Error creating instance for target process default/Generico!1.3*/Generico.
    exception.70204.fix: Verify server log to find the problem cause.
    [2012-12-04T19:11:47.803+01:00] [WLS_SOA1] [WARNING] [] [oracle.bpm.common] [tid: [ACTIVE].ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: j.pla] [ecid: 004o0fC^L8nFw000jzwkno0003VU000K3D,0:1] [APP: OracleBPMWorkspace] [URI: /bpm/workspace/faces/jsf/worklist/worklist.jspx] Error creating instance for target process default/Generico!1.3*/Generico.[[
    oracle.bpm.web.exception.WapiOperationException: Error creating instance for target process default/Generico!1.3*/Generico.
         at oracle.bpm.workspace.model.common.ExecutionBean.handleExternalInstanceExecution(ExecutionBean.java:188)
         at oracle.bpm.workspace.model.application.ApplicationBean.execute(ApplicationBean.java:148)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(AstValue.java:187)
         at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:297)
         at org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:46)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
         at org.apache.myfaces.trinidad.component.UIXCollection.broadcast(UIXCollection.java:148)
         at org.apache.myfaces.trinidad.component.UIXTable.broadcast(UIXTable.java:279)
         at oracle.adf.view.rich.component.UIXTable.broadcast(UIXTable.java:145)
         at oracle.adf.view.rich.component.rich.data.RichTable.broadcast(RichTable.java:402)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:1018)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:386)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:194)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)
         at oracle.help.web.rich.OHWFilter.doFilter(Unknown Source)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:179)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3738)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3704)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2281)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2180)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1491)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused by: fuego.papi.exception.CannotCreateInstanceException: Cannot create instance in process 'default/Generico!1.3*/Generico'.
         at oracle.bpm.papi.ora.helper.ExceptionHelper.wrapException(ExceptionHelper.java:58)
         at oracle.bpm.papi.ora.util.ApplicationExecution11G.beginExecution(ApplicationExecution11G.java:56)
         at fuego.papi.utils.ApplicationExecution.beginExecution(ApplicationExecution.java:29)
         at oracle.bpm.workspace.model.common.ExecutionBean.handleExternalInstanceExecution(ExecutionBean.java:171)
         ... 99 more
    Caused by: BPM-70204
    Exception
    exception.70204.type: error
    exception.70204.severity: 2
    exception.70204.name: Error creating process instance.
    exception.70204.description: Error creating instance for target process default/Generico!1.3*/Generico.
    exception.70204.fix: Verify server log to find the problem cause.
         at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:205)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:345)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
         at oracle.bpm.services.instancemanagement.ejb.InstanceManagementServiceBean_sqa2w0_IInstanceManagementServiceRemoteImpl_1036_WLStub.createProcessInstanceTask(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:85)
         at $Proxy501.createProcessInstanceTask(Unknown Source)
         at oracle.bpm.papi.ora.util.ApplicationExecution11G.beginExecution(ApplicationExecution11G.java:50)
         ... 101 more
    Could you please help me? I have search through the forum but I couldn't find anything that solves my problem. As I've read in this post (https://kr.forums.oracle.com/forums/thread.jspa?messageID=10596716), I've tried to set the value of the variable bpel.config.transaction to requiresNew instead of required but it isn't working.
    I suppose it has to do with the new version of the server but I can't find anything to solve it :(
    Thank you in advance!!! I hope you can help me!
    Best regards.

    Frank,
    I tried to follow the example. This is the file: http://docs.oracle.com/cd/E18941_01/tutorials/jdtut_11r2_53/labs/restsolution.zip
    The other part of the exercise is to develop an ADF Client.
    At "Step 5: Create the Model Components" when I create the URL_Get the error appears and don't create the datacontrol.
    I check the links and RESTConn and are OK.
    I hope this helps.
    JP
    Edited by: jpvadell.oracle on Jul 2, 2012 11:54 AM

  • Problem in pricing regardinr business blueprint

    HI Gurus,
    i am new in sap sd field i just put my foot in this field.
    i got business blueprint for sap sd implementation i have folloing problem in pricing please help me out.
    <b>1</b>.Do you require the functionality to create user-defined indexes in the pricing table? This will enable you to search for your prices using company-specific search criteria such as what operation input ?what prices on a certain day?
    2 Do you ever base the prise of an item on the cost to manufacture or purchase the material?
    3. Eill you need to pas pricing information to the sales informatiom system?
    how to configure above requirement in business blueprints?
    please solve this problem
    Ketan Katara

    I install Oracle Business Process Architect 11g again but with local DB. there is quick start example. when I share blueprint that project, It is ok but when I add a repository server and share a project inside it nothing happen.
    I dont know why???? please help me.
    sorry for my bad english :(

  • BPM Composite Not Available Error

    Hi,
    Sometimes, after restarting the servers, I get the following error when I try to expand the BPM composite from soa_infra menu in Entreprise Manager:
    "The composite QuoteProcessLab (1.0) is not available. This could happen because either the composite has been undeployed or soa-infra has not yet loaded this composite..."
    This error indicates the non availability of the composite while the application, with its deployed version, appears in the soa-infra menu (left menu in EM).
    For my tests, I'm working on Oracle Enterprise Linux 5 and using Firefox 3.6.2 (also Google Chrome) as browser.
    Thanks for any help.
    Hanin
    Bellow is the server log.
    ####<Apr 12, 2010 3:07:05 PM CEST> <Error> <oracle.soa.services.rules> <caprica2.cec.eu.int> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@254e8a> <<anonymous>> <> <cde56d80898fec18:-399ce2c1:127f2207b63:-7ffd-000000000000000e> <1271077625327> <BEA-000000> <<.> Duplicated definition for: 'ReviewObjectType'
    oracle.xml.parser.schema.XSDException: Duplicated definition for: 'ReviewObjectType'
         at oracle.xml.parser.schema.XSDBuilder.buildSchema(XSDBuilder.java:765)
         at oracle.xml.parser.schema.XSDBuilder.build(XSDBuilder.java:418)
         at oracle.bpel.services.rules.rpi.RuleEngineUtil.matchSchemaLocation(RuleEngineUtil.java:331)
         at oracle.bpel.services.rules.fabric.FabricUtil.querySchemaLocationFromMDS(FabricUtil.java:193)
         at oracle.bpel.services.rules.fabric.xml.RuleDictionarySchemaUsage.addToResultSet(RuleDictionarySchemaUsage.java:189)
         at oracle.bpel.services.rules.fabric.xml.RuleDictionarySchemaUsage.addToResultSet(RuleDictionarySchemaUsage.java:145)
         at oracle.bpel.services.rules.fabric.xml.RuleDictionarySchemaUsage.getComponentSchemaQNames(RuleDictionarySchemaUsage.java:113)
         at oracle.bpel.services.rules.fabric.xml.XmlSchemaCache.onInit(XmlSchemaCache.java:119)
         at oracle.bpel.services.rules.fabric.BusinessRulesServiceEngine.init(BusinessRulesServiceEngine.java:1265)
         at oracle.bpel.services.rules.fabric.BusinessRulesServiceEngine.init(BusinessRulesServiceEngine.java:235)
         at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnection.activateComponents(CompositeDeploymentConnection.java:362)
         at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnection.commit(CompositeDeploymentConnection.java:269)
         at oracle.integration.platform.blocks.deploy.DeploymentTransactionManager.doCommit(DeploymentTransactionManager.java:108)
         at org.springframework.transaction.support.AbstractPlatformTransactionManager.processCommit(AbstractPlatformTransactionManager.java:732)
         at org.springframework.transaction.support.AbstractPlatformTransactionManager.commit(AbstractPlatformTransactionManager.java:701)
         at org.springframework.transaction.interceptor.TransactionAspectSupport.commitTransactionAfterReturning(TransactionAspectSupport.java:321)
         at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:116)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy247.deploy(Unknown Source)
         at oracle.integration.platform.kernel.WLSFabricKernelInitializer$2.run(WLSFabricKernelInitializer.java:389)
         at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:77)
         at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
         at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    >
    ####<Apr 12, 2010 3:07:06 PM CEST> <Warning> <oracle.bpm.common> <caprica2.cec.eu.int> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@254e8a> <<anonymous>> <BEA1-006C1DF8BBEFB27D1B7A> <cde56d80898fec18:-399ce2c1:127f2207b63:-7ffd-000000000000000e> <1271077626404> <BEA-000000> <cannot decide whether operation is two-way or not>
    ####<Apr 12, 2010 3:07:06 PM CEST> <Error> <oracle.soa.bpmn.engine.deployment> <caprica2.cec.eu.int> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@254e8a> <<anonymous>> <BEA1-006C1DF8BBEFB27D1B7A> <cde56d80898fec18:-399ce2c1:127f2207b63:-7ffd-000000000000000e> <1271077626416> <BEA-000000> <<CubeProcessLoader::create>
    java.lang.NullPointerException
         at oracle.bpm.project.ActivityImpl$ParticipantReferenceAdapter.getId(ActivityImpl.java:2506)
         at oracle.bpm.bpmn.engine.map.builder.visitors.impl.ServiceTaskVisitorImpl.createMIVisitor(ServiceTaskVisitorImpl.java:37)
         at oracle.bpm.bpmn.engine.map.builder.visitors.impl.ServiceTaskVisitorImpl.createMIVisitor(ServiceTaskVisitorImpl.java:26)
         at oracle.bpm.bpmn.engine.map.builder.visitors.impl.MIAbstractBPMNActivityVisitor.visitActivity(MIAbstractBPMNActivityVisitor.java:34)
         at oracle.bpm.bpmn.engine.map.builder.visitors.impl.AbstractBPMNActivityVisitor.doVisit(AbstractBPMNActivityVisitor.java:33)
         at oracle.bpm.bpmn.engine.map.builder.visitors.impl.EventsVisitorHelper.visitElement(EventsVisitorHelper.java:88)
         at oracle.bpm.bpmn.engine.map.builder.visitors.impl.AbstractBPMNActivityVisitor.visitElement(AbstractBPMNActivityVisitor.java:43)
         at oracle.bpm.bpmn.engine.map.builder.visitors.impl.AbstractBPMNActivityVisitor.visitElement(AbstractBPMNActivityVisitor.java:22)
         at oracle.bpm.bpmn.engine.map.builder.visitors.impl.AbstractBPMNElementVisitor.visit(AbstractBPMNElementVisitor.java:36)
         at oracle.bpm.bpmn.engine.map.builder.visitors.impl.AbstractBPMNElementVisitor.visit(AbstractBPMNElementVisitor.java:27)
         at oracle.bpm.bpmn.engine.map.builder.visitors.ModelVisitor.compileActivitiesAux(ModelVisitor.java:226)
         at oracle.bpm.bpmn.engine.map.builder.visitors.ModelVisitor.compileActivities(ModelVisitor.java:190)
         at oracle.bpm.bpmn.engine.map.builder.visitors.ModelVisitor.visit(ModelVisitor.java:95)
         at oracle.bpm.bpmn.engine.map.builder.BPMNCubeMapBuilder.buildProcessBlock(BPMNCubeMapBuilder.java:145)
         at oracle.bpm.bpmn.engine.map.builder.BPMNCubeMapBuilder.build(BPMNCubeMapBuilder.java:80)
         at oracle.bpm.bpmn.engine.map.builder.BPMNCubeMapBuilder.buildMaps(BPMNCubeMapBuilder.java:64)
         at oracle.bpm.bpmn.engine.map.builder.BPMNCubeMap.load(BPMNCubeMap.java:94)
         at oracle.bpm.bpmn.engine.map.builder.BPMNCubeMapFactory.create(BPMNCubeMapFactory.java:50)
         at oracle.bpm.bpmn.engine.model.BPMNProcess.buildMaps(BPMNProcess.java:196)
         at com.collaxa.cube.engine.core.BaseCubeProcess.load(BaseCubeProcess.java:247)
         at oracle.bpm.bpmn.engine.model.BPMNCubeProcessor.createCubeProcess(BPMNCubeProcessor.java:98)
         at com.collaxa.cube.engine.deployment.CubeProcessFactory.create(CubeProcessFactory.java:61)
         at com.collaxa.cube.engine.deployment.CubeProcessLoader.create(CubeProcessLoader.java:112)
         at com.collaxa.cube.engine.deployment.DeploymentManager.deployProcess(DeploymentManager.java:238)
         at com.collaxa.cube.engine.deployment.DeploymentManager.deployComponent(DeploymentManager.java:182)
         at com.collaxa.cube.ejb.impl.CubeServerManagerBean._deployOrLoadComponent(CubeServerManagerBean.java:726)
         at com.collaxa.cube.ejb.impl.CubeServerManagerBean.deployComponent(CubeServerManagerBean.java:114)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy205.deployComponent(Unknown Source)
         at oracle.bpm.bpmn.engine.ejb.impl.BPMNServerManagerBean_6gbx7k_ICubeServerManagerLocalBeanImpl.deployComponent(BPMNServerManagerBean_6gbx7k_ICubeServerManagerLocalBeanImpl.java:736)
         at oracle.fabric.CubeServiceEngine.load(CubeServiceEngine.java:852)
         at oracle.bpm.bpmn.engine.service.BPMNServiceEngine.load(BPMNServiceEngine.java:486)
         at oracle.bpm.bpmn.engine.service.BPMNServiceEngine.load(BPMNServiceEngine.java:123)
         at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnection.deployComponents(CompositeDeploymentConnection.java:239)
         at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnection.deploy(CompositeDeploymentConnection.java:94)
         at oracle.integration.platform.blocks.deploy.CompositeDeployerImpl.deploy(CompositeDeployerImpl.java:149)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at oracle.integration.platform.blocks.deploy.DeploymentEventPublisher.invoke(DeploymentEventPublisher.java:69)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:106)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy247.deploy(Unknown Source)
         at oracle.integration.platform.kernel.WLSFabricKernelInitializer$2.run(WLSFabricKernelInitializer.java:389)
         at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:77)
         at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
         at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)

    Hi Hanin,
    I haven't seen this error before. Which version are you using? The original from early february or the update from mid-march?
    Is ReviewObjectType something you defined in your project?
    Heidi.

  • SAP Cloud For Customer With ECC Integration Material Replication Content Error

    Hi Experts,
    When i replicate the Material from ECC to Cloud With Sale Org Data if getting error as shown below.
    When we are replicate the Material without Sales Org Data its working but when we pass the data with Sales Org it gives error .
    Errors reported by application: "Activation not permitted; cross-process category missing", "Error while processing inbound third party communication"
    and the Payload for this error attached in the file
    Kindly anyone have idea about this error share your inputs.
    Many Thanks
    Mithun

    Hello Mithun,
    The reason for this error is in the definition of the Material in the Cloud:
    For the Sales data it is required that a product category is assigned to the Material.
    This product category must belong to a product category hierarch with the category code "Cross-Process".
    This is not required for the basic data i.e. without the Sales data.
    Therefore you can transfer the Material data w/o Sales data and no error occurs.
    HTH,
        Horst

  • Sapjup cannot find correct shares on Windows 2008 R2 cluster

    Hello Guru's,
    I have succesfully installed CRM 5 Abap+Java on Windows 2008 R2 based hardware. This is a HA setup.
    I am now in the process of upgrading to CRM 7.01. Unfortunately, the java upgrade program SAPjup runs into an error (share
    Host_A\sapmnt does not exist)  I cannot solve up to now.
    This is my setup:
    I have two application servers: Host_A and Host_B. Both servers form a Microsoft Failover Cluster. The shared disk for the abap and java central services is the F:\ drive, the cluster name is Cluster_X.
    The Central Instance is installed on the local disk G:\ of Host_A; The Dialog instance on local disk G:\ of Host_B.
    As instructed in the manual, I have moved the SAP cluster to Host_A and started the the upgrade process on G:\ drive of the same host.
    During the phase PREPARE/INIT/INPUT_SAPSERVICESID_PWD_HA, the SAPjup program is trying to map the
    Host_A\sapmnt share to a drive letter ('net use' command). This step results in an error.
    I can explain this error since the proper share in my opinion should be
    Cluster_X\sapmnt instead of
    Host_A\sapmnt.
    In Windows 2003 this was not a problem, because
    Cluster_X\sapmnt and
    Host_A\sapmnt can both be accessed and refers to the same disk location when the cluster group is active on Host_A. However, in Windows 2008 R2 this is not the case anymore and
    Host_A\sapmnt is not a valid share.
    Has any one of you run into this same problem or have suggestions how to solve?
    Rob Veenman
    SAP Technology.

    I owe you an answer for the issue we had.
    I opened a message with SAP, and got acklowledge that this is indeed a bug in SAPJup. SAP is working on a solution.
    The work around (which was succesful) was as follows:
    1. I moved the SAP Cluster group to Host_B (the DI host).
    2. I created g:\sapmnt on Host_A and copied content from the shared drive
    Cluster_X\sapmnt
    to this local drive.
    3. I shared diretory g:\sapmnt with share name sapmnt on Host_A and gave
    SAP_<SID>_GlobalAdmin Read/write access.
    Now SAPJup can continue. At the next interrup, you can remove the local directory g:\sapmnt and move the cluster disk back to Host_A.
    I will give an update and close this thread as soon as I get a definitive solution from SAP AG for this issue.
    Rob Veenman
    SAP Technical Consultant.

  • Export To YouTube - Quicktime Error -50

    While I have exported this project for YouTube via Share, I had to make some additional edits = Re-shooting two smalls pieces of footage. Now when I try to export via the Share option in FCP-7, somewhere in the conversion, the exporting stops and I get the following Quicktime Error:
    Share Failure
    Quicktime Error -50
    The YouTube conversion stops at that point. I did upgrade to 10.6.8. I have never come across this error before. Anyone have an idea what is going on??
    Thanks!!
    Sky.

    Thanks!! As it turns out, after reading many comments on the Creative Cow, I tried a couple things first before trying your suggestion (which was also recommended on the Creative Cow site). Since I had just updated to 10.6.8 I repaired permissions. I also checked all the clips in the sequence since I did a lot of coping and pasting. Turns out the two new clips I added i accidently pasted some filters two or three times. After deleting the duplicate filers, the was able to export just fine. I suspect the added filters caused the issue with Quicktime.
    Thanks again for your help!!
    Sky......

Maybe you are looking for

  • No Sound from Old T61 Now Updated to Windows 7 SP1

    I'm getting no sound (neither System Sounds nor from Windows Media Player) from either the speakers or the phone jack on this 6459-CTO.  The speaker control icon in the notification area indicates sound levels on both the source and the speaker in ea

  • Uploading prospects in crm 7.0.

    Hi, I want to upload prospects from ms excel sheet to crm 7.0 so here which one we need to choose ELM or BAPI or LSMW? Which is the best for mapping data? If go with bapi means how many bapiu2019s  I need to use and these 2 bapi isu2019t enough or no

  • Why is Adobe crashing editing 4k

    Do you know why adobe is crashing while editing 4k my comp specs are the latest mac pro build up all the way Thanks philip forumnotifier

  • Adobe Illustrator Crashes on Startup of Progam

    Hello. I am running Illustrator CS5 on a Dell T750, E5620/2.4 GHZ/Xeon Processor with 12 Gb Ram running Windows 7/64-bit operating system. I am also using Suitcase Fusion 3 in correlation with Illustrator (and all Adobe products). I went to launch Il

  • Moving Moblie Me to iCloud

    I already have an iCloud account set up with my Apple ID which is my @yahoo account, NOT @me.  When I go to move my moble me account to iCloud, it is creating a new account for me, or so it seems... I don't want a new iCloud account, I just want to t