Inbound pay load

Hello every one, 
I just wnated to know where we can find details of sender interface and receiver interface in Payloads using SXMB_MONI.
I also want to know how to determine its message mapping.

Ramesh thanks for your help.
But i could only find Operational mapping over there but any ways we can determine MM by using OM.
I have got one more small doubt how to get input payload to test the MM from sxmb_moni. Pardon me if my questions are dumb, but iam relatively new to MM testing.
Thanks in advance

Similar Messages

  • Variable Substitution  need to define pay load for the following structure

    Hi All
    Please help me for defining the pay load for the following structure for the Variable Substitution 
    for genearing the file dynamically fro the payload
    Target structure is like this
    MT_RFQ_IND_IDOC_MYSPACE_TARGET............> my message type
        <HEADER>
              < FileName>
              <INDI>
              <RFQNO>
              <DOCUTYPE>
       < ITEM>
              <FEILD1>
             <FEILD2>
             <FEILD2>
    please help me
    thanking you
    Sridhar

    Hi,
    should this var1 given in any data type of my IR - No
    in variable substitution, in value give the complete thing which i said above in italics i.e. payload:MT_RFQ_IND_IDOC_FILE_TARGET,1,hEADER,1,FileName,1
    which user you used for CPACache refresh - it can only be done by XIDIRUSER.
    Regards,
    Rajeev Gupta
    Edited by: RAJEEV GUPTA on Feb 6, 2009 7:34 AM
    Edited by: RAJEEV GUPTA on Feb 6, 2009 7:35 AM

  • How to eliminate few subelements from source pay load structure

    Hi,
         I have requirement like this, there are 4 sub elements in the source structure, but I need only 2 sub elements in the target structure. The following is the source pay load,
      <?xml version="1.0" encoding="UTF-8" ?>
    - <ns9:MTI_MANU_PROMOTION xmlns:ns9="http://limited.com/usa/Sap_appl/SapRetail/PromoPriceZone">
    - <RECORDS>
                - <UDT_PRICELOCZONE action="INSERT">
    - <access>
                          <LOC>0000000003</LOC>
                          <U_PRMOPRICEZONE1>EVENT1</U_PRMOPRICEZONE1>
                     </access>
    - <access>
                          <LOC>0000000009</LOC>
                          <U_PRMOPRICEZONE1>1</U_PRMOPRICEZONE1>
                     </access>
    - <access>
                          <LOC>4323</LOC>
                          <U_PRMOPRICEZONE1>1</U_PRMOPRICEZONE1>
                     </access>
    - <access>
                          <LOC>0000000008</LOC>
                          <U_PRMOPRICEZONE1>1</U_PRMOPRICEZONE1>
                     </access>
                </UDT_PRICELOCZONE>
           </RECORDS>
      </ns9:MTI_MANU_PROMOTION>
    So how to eliminate other 2 sub elements in the source structure?
    Any one with better suggestions, about this idea?
    Thanks in advance for all.

    Hi
    raju jut check LOC exists with the help of exists functionality (node functions)
    Use this for input for ifwithout else(boolean function)
    And use your access node as a input at "then"
    I hope you will get the output.
    Check your other thread regarding http sender.
    Regards
    Piyush.

  • Does the advanced queue support setting the pay load type as array/table?

    Does the advanced queue support setting the pay load type as array/table?
    if yes, how to write the enqueue script, I tried to write the following the script to enqueue, but failed, pls help to review it . Thanks...
    ------Create payload type
    create or replace TYPE "SIMPLEARRAY" AS VARRAY(99) OF VARCHAR(20);
    ------Create queue table
    BEGIN DBMS_AQADM.CREATE_QUEUE_TABLE(
    Queue_table => 'LUWEIQIN.SIMPLEQUEUE',
    Queue_payload_type => 'LUWEIQIN.SIMPLEARRAY',
    storage_clause => 'PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 TABLESPACE USERS',
    Sort_list => 'ENQ_TIME',
    Compatible => '8.1.3');
    END;
    ------Create queue
    BEGIN DBMS_AQADM.CREATE_QUEUE(
    Queue_name => 'LUWEIQIN.SIMPLEQUEUE',
    Queue_table => 'LUWEIQIN.SIMPLEQUEUE',
    Queue_type => 0,
    Max_retries => 5,
    Retry_delay => 0,
    dependency_tracking => FALSE);
    END;
    -------Start queue
    BEGIN
    dbms_aqadm.start_queue(queue_name => 'LUWEIQIN.SIMPLEQUEUE', dequeue => TRUE, enqueue => TRUE);
    END;
    -------Enqueue
    DECLARE
    v_enqueueoptions dbms_aq.enqueue_options_t;
    v_messageproperties dbms_aq.message_properties_t;
    p_queue_name VARCHAR2(40);
    Priority INTEGER;
    Delay INTEGER;
    Expiration INTEGER;
    Correlation VARCHAR2(100);
    Recipientlist dbms_aq.aq$_recipient_list_t;
    Exceptionqueue VARCHAR2(100);
    p_queue_name VARCHAR2(40);
    p_msg VARCHAR2(40);
    p_payload LUWEIQIN.SIMPLEARRAY;
    BEGIN
    p_payload(1) := 'aa';
    p_payload(2) := 'bb';
    SYS.DBMS_AQ.ENQUEUE(queue_name => 'LUWEIQIN.SIMPLEQUEUE',enqueue_options => v_enqueueoptions, message_properties => v_messageproperties, msgid => p_msg, payload => p_payload);
    END;
    ------Get error
    Error starting at line 1 in command:
    DECLARE
    v_enqueueoptions dbms_aq.enqueue_options_t;
    v_messageproperties dbms_aq.message_properties_t;
    p_queue_name VARCHAR2(40);
    Priority INTEGER;
    Delay INTEGER;
    Expiration INTEGER;
    Correlation VARCHAR2(100);
    Recipientlist dbms_aq.aq$_recipient_list_t;
    Exceptionqueue VARCHAR2(100);
    p_queue_name VARCHAR2(40);
    p_msg VARCHAR2(40);
    p_payload LUWEIQIN.SIMPLEARRAY;
    BEGIN
    p_payload(1) := 'aa';
    p_payload(2) := 'bb';
    SYS.DBMS_AQ.ENQUEUE(queue_name => 'LUWEIQIN.SIMPLEQUEUE',enqueue_options => v_enqueueoptions, message_properties => v_messageproperties, msgid => p_msg, payload => p_payload);
    END;
    Error report:
    ORA-06550: line 17, column 3:
    PLS-00306: wrong number or types of arguments in call to 'ENQUEUE'
    ORA-06550: line 17, column 3:
    PL/SQL: Statement ignored
    06550. 00000 - "line %s, column %s:\n%s"
    *Cause: Usually a PL/SQL compilation error.
    *Action:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    but when I use the following script to enqueue get error. Pls help to review. Thanks...
    DECLARE
    v_enqueueoptions dbms_aq.enqueue_options_t;
    v_messageproperties dbms_aq.message_properties_t;
    p_queue_name VARCHAR2(40);
    Priority INTEGER;
    Delay INTEGER;
    Expiration INTEGER;
    Correlation VARCHAR2(100);
    Recipientlist dbms_aq.aq$_recipient_list_t;
    Exceptionqueue VARCHAR2(100);
    p_queue_name VARCHAR2(40);
    p_msg VARCHAR2(40);
    p_payload LUWEIQIN.SIMPLEARRAY;
    BEGIN
    p_payload(1) := 'aa';
    p_payload(2) := 'bb';
    SYS.DBMS_AQ.ENQUEUE(queue_name => 'LUWEIQIN.SIMPLEQUEUE',enqueue_options => v_enqueueoptions, message_properties => v_messageproperties, msgid => p_msg, payload => p_payload);
    END;
    ------Get error
    Error starting at line 1 in command:
    DECLARE
    v_enqueueoptions dbms_aq.enqueue_options_t;
    v_messageproperties dbms_aq.message_properties_t;
    p_queue_name VARCHAR2(40);
    Priority INTEGER;
    Delay INTEGER;
    Expiration INTEGER;
    Correlation VARCHAR2(100);
    Recipientlist dbms_aq.aq$_recipient_list_t;
    Exceptionqueue VARCHAR2(100);
    p_queue_name VARCHAR2(40);
    p_msg VARCHAR2(40);
    p_payload LUWEIQIN.SIMPLEARRAY;
    BEGIN
    p_payload(1) := 'aa';
    p_payload(2) := 'bb';
    SYS.DBMS_AQ.ENQUEUE(queue_name => 'LUWEIQIN.SIMPLEQUEUE',enqueue_options => v_enqueueoptions, message_properties => v_messageproperties, msgid => p_msg, payload => p_payload);
    END;
    Error report:
    ORA-06550: line 17, column 3:
    PLS-00306: wrong number or types of arguments in call to 'ENQUEUE'
    ORA-06550: line 17, column 3:
    PL/SQL: Statement ignored
    06550. 00000 - "line %s, column %s:\n%s"
    *Cause: Usually a PL/SQL compilation error.
    *Action:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Incorrect Pay Load in XI Message

    Hi,
    We have Http->XI->RFC synchronous post scenario in XI. Lately we are observing a number of entries in XI log where sender is sending the interface 1 in the header but the pay load in the log is for interface 2. This is only happening under high load.
    The owners of the application sending http post to XI have told us that they are confident that they are sending the right payload.
    So, I was wondering has anyone here has expereinced XI mixing up the payload in higher load condition?
    Thanks,
    Paresh

    Hi Agasthuri,
    We have two outbound interface:
    1. GetOrder_OB
    2. GetCustomer_OB
    There is a coldfusion application (Sender System) which sends the http request to XI with the interface name and payload.
    What we are noticing is that the sender system will send the interface name as "GetOrder_OB" but the payload will be of 'GetCustomer_OB". This results in mapping error.
    Now I am quiet certain that its an issue with the sender system since XI logs clearly shows that the incoming request to XI has incorrect payload. However owners of the sender system say that they are sending the correct payload:
    Here is an example:
    The sender interface is for GetOrder2_OB
    SAP:Sender>
    <SAP:Service>XEROX_REPTOOL</SAP:Service>
    <SAP:Interface
    namespace="urn:dac:reptool:XEROX:ORDERS:GetOrder2">GetOrder2_OB</SAP:Interface>
    </SAP:Sender>
    Pay load (Is for a for GetCustomer_OB interface):
    <xtiinput>
    <inputheader>
    <actionset>
    <action>get_customer</action>
    </actionset>
    </inputheader>
    <inputdata>
    <systemXXXXXl</system>
    <customerid>XXXX</customerid>
    <contactid></contactid>
    <cid></cid>
    <send_cc>N</send_cc>
    </inputdata>
    </xtiinput>
    Hope this explains the issue. I just want to see if other people have ever experienced this kind of issue in XI because of XI messing the message up? This is very possible if sender system sends the wrong payload but I find it hard to believe that XI will mess up the posts.
    Thoughts??
    Thanks,
    Paresh

  • Peoplesoft Integration broker - Inbound File Loader Utility

    hi,
    I have a question on peoplesoft integration broker nbound file loader utility. When we use this utility to load the third party file into the peoplesoft tables, is there any business logic control and validation executed? if not, for which purpose this functionality (inbound file loader utility) is used?
    thank you for your help

    I am using PeopleTools > Integration Broker > File Utilities > Inbound File Processing. Is this a deprecated or outdated process?
    I have configured the process you mention the same as the one I have previously used and I am receiving a similar error, "Class Record: assumed property AUDIT_ACTN is not a valid field name". If it is like the other code, it is failing on the "Record(2)" method when updating the message. I changed this to PSCAMA in the other peoplecode to get it to work.

  • Handling Dynamic pay loads using a Single URL

    Hi All,
    I need to integrate SAP R/3 to a Third party web portal using SAP XI. Portal will communicate with 15+ messages. The third party portal is asking me to provide a single URL to send tje XML Messages. the problem is each message is having different structure from other. We have to recognize the message by seeing the header. The header (root node) will contain message number (like Msg01, Msg02, Msg03 and so on...) , . They have provided us a XSD file, which contains all the messages as complex type , which i can able to upload as External Definitaion. But in the message interface only one message i can use at a time as output message. i,e msg01 or msg03 or msg03 etc... . But the third part portal will send any of message out of 15 messages. So how can i generate single URL to accept dynamically any of 15 message. Also i am getting a confusion which sender adapter to use . Can anybody guide me how to handle this situation?

    Hi,
    you can use one java mapping in the advanced receiver determination as I mentioned. Which does not need to have a unified message format.
    Enhanced Receiver Determination
    Use
    You use an enhanced receiver determination to have a mapping program determine the receivers of the message dynamically at runtime. Instead of creating the receivers in the receiver determination manually, you assign a mapping to the receiver determination and this returns a list of receivers at runtime.
    A typical usage case is if you do not yet know the names of the receivers at configuration time. In this case, you can define a mapping program, for example, which reads a list of receivers from a table or from the payload of the message at runtime.
    After Java Mapping you have already assigned the 15+ different messages to the right receiver you intend to send the request. You can just carry on with normal configuration from here, perform mapping if you need in the interface determination step. etc. Since you don't have one unified Message format for the 15 different messages, you probably need implemented all mappings in Java. Because message mapping does not work, since you have only one outbound interface from Portal (15 different requests are labeld with same interface name). Nevertheless, with java mapping it is not a problem to check the root node at first and carry out the wished mapping.
    Summarize here a bit:
    1. defined ONE Message Outbound interface e.g. MI_OUT_Portal for different Portal request (you could define this interface based on some random MT, does not matter at this point)
    2. define one Interface mapping which map the MI_OUT_Portal to Receivers, Receivers is located in SAP BASIS (standard XI content from SAP)
    In this interface you should have to refer one java mapping which read the XML payload from portal request and find out who is the receiver. This should be quite easy. You could even configure it in one external Database which msg goes to which receiver and find out it in the runtime.
    3. You need mapping from different message typ to the wished receiver, these 15 request messages will probably has 15 different inbound interfaces, you will need 15 different interface mapping if every request message has to be mapped  before it can pass through to the receiver application. These mappings could be done in one java mapping again.
    4. configure Receiver Determination with advanced RD in Configuration with the Interface mapping which implemented in step2
    5. configure Interface determination and receiver agreement
    regards,
    Hai

  • Message pay load date_processing error.

    hi all,
    please look into the below error.
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: Error during variable substitution: com.sap.aii.adapter.file.varsubst.VariableDataSourceException: The following variable was not found in the message payload: date_processing: com.sap.aii.adapter.file.configuration.DynamicConfigurationException: Error during variable substitution: com.sap.aii.adapter.file.varsubst.VariableDataSourceException: The following variable was not found in the message payload: date_processing
    thanks and regards,
    KRUSHI

    Hi Sandeep,
    a variable has been used in IB Directory File Receiver Channel, but is not defined (extended area).
    Have a look to <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/bc/bb79d6061007419a081e58cbeaaf28/content.htm">Configuring the Receiver File/FTP Adapter</a>, where the variable substitution is described.
    Regards,
    Udo

  • XML pay load for RFC call in java mapping

    Hi,
    I searched in many forums about the payload to be given for RFC Lookup from a functional module,but i think i am not able to get it correct.
    Can any one please give me the exact structure of XML Payload to be sent while invoking the function module via RFC LOOKUP
    Say i have 2 import parameters(input1,input2) and one output(output1)......
    Thanks in advance,
    H.L.Babu

    >
    hlbabu123 wrote:
    > Hi,
    > I searched in many forums about the payload to be given for RFC Lookup from a functional module,but i think i am not able to get it correct.
    >
    > Can any one please give me the exact structure of XML Payload to be sent while invoking the function module via RFC LOOKUP
    >
    > Say i have 2 import parameters(input1,input2) and one output(output1)......
    >
    > Thanks in advance,
    > H.L.Babu
    have a look at this document - https://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/a03e7b02-eea4-2910-089f-8214c6d1b439&overridelayout=true
    in case u still have issues do get back

  • SXMB_MONI it is showing successfull but in response thereis no pay load

    hai friends
    In the SXMB_MONI it is showing succesfull but if i double click on the message and see the soap message status there is no payload please help me out with this
    thanks and regards
    Sandeep

    hai thes both errors are comming simultaneousely once check them please
    Message processing failed. Cause:
    com.sap.aii.af.ra.ms.api.RecoverableException: Error during
    variable substitution:
    com.sap.aii.adapter.file.varsubst.VariableDataSourceException: The
    following variable was not found in the message payload:
    date_processing:
    com.sap.aii.adapter.file.configuration.DynamicConfigurationExceptio
    n: Error during variable substitution:
    com.sap.aii.adapter.file.varsubst.VariableDataSourceException: The
    following variable was not found in the message payload:
    date_processing
    could not process due to error:
    com.sap.aii.adapter.file.configuration.DynamicConfigurationExceptio
    n: Error during variable substitution:
    com.sap.aii.adapter.file.varsubst.VariableDataSourceException: The
    following variable was not found in the message payload:
    date_processing

  • To push pay load from XI to BW through RWB

    Hi
    I need to push the payload from XI to BW system,iam trying to send it from RWB>Integration engine> test meassage
    but i am getting the following error when i try to send that message
    com.sap.engine.services.servlets_jsp.server.exceptions.WebServletException: Error in dispatching request to servlet [/sub/componentmonitoringpageprocessor].
    can any body please help on this?
    Thanks
    Mallik

    Hi
    I did as you said but now i am getting the follwoing error
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>Application</SAP:Category>
      <SAP:Code area="RFC_ADAPTER">APPLICATION_ERROR</SAP:Code>
      <SAP:P1 />
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="urn:sap-com:document:sap:rfc:functions">/POSDW/BAPI_POSTR_CREATE.Exception</SAP:ApplicationFaultMessage>
      <SAP:Stack />
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    That means the message reached the receiving sytem's BAPI  and there BAPI Raised some exception.
    Please correct me if i am wrong , what are the steps to be taken to resolve this error.
    thanks in advance
    Malli

  • JMS receiver will it be taking the soap envolpe with pay load?

    Hi Experts,
    i am using the JMS receiver communication channel.
    Under processing tab--------->PI setting under------->Mapping message-ENTER MASSAGE= JMS PAYLOAD if i select this option
    will it be going with payload soap envolope?
    for your reference sending screen shot to you?
    Thanks
    Narendra

    Hi Narendran,
    Please refer the below help page
    https://help.sap.com/saphelp_nw73/helpdata/en/10/b1b4c8575a6e47954ad63438d303e4/frameset.htm
    Select the Mapping of Message:
    If you only want the JMS payload to contain only the payload of the PI message, choose Message Payload = JMS Payload. (default setting)
    If you want the JMS payload to contain the entire PI message, choose Entire Message = JMS Payload.
    So if you select Entire message then it comes with JMS header else only the payload.
    regards,
    Harish

  • BGP Inbound & outboud Load Sharing

    Hi Team,.
    I am looking for input on the below
    1) We are having 2 ISP & same is terminated on Same router, We want to use the ISP link with active & passive & my traffic (incoming & outgoing) should use active link
    So As per my knowledge, For outgoing we can use Weight/ Incoming we need to use ASPath prepend on passive ISP
    Pls confirm
    2)We are having 2 ISP & same is terminated on different router, We want to use the ISP link with active & passive & my traffic (incoming & outgoing) should use active link
    So As per my knowledge, For outgoing we can use Local Pref/ Incoming we need to use ASPath prepend on passive ISP
    Pls confirm
    And, for the above 2 senario, in case I need to use ISP in Active/active condition, how to configure the same with BGP
    Br/Subhojit

    Hi,
    Here is a link with one router running BGP with 2 providers.
    http://www.cisco.com/en/US/tech/tk365/technologies_configuration_example09186a008009456d.shtml
    This link shows multiple routers with multiple providers with examples abd configs:
    http://www.cisco.com/en/US/tech/tk365/technologies_configuration_example09186a00800945bf.shtml
    HTH

  • JCAActivationAgent::load - Error while performing endpoint activation:java.

    Hi,
    I am getting following error while deploying a BPEL process. This is very surprising because the process used to run fine until yesterday. Also for some time I was getting a funny error - the JDev was not able to "read" a wsdl file on local machine. I restarted the server, machine many times but it did not help. I do not have any proxies set and the file resides on my local harddrive.
    <2006-04-11 11:30:20,090> <ERROR> <default.collaxa.cube.activation> <AdapterFramework::Inbound> JCAActivationAgent::load - Er
    ror while performing endpoint activation:java.lang.NullPointerException
    <2006-04-11 11:30:20,090> <ERROR> <default.collaxa.cube.activation> <AdapterFramework::Inbound>
    java.lang.NullPointerException
    at oracle.tip.adapter.fw.agent.jca.JCAActivationAgent.load(JCAActivationAgent.java:208)
    at com.collaxa.cube.engine.core.BaseCubeProcess.loadActivationAgents(BaseCubeProcess.java:931)
    at com.collaxa.cube.engine.core.BaseCubeProcess.load(BaseCubeProcess.java:302)
    at com.collaxa.cube.engine.deployment.CubeProcessFactory.create(CubeProcessFactory.java:66)
    at com.collaxa.cube.engine.deployment.CubeProcessLoader.create(CubeProcessLoader.java:391)
    at com.collaxa.cube.engine.deployment.CubeProcessLoader.load(CubeProcessLoader.java:302)
    at com.collaxa.cube.engine.deployment.CubeProcessHolder.loadAndBind(CubeProcessHolder.java:881)
    at com.collaxa.cube.engine.deployment.CubeProcessHolder.getProcess(CubeProcessHolder.java:789)
    at com.collaxa.cube.engine.deployment.CubeProcessHolder.loadAll(CubeProcessHolder.java:361)
    at com.collaxa.cube.engine.CubeEngine.loadAllProcesses(CubeEngine.java:960)
    at com.collaxa.cube.admin.ServerManager.loadProcesses(ServerManager.java:284)
    at com.collaxa.cube.admin.ServerManager.loadProcesses(ServerManager.java:250)
    at com.collaxa.cube.ejb.impl.ServerBean.loadProcesses(ServerBean.java:219)
    at IServerBean_StatelessSessionBeanWrapper14.loadProcesses(IServerBean_StatelessSessionBeanWrapper14.java:2399)
    at com.collaxa.cube.admin.agents.ProcessLoaderAgent$ProcessJob.execute(ProcessLoaderAgent.java:395)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:141)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:281)
    <2006-04-11 11:30:20,152> <ERROR> <default.collaxa.cube.engine.deployment> <CubeProcessLoader::create>
    <2006-04-11 11:30:20,152> <ERROR> <default.collaxa.cube.engine.deployment> Process "CallHomeBPEL" (revision "1.0") load FAILE
    D!!
    <2006-04-11 11:30:20,230> <ERROR> <default.collaxa.cube.engine.deployment> <CubeProcessHolder::loadAll> Error while loading p
    rocess 'CallHomeBPEL', rev '1.0': Error while loading process.
    The process domain encountered the following errors while loading the process "CallHomeBPEL" (revision "1.0"): null.
    If you have installed a patch to the server, please check that the bpelcClasspath domain property includes the patch classes.
    Please help.

    Finally , I was able to redeploy the process. After comparing new files with old files I observed an activationAgents entry in bpel.xml, which was not present previously.
    <activationAgents>
    <activationAgent className="oracle.tip.adapter.fw.agent.jca.JCAActivationAgent" partnerLink="CallHomeFileUtility">
    <property name="portType">Read_ptt</property>
    </activationAgent>
    </activationAgents>
    when I removed this from bpel.xml the process deployed successfully. Not sure when the <activationAgents> is added to bpel.xml
    Thanks for your inputs.

  • Lound Spinning Sound While Loading some of the Discs

    Hi Senior Members,
    I have a mac book. Recently, i was watching a movie on my mac book and i heard a very lound spinning sound from the disc drive. I took it out and never used it again hoping it could be the problem with the disc. In next few days, some of the disc had the same concern but it was an itermittent Problem. Do i have to get my optical disc drive checked or its just disc specific concern?
    kindly advice.
    Regards
    Vikram

    I guess it really depends on how long you have owned your macbook. Age and use can have a significant impact on specific parts of any computer (Thats just common knowledge). As for the noise factor, it may have something to do with the disk, or the pay-load the disk drive is putting out, if these two factors begin to get worse, then yes you should consider taking it to an Apple Store to be evaluated.
    null

Maybe you are looking for

  • New files not showing up in Adobe Bridge browser

    Since mid-October all new images added to "My Pictures" file refuse to show up the Adobe Bridge browser box. This is infuriating!! I've got Photoshop CS2 and run Windows XP prof. Any help is appreciated!!

  • Multiple files in Multicam

    I have 3 seperate files that are a continous shot to put in to a multicam clip. How do I let FCPX know they are the same angle? Thanks,Randy

  • Find feature Highlight Color and End of document alert

    I am using Version 2.0.7 and noticed two problems with the text find feature that I hope someone else knows about a configuration setting or work around that will resolve the problems. Thanks, Problem 1. Found search characters are highlighted in gra

  • IDoc sent by different party looks different

    Hi, We have a scenario where we receive IDocs from different party. If I check in SXI_MONITOR,the structure of inbound message(IDoc) looks different: It looks like a normal file with XML tags,without any colours and expand/collapse structure like we

  • How to use the InfoBundle11i

    i downloaded the infobundle11i.zip from oracle site with the help of oam i run the infobundle it s showing this error The set completed normally with outcome Error. The outcome was determined by the stage Analyze Impact Data (30). i want to check wha