BPE doesn't activate XML Objects and Workflows

Hi all.
I have created some BPE Processes. The all are active and with status 0 in transaction SXI_CACHE.
The odd thing is, when I trigger messenges the BPE_ADAPTER error 'No object type found for this message; check the activation of the corresponding process' pops up with a statement in the trace: 'could not create BPE proxy for message, no XML object definition found for message...'.
I have checked the objects, the Proxies are created, what is missing are the Workflows and the XML Objects.
When I access the the XML Object the message is a green 'Definition <XML Object Name> not available', it is created though.
I created a similar process a month ago. This is running perfectly. The system is a 640 on SP17. How can it be that the object generation at activation is incomplete?
Thanks in advance for your help.
Jens

Jens,
I have experienced the same exception while using BPM. I tried to debug in all ways and could finally solve it.
In case of BPM, receiver determination to be configured to set receiver as BPM. If you do mistake while configuring inbound interface (it should be abstract interface) under interface determination then you get this type of exception.
I suggest you to to check the receiver determination and interface determination configuration again.
Regards.

Similar Messages

  • ABAP Objects and Workflow

    Can anyone tell me if it is possible to use objects created in ABAP within a workflow without creating an object in the BOR ?

    It's surely not possible in 4.6C .
    Regarding 4.7 also , I am not sure if it is possible using Object Category....
    It does not seem to possible on miniSAP..
    Ok i think it's supported in 4.7.
    You can check the object category field ( e.g in transaction PFTC ), you can specify the category of the object type used. Currently only object types from the Business Object Repository and from ABAP classes are supported.
    Cheers,
    Ram
    Message was edited by: Ram Manohar Tiwari

  • XML Form and workflow

    Hi ,
    Can a workflow is possible by using iviews which are created bt XML form Builder ?
    Aneez

    Hi,
      As i understand XML Form Builder helps us create a Form Template which can be used to create content easily. Content created are stored as KMContent and ones thes workflow (Approval) is set to the folder the documents are subjected to the workflow.
    iViews are used to display the content from the KM Content.
    Regards,
    S.Divakar

  • How to create a xml object dynamically

    Hi all,
    In my current project the database is returning the query result in xml string format(using oracle's DBMS-XML package).
    Now I need to use this xml string and build a xml object and transform it into XSLT and then in a servlet and then pass it to the browser and display it using xsl stylesheets.
    Can some one help me in building an xml object using a string( the xml string is in the xml format i.e in <..> format) and then transform it into xslt in the servlet and send across to the browser.
    Any hands on code or references to the code will be most favourable.
    any help regarding this issue will be most appreciated. Pls do reply as early as possible as I do not have much time to implement this.
    Thanking in advance for your kind help.
    Srinivas.

    What's an "xml object"?
    If you want to transform it using XSLT (transforming it "into" XSLT doesn't make much sense), you can transform direct from the string. Like this:try {
      TransformerFactory xformFactory  = TransformerFactory.newInstance();
      Source xsl = new StreamSource("your.xsl");
      Transformer stylesheet = xformFactory.newTransformer(xsl);
      Source request  = new StreamSource(new StringReader(yourXMLString));
      Result response = new StreamResult(out);
      stylesheet.transform(request, response);
    catch (TransformerException e) {
      System.err.println(e);
    }By the way, if you haven't seen this code before then I suggest you go and read ERH's book about XML with Java:
    http://www.cafeconleche.org/books/xmljava/chapters/index.html

  • Reading XML object from Request object

    Hi,
    We are using Flash in our web application in which we are sending an XML object using HTTP post method to a JSP where we need to parse the XML object and get the values. Can anyone tell how we can do it?

    In fact we are not getting error in our page. following is the error
    Error: 500
    Location: /team/par/getData10.jsp
    Internal Servlet Error:
    java.lang.IllegalArgumentException
         at javax.servlet.http.HttpUtils.parseQueryString(HttpUtils.java:151)
         at javax.servlet.http.HttpUtils.parsePostData(HttpUtils.java:254)
         at org.apache.tomcat.util.RequestUtil.readFormData(RequestUtil.java:101)
         at org.apache.tomcat.core.RequestImpl.handleParameters(RequestImpl.java:719)
         at org.apache.tomcat.core.RequestImpl.getParameterValues(RequestImpl.java:259)
         at org.apache.tomcat.core.RequestImpl.getParameter(RequestImpl.java:250)
         at org.apache.tomcat.facade.HttpServletRequestFacade.getParameter(HttpServletRequestFacade.java:223)
         at org.apache.jasper.servlet.JspServlet.preCompile(JspServlet.java:437)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:480)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:405)
         at org.apache.tomcat.core.Handler.service(Handler.java:287)
         at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
         at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:812)
         at org.apache.tomcat.core.ContextManager.service(ContextManager.java:758)
         at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:213)
         at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
         at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:501)
         at java.lang.Thread

  • Conversion of string into XML object

    Hi
    I am having some problems with conversion of string (containing XML data) into Flex XML object and binding it later to UI elements to output/maintain this data.
    Binding of XML structure to UI elements works perfectly fine if I will do following:
    1)      Hardcode XML object within Flex file
    2)      Read xml file from repository (xml file inside the Flex project)
    3)      Use HTTP request to retrieve XML data
    Unfortunately none of the above scenarios suits my solution.
    I am developing a prototype application for processing Flex forms inside SAP system. I have decided to make data bindings using XML structure stored in Data Base. When rendering form inside web browser based application I am retrieving corresponding XML schema (empty for new forms and populated for saved forms) and pass it to Flex form as a string type import parameter. Data is being passed correctly (I can display it on TextArea control for instance) but after conversion to XML and binding to DataGrid I am not getting any results.
    I am converting string (containing XML) to XML object in following way:
    Private var xml_obj:XML = new XML(string_xml );
    I am catching any potential errors but conversion is going well. After conversion I am not getting any results after binding it to DataGrid control and I am not able to access any of the nodes using AS code either. At the same time variable xml_obj is not empty (not null).
    Any help would be much appreciated.
    Regards
    Michael

    David
    First of all sorry for not stating it clearly but I am using Flex 3 for this development (at the moment it is the only choice when embedding Flex objects inside SAP applications).
    You must have missed the bit where I am describing how this XML data finds its way inside Flex. I am passing it to Flex as String type parameter during rendering (directly from DB where it is stored).
    Now, following code works perfect (XML is embedded inside Flex project):
                    <mx:XML id="form_data" source="../assets/example_xml_data.xml"/>
                    <mx:Script>
                                    <![CDATA[
                                                    import mx.collections.XMLListCollection;
                                                    import mx.controls.Alert;
                                                    [Bindable]
                                                    public var XML_list:XMLListCollection;
                                                    private function setParameters():void
                                                                   XML_list = new XMLListCollection(form_data.*);             
                                    ]]>
                    </mx:Script>
                    <mx:DataGrid id="myDataGrid" dataProvider="{XML_list}">
                                    <mx:columns>
                                                    <mx:DataGridColumn dataField="COMMON" headerText="Popular name"/>
                                                    <mx:DataGridColumn dataField="BOTANICAL" headerText="Botanical name"/>
                                                    <mx:DataGridColumn dataField="ZONE" headerText="Zone"/>
                                                    <mx:DataGridColumn dataField="LIGHT" headerText="Light"/>                                                                                                                                               
                                                    <mx:DataGridColumn dataField="PRICE" headerText="Price"/>                                               
                                                    <mx:DataGridColumn dataField="AVAILABILITY" headerText="Availability"/>                                    
                                    </mx:columns>               
                    </mx:DataGrid>
    But following code does not work (XML passed to Flex form as String input parameter):
    import sap.FlashIsland;
    import mx.controls.Alert;
    import mx.collections.XMLListCollection;
    [Bindable]
    public var xml_data:String;
    private var form_data:XML;
    [Bindable]
    private var XML_list:XMLListCollection;
    private function initApp():void
                    FlashIsland.register(this);
    private function setParameters():void
                    try
                                    form_data=new XML(xml_data);
                    catch (error:Error)
                                    Alert.show(error.toString());
                      XML_list = new XMLListCollection(form_data.*);           
    XML string does find its way inside Flex form. I can display content of variable xml_data in TextArea and all looks fine. Conversion to XML (variable form_data) goes well (no error)
    Please helpJ
    Regards
    Michael

  • XML Object to BPM Object, is possible?

    My process consumes a Web Service that returns a Object (XSD).
    When I catalog this Web Service in the BPM catalog, BPM saves the return of Web Service as a XML Object.
    The problem is that I use JSP in my application, so when I need to show this object in JSP, I need to create a BPM Object similar to XML Object and map the values of the XML Object to Object BPM, then if I need change the Web Service returns (XML object) I also need to change the BPM Object. This is very annoying.
    Exists a way to convert a XML Object to BPM Object? BPM provides some API to make this?

    Yo can create a BPM Object that inherits from an XML Object.
    Hope it helps

  • Issues with binding an XML object

    Hi all.
    I'm doing a quick data editor for a game I'm working on using
    AIR and flexbuilder. Anyway, I've stored all the data in an XML
    object and I'm binding various controls to the XML object. But I've
    come across a weird issue when I update the data.
    Basically I create a datagrid thats bound to the XML
    (basically it reads a list of companies from the XML object). I
    also have a MXML form thats bound to the same data (only from a
    single company at the selected index of the datagrid).
    So its all working neatly, apart from one thing. When I
    select different rows from my datagrid, I'm getting strange
    behavior from my update function (which simply sets the XML objects
    values to the values in my form fields). Its as though there is
    some caching going on within the data binding thats essentially
    overriding my text edit fields .text properties.
    Strangely enough, the update works, but not the first time
    you select a new row from the datagrid.
    So I'm wondering if there is some method to use to invalidate
    any caching of data (its almost like the text is being retrieved
    from a cache and stored back into the edit fields text property).
    I'd added the MXML code for the app. Although the app reads
    an XML file in the storage directory so its unlikely you'll be able
    to run it. But if you need the xml, here it is:
    <companies>
    <company>
    <companyname>Ericson</companyname>
    <companydesc>Some kind of description
    here</companydesc>
    </company>
    <company>
    <companyname>Vodaphone</companyname>
    <companydesc>This is another
    description</companydesc>
    </company>
    <company>
    <companyname>Smother</companyname>
    <companydesc>Wingles another
    description</companydesc>
    </company>
    </companies>
    Hope someone can shed some light here.

    You could try the Apache XMLBeans 2.1.0.
    I have the same need to use xs:any datatype and, at least, XMLBeans do not fail in the bean generation process.
    Cheers.

  • Xml object

    how to enable all xml object in oracle 10g database server
    thanks
    gkn

    To add due to email questions:
    Subject: RE: transforming XML document into RowSet
    Slava-
    I probably should have kept a copy of it when I was running, but I didn’t. It
    won’t be until next week that I will be able to re-create the issue and post a
    stack trace. Any help you can render outside of the trace? Have you successfully
    translated an xml document into a RowSet?
    Thanks for the assist.
    Eric
    -----Original Message-----
    Sent: Thursday, July 31, 2003 12:30 PM
    To: [email protected]
    Subject: Re: transforming XML document into RowSet
    Hi Eric,
    Could you post the stack trace?
    Regards,
    Slava Imeshev
    "Eric Ballou" <[email protected]> wrote:
    >
    I posted this in jdbc intrest group as well, but could use a response
    from anyone...
    I am using the following private class to attempt to take an XML object
    and map
    it into a row set, but I am getting validation errors on items such as
    (attribute
    id, rows), etc. What is the proper schema to utilize on RowSets and is
    there anything
    else I need to do to get this to work properly? (The schema that is
    generated
    from the wizard has no mention of a row attribute nor do I have a really
    good
    guide on how to extend the schema so I may address several tables at
    once.)
    private WLCachedRowSet convertXmlData(XmlObject xmlInfo) throws SQLException,
    IOException
    WLCachedRowSet rowSet = null;
    XMLInputStreamFactory xiFactory = XMLInputStreamFactory.newInstance();
    XMLInputStream xis = null;
    RowSetFactory factory = RowSetFactory.newInstance();
    rowSet = factory.newCachedRowSet();
    WLRowSetMetaData metaData = (WLRowSetMetaData) rowSet.getMetaData();
    // Read XSD
    String sourceDir = System.getProperty("user.dir");
    xis = xiFactory.newInputStream(new FileInputStream(sourceDir+"\\xml\\myRowSet.xsd"));
    metaData.loadXMLSchema(xis);
    if (xis != null)
    xis.close();
    // Read XML
    xis = xmlInfo.newXMLInputStream();
    rowSet.loadXML(xis);
    if (xis != null)
    xis.close();
    return rowSet; }

  • ABAP Objects with Workflows / Classes and Instances

    Hello,
    I am currently designing a workflow using an ABAP-Objects. So far I have been been able to get my Workflow to run with my class, but I have a couple of problems:
    - I am using the Function 'SAP_WAPI_START_WORKFLOW' to start other subflows, which enables me to decide which subflow to start at runtime. All of the subflows have standart importing-parameters in their containers, such as the key of my class. In each workflow I instantiate my class using a self-written method, which checks the table T_INSTANCES in my object, and then either returns the object reference to an existing instance or creates a new one. Obviously all of the subflows that I call from my main workflow should be able to find the instance. As far as I can see in their protocolls, this happens without any problems. The problem starts when I make changes to the instance. For example the changing of attributes (with setter methods) seems not to work. After the subflows are finished, in my main workflow, I do not see (with getter methods) any changes that has been made to the object. Is local persistence really limited to one workflow ?
    - My second problem is basically about the workflow container in workflow protocoll. In the same workflow, I can change the attributes of my object. Nevertheless, the protocoll always show the initial attribute, even though, my task with the getter-method returns the new value of the attribute.
    I appreciate any help and thanks a lot in advance.

    Hello Pauls,
    Thank you for your answer. I think we are misunderstanding each other. The problem occurs (I think) because my class is not a singleton class. Or am I mistaken ?
    When I directly start a subflow from my main workflow, then the instance that I have created in my main workflow is also visible to the subflow. As well as the static table which actually keeps track of the instances. So, in this case the subflows finds the instance and then can use the object as is.
    When I start a subflow from my main workflow using the function I mentioned above, then even though the same object key is used, there is a new instance. And the static table (I assume that you mean a static variable from type table, when you say "class table") is completely empty. In this case, my "new" instance is created which overwrites every attribute that I have set in the main workflow, before I started the subflow. More interestingly, my main workflow instantiates another new object, as soon as the subflow has finished. (I am using an event to wait for the subflow to finish.)
    On the other hand, I am not quite sure that I understood your approach with refresh and how it could help me. This method is not well documented anywhere, and all of the examples that I have found are about "leave it empty"
    As far as I understood, this method is called by the workflow between the steps, when an object is used. I slowly start to think that I need advanced information about Workflows and Memory Management.
    Thanks a lot again. Apparently, I am the only person who came across such a problem
    Greetz
    G.Fendoglu

  • Xml file and htmlText box doesn't work

    Hi,
    i have a action script that read a xml file and put the content of this file in a
    htmltext box, but when come inside the xml file a code like this"<font color='#003399'>Test</font>" the box (htmltext) appears empty.
    my code
    this.my_txt.embedFonts = true;
    this.my_txt.html = true;
    this.my_txt.htmlText =myTextos;
    The variable "myTextos" load the content from xml ...but it doesn't appears in my htmltext box
    How can i fix this?
    obs: When i erase the tag <font color='#003399'></font> in xml the variable "myTextos" appears correctly in my htmltext box.

    Look my xml file:
    <?xml version="1.0" encoding="utf-8"?>
    <sm>
    <item><![CDATA[<p align="center"><b>Recordações do Escrivão Isaías Caminha</b></p>
    <font color='#003399'>Leiva era o chefe</font>, era a inteligência do grupo, pois, além de poeta, tinha todos os preparatórios para o curso de dentista.
    <p><align="right"><b>Fonte:</b> BARRETO, Lima. <i>Recordações do Escrivão Isaías Caminha</i>. Rio de Janeiro: Fundação Biblioteca Nacional. Disponível em:
    http://www.dominiopublico.gov.br. Acesso em 19 mar. 2008.
    </p>
    ]]></item>
    </sm>
    why my dinamic box (in flash 8, action scrpit 2) doesn't interpret the tag <font color='#003399'>?

  • Web Services and XML Object

    Hi All ,
    The types supported by JAX-RPC seem not to include any XML object (i.e. org.JDom.Document). But OC4J supports this. Any one can give me direction if any other tools can permit me in creating web services which will permit to exchange XML objects (Documents or Elements ) .
    Regards,
    Rao

    Apache Axis has support for RPC, Document, Wrapped and Message service styles.
    see http://ws.apache.org/axis/java/user-guide.html#PublishingServices and scroll down to the 'Message services' subheading.
    JAX-RPC supports the RPC service style.
    Pete

  • Workflow Decision suppress "Objects and attachments "

    Hi all,
    Is there a way to suppress the "Objects and attachments " message or change the text that reads "No attachments or objects"?
    Thanks in advance,
    Scott

    hi,
    first post workflow questions in the SAP Business Workflow
    Executing transactions is done by first finding the business object related to the transaction and then see if a method exists for changin in dialog
    for instance, BUS1001 methods display, edit, delete
    executing transactions who don't belong to a business object from workflow can be done with a task which uses method execute of business object TRDIR, you have to pass the progrm name .
    kind regards, Rob dielemans

  • Workflow Objects and attachments

    Hi!
    I have a task type (Dialog), I need put one link to a some transaction. Some ona know what code can i use?
    Thanks,
    Alexandre

    hi,
    first post workflow questions in the SAP Business Workflow
    Executing transactions is done by first finding the business object related to the transaction and then see if a method exists for changin in dialog
    for instance, BUS1001 methods display, edit, delete
    executing transactions who don't belong to a business object from workflow can be done with a task which uses method execute of business object TRDIR, you have to pass the progrm name .
    kind regards, Rob dielemans

  • I have created a user in oracle BPM but it is not reflected in system-jazn-data.xml file and I am unable to authenticate that user to create context as needed in workflow client

    I have created a user in oracle BPM but it is not reflected in system-jazn-data.xml file and I am unable to authenticate that user to create context as needed in workflow client

    weblogic credentials are different.
    and using thode credentials I am able to login to weblogic server
    the users I am talking about is the process users defined in realm.
    in realm those users are defined as Default authenticator and OID authenticator.
    and I am trying to authenticate one of those users defined in realm using java api so that I an access a process defined In Oracle BPM 11g

Maybe you are looking for

  • OBIEE 11g, BI Apps EBS: What are default security variables and Init Block

    Hi, We are implementing BI Apps 7.9.6.3 [OBIEE 11.1.1.1.5 with EBS modules]. Out of the box RPD and mappings. There are many VARIABLES and INIT BLOCKS in the RPD. Some of them are mainly for Siebel, Jd Edwards etc. I need to know what are the default

  • Stable ati driver installed, but still issues

    Hi folks I followed this guide: https://wiki.archlinux.org/index.php/AMD_Catalyst and everything went smoothly, everything installed fine and the accc is showing my graphics card and lets me change the settings. Now i only installed it because i coul

  • Copy from SEPA formt tree out of DMEE caused wrong format in file

    Hello @ all experts, we used to copy the delivered format tree to use him for payments. But the copy caused the problem <?xml version="1.0" encoding="utf-16" ?> The result is that no file is created. Can you tell me why the copy failed or which setti

  • 5D3 AFM bug setting all lenses to ALL-8

    When the 5D3 came out it had a bug. AF microfocus would default to ALL-8 for all lenses. FW 1.2.1 was suppsoed to have corrected this. I knew all AFM setting were at 0 becuase the EXIF data shows this. I sent my camera to Canon in early June. I got i

  • PDF printing in Java

    I have a requirement to print PDF files routed to half a dozen of printers by user request. Is it true that PDF printing is still not supported in Java after so many years of JPS which first appeared in JDK1.4.? There is a project called pdf-renderer