SOA composites deployed in weblogic service gets triggered automatically

Hi All,
Am facing a strange behaviour in weblogic server.
Certain SOA composites deployed in weblogic server(10.3.5.0) gets triggered automatically in the midnight at 1.00 p.m and they are in running state for more than 4 hours and then the process gets faulted .
can you please let me know, is there any timer set in weblogic server .

Hi,
Yes there is.
Faulted composites might be triggered automatically and try to complete.
To stop this behevior:
Go to EM home ->Right click on soa-infra -> Soa Administration -> BPEL Properties -> More BPEL Configuration Properties -> Click on "RecoveryConfig" -> Change "maxMessageRaiseSize" to 0.
This "RecoveryConfig" property holds the responsible for the Automatic Recovery
Arik

Similar Messages

  • 12c SOA composite deployment issue using maven

    I am facing issue with 12c SOA composite deployment using maven. I execute the below command for deploying any composite. (Note: Update and run init.cmd file before running the below maven command)
    mvn pre-integration-test –f soa-pom.xml –Dcomposite.name=TestSOAProj –Dcomposite.version=1.1
    Issues:
    As seen above, I specified composite version to be deployed as 1.1 in pom.xml file, but maven deploys the composite with version that is present in composite.xml. It does build the jar file with the version specified in the pom i.e. TestSOAProj_rev1.1.jar, but when it deploys I see the composite with version as 1.0 (this version is in composite.xml). The out of the box maven script is not overwriting the revision in the composite.xml with the value specified in the pom file.
    Also, is there a way to pass the partition name as an user input parameter in the pom file. I tried this with the out of the box pom file by giving the partition name as something other than ‘default’, but the maven script ignores this and always deploys to ‘default’.
    I am not sure if I am missing anything here. Please suggest.
    inti.cmd:
    SET JAVA_HOME=D:\12c-Installation-Path\Java\jdk1.7.0_60
    SET ANT_HOME=D:\12c-Installation-Path\Oracle\Middleware\Oracle_Home\oracle_common\modules\org.apache.ant_1.9.2
    SET M2_HOME=D:\12c-Installation-Path\Oracle\Middleware\Oracle_Home\oracle_common\modules\org.apache.maven_3.0.5
    SET PATH=%PATH%;%JAVA_HOME%\bin;%M2_HOME%\bin;%ANT_HOME%\bin
    soa-pom.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
             <!--
               This POM was automatically generated during SOA project creation.          
               This POM relates to this SOA Composite, i.e. the one in this same directory.
               There is another POM in the SOA Application directory which handles
               the whole SOA Application, which may contain additional projects.
            -->
        <modelVersion>4.0.0</modelVersion>
        <groupId>TestSOAApp</groupId>
        <artifactId>${composite.name}</artifactId>   
      <version>${composite.version}</version>
        <packaging>sar</packaging>
        <!--
               The parent points to the common SOA parent POM.  That is a special POM that is
               shipped by Oracle as a point of customization (only). You can add default values
               for properties like serverUrl, etc. to the SOA common parent POM, so that you
               do not have to specify them over and over in every project POM.
        -->
        <!--<parent>
            <groupId>com.oracle.soa</groupId>
            <artifactId>sar-common</artifactId>
            <version>12.1.3-0-0</version>
        </parent>-->
        <properties>
      <!-- These parameters are used by the compile goal -->
      <code.basedir>${soa.app.source}/${project.artifactId}</code.basedir>
            <scac.input.dir>${code.basedir}/SOA</scac.input.dir>
            <scac.output.dir>${project.basedir}/target</scac.output.dir>
            <scac.input>${scac.input.dir}/composite.xml</scac.input>
            <scac.output>${scac.output.dir}/out.xml</scac.output>
            <scac.error>${scac.output.dir}/error.txt</scac.error>
            <scac.displayLevel>1</scac.displayLevel>
      <!-- if you are using a config plan, uncomment the following line and update to point
                 to your config plan -->
            <configplan>${code.basedir}/${project.artifactId}_cfgplan.xml</configplan>
      <!-- These parameters are used by the deploy and undeploy goals -->
      <composite.name>${project.artifactId}</composite.name>
      <composite.revision>${project.version}</composite.revision>       
      <composite.partition>default</composite.partition>
            <serverUrl>http://${target.hostname}:${target.port}</serverUrl>       
            <!--user>weblogic</user>
            <password>${pwd}</password-->       
      <overwrite>true</overwrite>
            <forceDefault>true</forceDefault>
            <regenerateRulebase>false</regenerateRulebase>
            <keepInstancesOnRedeploy>false</keepInstancesOnRedeploy>
            <!--<jndi.properties.input>UNDEFINED</jndi.properties.input>-->
            <scatest.result>${scac.output.dir}/testResult</scatest.result>
            <!--  input is the name of the composite to run test suties against -->
            <input>${project.artifactId}</input>       
            <!--<scac.ant.buildfile>${env.MW_HOME}/soa/bin/ant-sca-compile.xml</scac.ant.buildfile>
            <sca.ant.testfile>${env.MW_HOME}/soa/bin/ant-sca-test.xml</sca.ant.testfile>
            -->
        </properties>
      <build>
           <plugins>
       <plugin>
      <groupId>org.codehaus.mojo</groupId>
      <artifactId>properties-maven-plugin</artifactId>
      <version>1.0-alpha-2</version>
      <executions>
       <execution>
      <phase>initialize</phase>
      <goals>
       <goal>read-project-properties</goal>
      </goals>
      <configuration>
       <files>
      <file>build-${env}.properties</file>
       </files>
      </configuration>
       </execution>
      </executions>
       </plugin>
      <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-antrun-plugin</artifactId>
      <version>1.6</version>
      <executions>
      <execution>
      <id>read-input</id>
      <phase>prepare-package</phase>
      <inherited>false</inherited>
      <goals>
      <goal>run</goal>
      </goals>
      <configuration>
      <target>
      <property name="fmw.app.basedir" value="${soa.app.source}" />
      <property name="fmw.composite.name" value="${project.artifactId}" />
      <property name="configplan.target.path" value="${scac.output.dir}" />
      <ant antfile="${project.basedir}/replace-tokens.xml" target="replaceConfig" />
      </target>
      </configuration>
      </execution>
      </executions>
      </plugin>
                <plugin>
                    <groupId>com.oracle.soa.plugin</groupId>
                    <artifactId>oracle-soa-plugin</artifactId>
                    <version>12.1.3-0-0</version>
                    <configuration>
                        <compositeName>${project.artifactId}</compositeName>
                        <composite>${scac.input}</composite>
                        <sarLocation>${scac.output.dir}/sca_${project.artifactId}_rev${composite.revision}.jar</sarLocation>
                        <serverUrl>${serverUrl}</serverUrl>
      <user>{}</user>            
      <password>{}</password>
                        <!-- Note: compositeRevision is needed to package, revision is needed to undeploy -->
                        <compositeRevision>${composite.revision}</compositeRevision>
                        <revision>${composite.revision}</revision>
                        <scacInputDir>${scac.input.dir}</scacInputDir>                   
      <input>${input}</input>
      <!--<appHome>${soa.app.source}</appHome>
      <oracleHome>${oracle.home}/soa</oracleHome>                   
      <configplan>${scac.output.dir}/${project.artifactId}_cfgplan_generated.xml</configplan>-->
                    </configuration>
                     <!-- extensions=true is needed to use the custom sar packaging type -->
                    <extensions>true</extensions>
                </plugin>
            </plugins>
        </build>
    </project>
    replace-tokens.xml:
    <?xml version="1.0" encoding="UTF-8" ?>
    <project name="EA_SOA_Build"  default="replaceConfig">
      <target name="replaceConfig">
      <echo>Replacing tokens in configuration file</echo>
      <!-- Following logic copies the dev deployment plan and generates one to meet the target environment. -->
      <delete failonerror="true" file="${fmw.app.basedir}/${fmw.composite.name}/${fmw.composite.name}_cfgplan_generated.xml"/>
      <copy overwrite="true" failonerror="true"
      file  ="${fmw.app.basedir}/${fmw.composite.name}/${fmw.composite.name}_cfgplan.xml"
      tofile="${configplan.target.path}/${fmw.composite.name}_cfgplan_generated.xml"/>
      <replace file="${configplan.target.path}/${fmw.composite.name}_cfgplan_generated.xml">   
       <!-- replace filter for soa source and target endpoints. -->
       <replacefilter token="dmnh1i.manheim.com" value="dmnh2i.manheim.com" />  
      </replace>
      </target>
    </project>
    build-local.properties:
    soa.app.source=D:/Oracle_SOA12c13/Jdev_mywork/OVCApp
    mds.outer.dir=D:/Oracle_SOA12c13/Jdev_mywork/OVCApp/MDS
    target.hostname=localhost
    target.port=7001
    oracle.home=D:/Oracle_SOA12c13/Middleware/Oracle_Home

    hi,
    Can i pass multiple composite name like
    mvn pre-integration-test –f soa-pom.xml –Dcomposite.name=TestSOAProj –Dcomposite.name2="xxx"
    can you please suggest me for same.
    Hint- passing project1,project2.....

  • Odisrv services getting down automatically

    odisrv services getting down automatically even though I have started services manually.
    Please suggest

    Please refer to the piece of log:
    2012-01-06 04:11:03,543 INFO [main] CSS is initialized as client. The default logger properties will be loaded com.hyperion.css.CSSSystem.<init>(Unknown Source)
    2012-01-06 04:11:03,543 INFO [main] CSS Log file will be generated at E:\Hyperion\logs\essbase\SharedServices_Security_Client.log com.hyperion.css.CSSSystem.<init>(Unknown Source)
    2012-01-06 04:11:03,558 INFO [main] Configure CSS with registry com.hyperion.css.CSSSystem.initCSSSystem(Unknown Source)
    2012-01-06 04:11:03,558 INFO [main] Initializing CSS from Registry. com.hyperion.css.common.configuration.CSSConfigurationManager.getConfiguration(Unknown Source)
    2012-01-06 04:11:03,590 INFO [main] Trying to get Registry Instance com.hyperion.css.registry.RegistryManager.<init>(Unknown Source)
    2012-01-06 04:11:05,777 INFO [main] Got Registry Instance com.hyperion.css.registry.RegistryManager.<init>(Unknown Source)
    2012-01-06 04:11:06,324 INFO [main] Got hub location from Registry:http://US1SAWN00077.wmservice.corpnet1.com:28080 com.hyperion.css.registry.RegistryManager.getHubLocationFromRegistry(Unknown Source)
    2012-01-06 04:11:06,527 INFO [main] Got native directory location from Registry:US1SAWN00077.wmservice.corpnet1.com:28089 com.hyperion.css.registry.RegistryManager.getNativeProviderLocationFromRegistry(Unknown Source)
    2012-01-06 04:11:06,527 INFO [main] URL constructed out of values in Registry database:ldap://US1SAWN00077.wmservice.corpnet1.com:28089/dc=css,dc=hyperion,dc=com com.hyperion.css.common.configuration.CSSConfigurationImplXML.initConfiguration(Unknown Source)

  • Can location services get disabled automatically? Or does it always require a user to disable it?

    Can location services get disabled automatically? Or does it always require a user to disable it?
    I was repeatedly trying to Find my iPhone  when it came up with "Location Services Disabled".
    Later I was able to find my iPhone again.  This has happend severally times lately?
    Cold this happen automatically, like a "time out" function?

    Can location services get disabled automatically? Or does it always require a user to disable it?
    I was repeatedly trying to Find my iPhone  when it came up with "Location Services Disabled".
    Later I was able to find my iPhone again.  This has happend severally times lately?
    Cold this happen automatically, like a "time out" function?

  • Custom pricing condition not getting triggered automatically in CRM 4.0

    Hi
    The custom discount pricing condition created in R/3 is active in R/3 and is getting triggered for Sales Orders created in R/3.
    I have downloaded the same pricing conditon from R/3 to CRM 4.0 i am able to trigger it manually in CRM service transaction. But i need the condition to be triggered automatically for the pricing group.
    Your inputs are highly solicited
    Thanks
    Padma

    Hi Padma,
    did you enable the condition download from ERP to CRM already? Did you run the initial condition customizing download and the initial condition master data download successfully (check also the application log in SLG1)?
    In addition, you should be aware, that for any condition customizing change in ERP you need to rerun the initial customizing download (there is no delta download) and that you need to refresh the IPC customizing buffer, which is automatically done once a day by default.
    Best Regards,
    Michael

  • Plugin getting triggered automatically

    Hi
    I am developing an acrobat plugin for Acrobat professional 9 which will export all annotations in original document into an xfdf document.The plugin must get triggered on saving the original document after creation of annotation.For this i captured before save event(PDDocWillSave),the code works fine and creates the xfdf. The problem is that sometimes the plugin gets triggered on opening a pdf document or xfdf document and also on creation of annotation. I am unable to detect the problem so far.
    Please help!

    Hi,
    I came across a post with the similar problem as mine.There it was written to register AVDocSave instead of PDDocWillSave/PDDocDidSave.I couldn't find AVDocSave but there is AVDocDoSave()method in the API. Can somebody plese giude me how to register the event to capture AVDocDoSave()?
    I tried but my code throw error saying : error C2065: 'AVDocDoSaveNPROTO' : undeclared identifier.
    Thanks!

  • LOV value change event is getting triggered automatically

    Hi,
    I'm using ADF Faces with EJB. I have a page with a LOV defined as:
    <af:selectInputText binding="#{backing_contactUpdate.investorLOV}"
              id="investorLOV" columns="30"
              searchDesc="Search and Select Investor"
              value="#{updateContact.reference_id_meaning}"
              action="dialog:chooseInvestor"
              windowHeight="600" windowWidth="650"
              returnListener="#{backing_contactUpdate.investorLovReturn_action}"
              valueChangeListener="#{backing_contactUpdate.investorLovChange_action}"
              autoSubmit="true"/>
    When this page is run the first time and no value exists in the managed bean property bound to LOV field (updateContact.reference_id_meaning) then it all works fine. But if the managed bean property has any value then clicking any button which submits data triggers the LOV change event (backing_contactUpdate.investorLovChange_action). Once a new value is selected in the LOV then the event doesn't get triggered. How can I make the state of LOV field as validated, so that the change event doesn't get fired?

    Additional Information:
    The backing bean and managed bean both are at request scope.
    Another problem I'm facing is that the value change event is not fired when the value in the LOV field is deleted (set to blank).
    The method in backing bean is:
    public void investorLovChange_action(ValueChangeEvent valueChangeEvent) {
    // Add event code here...
    String investorName = (String)valueChangeEvent.getNewValue();
    if (investorName == null) {
    getReferenceId().setSubmittedValue(null);
    getReferenceId().setValue(null);
    } else {
    ValueBinding investorBeanBind =
    application.createValueBinding("#{irmInvestorBean}");
    IrmInvestorBean investorBean =
    (IrmInvestorBean)investorBeanBind.getValue(facesContext);
    investorBean.fetchInvestors(investorName, null, null);
    IrmInvestorSearchResults[] investors = investorBean.getInvestors();
    if ((investors != null) && (investors.length == 1)) {
    getReferenceId().setSubmittedValue(null);
    getReferenceId().setValue(investors[0].getInvestor_id());
    getInvestorLOV().setSubmittedValue(null);
    getInvestorLOV().setValue(investors[0].getFull_name());
    } else {
    UIViewRoot investorLovRoot =
    application.getViewHandler().createView(facesContext,
    "/investorLOV.jsp");
    HashMap windowProp = new HashMap();
    windowProp.put("height", "600");
    windowProp.put("width", "650");
    adfFacesContext.launchDialog(investorLovRoot, null,
    valueChangeEvent.getComponent(),
    true, windowProp);
    }

  • SOA composite deployment logging

    When a archive file is deployed the user logged into the EM Fusion Middleware Control is logged.  For example:
    [2013-09-10T17:01:00.377-04:00] [soa_server1] [NOTIFICATION] [SOA-21530] [oracle.integration.platform.blocks.deploy.servlet] [tid: [ACTIVE].ExecuteThread: '7
    ' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: ScottQA] [ecid: 7318932a4a6vm4a3a:-3019cafa:14006cf5fc9:-8000-0000000000033321,1:12892:3] [APP:
    soa-infra] CompositeDeploymentServlet-----> received request from user: ScottQA
    But w
    hen a deployment is made via JDeveloper in SOA 11.1.1.6 the diagnostic.log does not capture the ID.  The ID logs as anonymous.  For example:
    [2013-09-12T10:25:31.183-04:00] [soa_server1] [NOTIFICATION] [] [oracle.integration.platform.blocks.deploy.coordinator] [tid: ReplicatedCache:soa_qa_SOA_ClusterCacheService:EventDispatcher] [userId: <anonymous>] [7318932a4a6vm4a3a:-3019cafa:14006cf5fc9:-8000-0000000000033321,1:12892:3] [APP: soa-infra] New deployment: {id=9d11678c-f044-2c2c-sx55-ff3b7, status=startPhaseTwo, command=serverReadyCheck}
    Is there a definite way to audit who is deploying when JDeveloper is used to deploy directo to a domain?

    Hi
    I tried the following and nothing worked.
    serverURL=http://10.177.154.6:8001
    serverURL=http://10.177.154.6:8001/
    serverURL=http://10.177.154.6:8001/soa-infra/deployer/
    plz help
    thanks!!!

  • Issue with Planning service getting crashed Automatically due to dll file

    Hello,
    I am having an issue with the Hyperion Planning service which is getting crashed and the following is noted in the Eventviewer:
    Faulting application name: HyS9Planning.exe, version: 1.0.0.2, time stamp: 0x4d110efc
    Faulting module name: jrosal.dll, version: 0.0.0.0, time stamp: 0x4e8c8104
    Exception code: 0x40000015
    Fault offset: 0x000000000000cb0b
    Faulting process id: 0x1960
    Faulting application start time: 0x01ce14f7a8434b04
    Faulting application path: D:\Oracle\Middleware\user_projects\domains\EPMSystem\bin\HyS9Planning.exe
    Faulting module path: D:\Oracle\Middleware\jrockit_160_29\jre\bin\jrosal.dll
    Report Id: 967733e6-8152-11e2-9257-5cf3fc335086The following is recorded in the log file:
    <Mar 2, 2013 2:45:22 PM CST>
    <Error> <HTTP> <BEA-101017> <[ServletContext@271625046[app:PLANNING module:HyperionPlanning path:/HyperionPlanning spec-version:2.5 version:11.1.2.0]]
    Root cause of ServletException.
    java.lang.OutOfMemoryError: classblock allocation, 11312928 loaded, 11M footprint, in check_alloc (src/jvm/model/classload/classalloc.c:215).
    Attempting to allocate 2G bytes
    There is insufficient native memory for the Java
    Runtime Environment to continue.
    Possible reasons:
      The system is out of physical RAM or swap space
      In 32 bit mode, the process size limit was hit
    Possible solutions:
      Reduce memory load on the system
      Increase physical memory or swap space
      Check if swap backing store is full
      Use 64 bit Java on a 64 bit OS
      Decrease Java heap size (-Xmx/-Xms)
      Decrease number of Java threads
      Decrease Java thread stack sizes (-Xss)
      Disable compressed references (-XXcompressedRefs=false)
         at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClassCond(ClassLoader.java:631)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:615)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141)
         at weblogic.utils.classloaders.GenericClassLoader.defineClass(GenericClassLoader.java:343)
         Truncated. see log file for complete stacktraceI checked the following forum
    Re: Oracle JRockit R28.2.2. OutOfMemoryError: classblock allocation
    Should I need to increase -XX:MaxClassBlockMemory to 75M. If so, how should I do it, I am unaware of how I can set the values? My Planning server has 136GB Ram and 18 Cores.
    Thanks,
    hyperionEPM

    The issue was related to the heap size being too much and as a result the Class block memory was not getting enough memory. I think we can make a use of -XXCompressedRefs:32 parameter in the Java start up to allow the heap size to increase till 32 Gb.

  • 12c SOA multiple composite deployment using maven

    Hi,
    I am facing issue with 12c SOA composite deployment using maven. I execute the below command for deploying any composite.
    mvn pre-integration-test –f soa-pom.xml –Dcomposite.name=TestMVNProj –Dcomposite.version=1.1
    Issues:
    As seen above by using above command m able to deploy single composte.But i want to deploy multiple composite belongs to  same application or Different something like below.
    AIM- mvn pre-integration-test –f soa-pom.xml –Dcomposite.name=TestSOAProj1,Project2
    Is there any way to achive this please guide me far same
    In any senerio not only is soa composite.can any one guide me how to deploy multiple projects using maven scripts.
    Thanks in Advance
    Prabhat

    Hi Markus,
    I have tried it with profiling its works . thanks!!!! but some how still i was not able to achieve what i want.
    But thanks for you kind references i have done it by using and maven cmd line switch -pl .Now i can exclude.include modules  dynamically.
    For example;-
    <modules>
        <module>Mvntest1</module>
        <module>MvnDeploymentTest</module>
         <module>MvnDeploymentTest2</module>
        </modules>
    I have multiple module  in my parent pom.xml and if i want to deploy only top 2 of  them.
    # mvn pre-integration-test -pl +Mvntest1,+MvnDeploymentTest   (This only support maven version 3.2.1 and above)
    its working fine :-
    Note:- when we using -pl  if we want to include modules we can give module name with "+"sign and for exclude "- or !" we can give multiple module name separated with "," delimiters .
    THANKS MARKUS!!!!!
    **********************************Happy Deployments*************************************
    Regards
    Prabhat

  • How to assign starting order to SOA composites

    Hi,
    we have several soa composites deployed into the same partition and we are developing a new composite that use some of that composites as providers, this new composite will be deployed in the same partition, but when the server is restarted this new composite starts before the others causing an error and leaving the new composite in a unrecoverable error.
    The specific question is: Is there a way to configure the start order (or priority) for each composite?

    Thanks for the suggestions.
    The last 3 days i was deploying the composites to a fresh installation of SOA infrastructure without the restart problems. The only difference is that in the new server, the first time I deployed the composites was in the correct order, ie:
    The composites A, B and C are independents of each other,
    The composite D depends on 3 ws providers (A, B and C)
    so, the order to deploy was: A, B, C and last D
    I restarted the server a lot of times but it always publish in that order the applications. I can redeploy the composites and restart the server and the error don't occur again.
    The difference of my deployment in the old server was:
    1. I created and deployed the independents composites A and B.
    2. I created and deployed the composite D using as ws providers A and B.
    3. I created and deployed the independent composite C.
    4. I modified and redeploy the composite D to use as ws provider the new C composite
    All works fine but every restart the server failed to publish D composite.
    It seems that if I always deploy the composites for first time in the correct order It will work fine, the problem is that if in the future we add a new service E and try to make it a new reference to it from D we will need to undeploy and redeploy D.... that is really bad.
    I will do more tests about this deploy and publish orders and if I found something useful I will post it for your reference. I don't have a good solution yet.
    Now reading your suggestions I can see that the problem is the availability of the WSDLs, yesterday I configured the service registry in order to add all this services. My next task is to reconfigure my projects in order to get the WSDL from the service registry, I think this could solve the problem, If not, I will read about the use of the MDS to implement one of your suggestions

  • How does B2B Adapter for Inbound operation for SOA Composite works

    Hai,
    I am new to B2B. can any one share samples or links or doc's on B2B Adapter for inbound operation (receive)?
    Can any one share B2B inbound channel configuration ?

    1. How does the above can be achieved using JMS protocol?Where would you like to pitch-in JMS? You want to receive inbound message at B2B over JMS or between SOA and B2B, you want to use JMS?
    For receiving inbound message at B2B over JMS, please create a non-internal listening channel at B2B. Make sure to set JMS headers -
    http://docs.oracle.com/cd/E23943_01/user.1111/e10229/app_interface.htm#CACDFEAE
    For using JMS between, SOA and B2B, create a JMS channel in Host TP profile and add it in the inbound agreement (for inbound scenario). For outbound scenario, create an internal listening channel and make sure that from back-end, headers mentioned on above link, are being set.
    2. Will SOA Composite having B2B Adapter receive operation has first operation can get triggered automatically or not as soon as EDI----->XML message is found?Yes, it can be triggered. Provided the steps in your another thread.
    3. will B2B Adapter receive operation in SOA Composite will take EDI--------> xml msg as opaque?No, if while modelling B2B adapter, you selected a doc-def otherwise yes.
    Regards,
    Anuj

  • Output type maintained but not getting triggered

    I have created a Z output type for scheduling agreement(application EV) which  triggers an idoc and maintained it in NACE but it is not getting triggered automatically with the conditions.Is there any more settings that has to be done??
    Edited by: nevinphilip on May 17, 2010 10:35 AM

    Dear,
    Maintain condition record to your combination in t.code MN07
    Regards,
    Gopala.S

  • SOA Suit is getting stoped automatically

    hi,
    I have installed SOA Suit..and it is getting stoped automatically often..

    Please go to the ORACLE_HOME path in the command prompt
    i.e.
    ORACLE_HOME\opmn\bin>opmnctl status
    This would show you the opmn components up or down(basically their status).
    Always , recommended to start & stopall opmn components using :
    opmnctl startall
    opmnctl stopall
    Also,find the error logs in opmn/log/default_group~oc4j_soa~default_group~1
    and domain.log files.
    Cheers
    Anirudh Pucha

  • Process chain load not triggered automatically

    Dear Experts,
    I have created a process chain which goes like
    Start >> Create Index >> Load Infopackage 1 >> Load 2 >> Load 3 >> followed by 3 more load infopackages...followed by Delete Index and subsequent process like Rollup and DB stats.All the infopackages loaded into same data target.
    When the chain gets triggered first Load infopackage is succesfull later subsequent jobs did not trigger.
    But if i Right click on next process and click "Repeat" the job starts and load gets succesfull. The same case with rest of the loads.
    why arent they getting triggered automatically one after other.
    is there any solution to the problem ?
    Thanks in Advance
    EDA

    Hi Ellora,
       In your scenario, I strongly suggets you to use the "Delete Index" only once since the data target is the same for all Infopackages. Again use "Create Index" only use. You can accomplish this by using the AND process greatly.
       The flow may be like this...
                         START
                       DELETE INDEX
                      LOAD1     LOAD2   LOAD3
                          AND
                           |
                         CREATE INDEX
    Ensure that you have scheduled the process chain in the START Variant.
    Hope this helps...
    Thanks,
    Raj

Maybe you are looking for

  • Upgrade to GB3 results in "fried" JamPacks

    got complete JamPacks and they ran fine with GB2. Upgraded to GB3, and almost all loops are missing, almost all categories are greyed out, (when I click "all drums" there are only 4 loops). So, short of re-installing all my JamPacks, is there a way t

  • Tried to restore my iPod touch, it now shows the 'connect to itunes' graphic on the screen but nothing happens when I do

    I basically restored my iPod to start my music collection from scratch because I got a new PC. I plugged the 32gb iPod touch into my PC and the USB connection sound went on to indicate that it is connected to the PC but the 'Connect To iTunes' graphi

  • Error in BAPI_REQUIREMENTS_CHANGE

    Hi All,   I am getting the below error in  BAPI_REQUIREMENTS_CHANGE while changing the requirmrnt type of  a materail.what cud be wrong? Error : 'No new requirements can be created during a change transaction' Thanks, Rakesh.

  • Printout GR Slip when GR posted via BAPI_GOODSMVT_CREATE

    Dear all , We need to printout the slip when we do the Goods receipt with movement type 101 via BAPI_GOODSMVT_CREATE. We set the user parameter NDR with value X in the User parameters to bring the field always on in the MM transactions but when we po

  • RichEditableText fontFamilyArray?

    Can anyone tell me how to embed multiple font families into a RichEditableText component? I have embedded three fonts and they will all be used within a single component - I may want a different font family completel;y or Bold, Italic, Bold-italic, e