ADF: approach needed to do pre-processing on creation of a record

Hi,
i need a proper approach for doing some select and updates from the database when a new record is created. The select and update is not related to the entity object base table.
at the moment i have overriden the create method in the Enitity Implementation class:
1. Select a value from a table
2. Change this value in the database (and commit)
3. use the new value as a default value in the in the EO's new record
The problem is that i want this to be done as two independant transactions, ie. the update in isolation of the entity objects underlying transaction. I have tried using PreparedStatements and postChanges() (which should commit the first transaction without validating the state of the Entity Object?) But i find that the changes are not effected in the database until commit on the entity object is called.
help appreciated,
Brenden

If you are using Oracle database, I would strongly advise you NOT to use this approach.
First, using the code you have given, you can easily get two different records with the same ID. Image two different sessions (users) that are trying to get their IDs. It is possible that the two sessions read the same last number, each increments this number in its own context and then assign the same number to its newly created record. To avoid this, you should try to lock the sequence row before reading the last number, then increment it, save it back in the database and then release the lock. This is very bad approach that limits severely the concurrency.
Secondly, this approach does not allow you to create two new entities in the same transaction. Committing the transaction in the create() method for the second entity will try to post the first one, which might not have its mandatory fields populated, for example. The transaction will fail to commit as there are non-validated entities in its pending list.
So in brief, I suggest that you use native database sequences for this as generating unique numbers in a concurrent and scalable manner is what they have been created for. You can use DBSequence datatype combined with a before-insert trigger for this.

Similar Messages

  • I need a form that allows the creation of multiple records

    I have a form that is a daily timesheet. It's essentially a table with repeating rows, each row showing a record of time worked. Is this possible to produce in Form Central? I can't find any options relating to adding records.

    You can consider uploading files in B/CLOB columns, just the way u upload and retrive the images.

  • OIM 11.1.1.5.0 - Pre process event handler

    Hi everyone, I'm trying to configure a preprocess event handler to automate email and user login when I click on "create user".
    I mean when I want to create a new user, I just want to fill the first name, the last name, the organization and the type and this preprocess will fill automatically the email and the user login fields. I don't know if it's possible or not with an event handler ?
    Thanks
    Thibault

    If you want this event handler only for manual user creation using UI then you can go with pre-process event handler. The advantage you get is, no need of refereshment. once user created email and user login field will be visible. But in case of post process you have to refresh it manaually. Yes, you have to use post process event handler if the same field you want to populate on Trusted recon as well. Beacause, Pre- process doesn't work with Trusted recon.
    Hope above will help you to decide for pre or post to use.
    Now, for registering plugin. Don't put jar in the zip, you have to place .class in case of event handler. jar we use for scheduled task. place your class file like below and zip
    lib/*package structure folder*/EmailLoginAuto.class
    ie lib/com/test/eventhandler/EmailLoginAuto.class
    for importing eventhandler.xml put it anywhere in your directory structure
    ex: /tmp/db/eventhandler.xml
    and update the from_location as /tmp in weblogic.properties
    --nayan                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Custom Pre Process Event Handler in OIM 11g for middle initials

    Hi,
    I am trying to congiure a Custom Pre Process Event Handler for generating middle name in OIM 11g and I am following the steps as given in metalink ID: *1262803.1*
    Even after successfully performing all the steps I am not able to get the middle initials in Admin Console when I create a new user.
    1) Directory structure for the application that I have created through JDeveloper.
    CustomApplication/
    |-- CustomApplication.jws
    `-- CustomProject
    |-- CustomProject.jpr
    |-- classes
    | `-- com
    | `-- example
    | `-- custompph
    | `-- CustomPreProcessEventHandler.class
    `-- src
    `-- com
    `-- example
    `-- custompph
    `-- CustomPreProcessEventHandler.java
    2) Directory structure for Plugins directory
    My Plugin.xml :
    <?xml version="1.0" encoding="UTF-8" ?>
    <oimplugins>
    <plugins pluginpoint="oracle.iam.platform.kernel.spi.EventHandler">
    <plugin pluginclass="com.example.custompph.CustomPreProcessEventHandler"
    version="1.0" name="CustomPreProcessEventHandler" />
    </plugins>
    </oimplugins>
    plugin/
    |-- lib
    | `-- com
    | `-- example
    | `-- custompph
    | `-- CustomPreProcessEventHandler.class
    |-- middlename.zip
    `-- plugin.xml
    Copied the middlename.zip in the plugin folder in OIM_HOME and registered it successfully.
    3) Created a EventHandlers file and imported it successfully using importmetadata.
    My EventHandlers.xml:
    <?xml version='1.0' encoding='utf-8'?>
    <eventhandlers>
    <!-- Custom preprocess event handlers -->
    <action-handler
    class="com.example.custompph.CustomPreProcessEventHandler"
    entity-type="User"
    operation="CREATE"
    name="CustomPreProcessEventHandler"
    stage="preprocess"
    order="10"
    sync="TRUE"/>
    </eventhandlers>
    I checked the logs as well but could not find something which can help me to proceed.
    Also please advise is their any mapping that I need to do in *"Design Console"*
    Please advise !!!!!
    Thanks

    My lib file contains the package as mentioned in the metalink.
    Heirarchy in Plugin folder :
    1) plugin.xml
    2) Lib ( lib contains 3 folders : com/example/custompph; And inside custompph is my CustomPreProcessEventHandler.class file)
    You mean to say i should not copy the entire package in lib but only the jar file of the CustomPreProceessEventHandler.class* file.
    If i put only a .jar file in lib i get the following error.
    "Error occured during the use of plugin registering utility. The plugin zip does not contain the definition of plugin class com.example.custompph.CustomPreProcessEventHandler"
    Thanks
    Edited by: 870050 on Jul 4, 2011 4:30 AM

  • Pre-processing job for Transactions

    Hi Archiving Forum,
    In SAP help it is mentioned that pre-processing job is optional job. I am trying to run Write job for few of the transactions where the status is completed without pre-processing job.
    But when i debugged the write program for - CRM_SERORD archiving object, the program internally checking the I1100 status for each Service ticket/ Order.
    Here, all Service tickets were marked completed status on 24/03/2009.
    Residency time for all transaction types is 1 day.
    I am running the Write job for Service Ticket and Service order on 24/03/2009. - but job is not able to write the data into Archive files.
    Should i wait for One day ( where it completes the Residency time) to run the Write job?
    If i wait for one day, then the write program is internally checking the status I100 (Archival status). Is this status is updated by default in the CRM_JEST table after completing Residency period ?
    Please need concrete answers.
    Thanks in Advance,
    Kishore

    Hi Kishore,
    Pre-processing job should be scheduled for archiving objects before runing write program because it will help in basic archivability check and makes the basement for write program.
    Without executing pre-processing program write program will fails to archive data. For example: CO_ORDER, MM_EKKO, MM_EBAN and so on... in R/3 system.
    Similarly in CRM system Pre-processing program will help
    In check, the following database changes for CRM_SERORD:
    1) The date of the archivability check is updated.
    2) For the archivable data, the status is changed to 'Archivable'. Then the
    data is no longer changeable.
    3) For the archivable data, the system sends a deletion BDoc type with
    message type 'A' (for archiving) via the CRM Middleware so that the other
    components involved in mySAP CRM solutions are informed about an archiving
    of the data in the CRM server. The system sends deletion BDoc types at this
    time because the change to an unchangeable status is the status change
    which is relevant from a business point of view.
    In CRM 3.0 version
    The check occurs in an archiving object-specific preprocessing program
    entered for the archiving object in transaction AOBJ.
    As of mySAP CRM5.0 it is controlled using transaction SARA check/delete
    In your case:
    Even after passing of 1 day of residence time service order or service ticket will not be archive since write program will not set the status for archive I1100. Preprocessing program calling functional module and setting the status as archivable (I1100) after all the pre-requisites are met and write program will archive those data.
    The status in ST / SO will not be automatically changed after meeting residence time.
    Please also read OSS note no 500551.
    -Thanks,
    Ajay
    Edited by: Ajay Kumar on Mar 25, 2009 2:17 AM

  • Error while executing of Pre-Process EventHandler

    Hi,
    I have a pre-process event handler configure for "CREATE" and "MODIFY" operations which updates middle name of the user. The code gets triggered perfectly for "CREATE" operation and updates middle name attribute as expected. But when I update the user, I get the following error. Any pointers on how to resolve this ??
    My EventHandlers.xml file has:
    <action-handler orch-target="oracle.iam.platform.kernel.vo.EntityOrchestration" class="com.eh.CustomPreProcessEventHandler" entity-type="User" operation="CREATE" name="CustomPreProcessEventHandler" stage="preprocess" order="FIRST" sync="TRUE"/>
    <action-handler orch-target="oracle.iam.platform.kernel.vo.EntityOrchestration" class="com.eh.CustomPreProcessEventHandler" entity-type="User" operation="MODIFY" name="CustomPreProcessEventHandler" stage="preprocess" order="FIRST" sync="TRUE"/>
    <b>Error seen in logs:</b>
    <Apr 13, 2012 3:31:53 AM IST> <Error> <oracle.iam.identity.usermgmt.impl> <IAM-3050030> <An exception occurred while performing the operation.
    java.lang.NullPointerException
    at com.example.custompph.CustomPreProcessEventHandler.execute(CustomPreProcessEventHandler.java:49)
    at oracle.iam.platform.kernel.impl.OrchProcessData.runPreProcessEvents(OrchProcessData.java:891)
    at oracle.iam.platform.kernel.impl.OrchProcessData.runEvents(OrchProcessData.java:627)
    at oracle.iam.platform.kernel.impl.OrchProcessData.executeEvents(OrchProcessData.java:220)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:664)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.process(OrchestrationEngineImpl.java:435)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.orchestrate(OrchestrationEngineImpl.java:381)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.orchestrate(OrchestrationEngineImpl.java:334)
    at oracle.iam.identity.usermgmt.impl.UserManagerImpl.modify(UserManagerImpl.java:860)
    at oracle.iam.identity.usermgmt.api.UserManagerEJB.modifyx(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 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 $Proxy322.modifyx(Unknown Source)
    at oracle.iam.identity.usermgmt.api.UserManager_nimav7_UserManagerRemoteImpl.modifyx(UserManager_nimav7_UserManagerRemoteImpl.java:1009)
    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:84)
    at $Proxy187.modifyx(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 org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:198)
    at $Proxy314.modifyx(Unknown Source)
    at oracle.iam.identity.usermgmt.api.UserManagerDelegate.modify(Unknown Source)
    at oracle.iam.identitytaskflow.backing.taskflows.modifyuser.ModifyUserView.modifyUserAction(ModifyUserView.java:2716)
    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:157)
    at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
    at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1259)
    at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
    at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:97)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:90)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:309)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:94)
    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:91)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:812)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:292)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
    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:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.help.web.rich.OHWFilter.doFilter(Unknown Source)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.am.agent.wls.filters.OAMServletAuthenticationFilter.doFilter(OAMServletAuthenticationFilter.java:260)
    at oracle.security.am.agent.wls.filters.OAMValidationSystemFilter.doFilter(OAMValidationSystemFilter.java:133)
    at oracle.security.wls.oamagent.OAMAgentWrapperFilter.doFilter(OAMAgentWrapperFilter.java:121)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.iam.platform.auth.web.PwdMgmtNavigationFilter.doFilter(PwdMgmtNavigationFilter.java:115)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.iam.platform.auth.web.OIMAuthContextFilter.doFilter(OIMAuthContextFilter.java:100)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:159)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

    Hi Kevin,
    Thanks for the response.
    This is the code I am using:
    HashMap<String, Serializable> attrs=arg2.getParameters();
              System.out.println("----------------------------------------------");
              System.out.println("Custom Pre Process Handler");
              String middlename=getParameterValue(attrs,"Middle Name");
              System.out.println("Middle Name: "+middlename);
              if (middlename == null || middlename.isEmpty()){
                   String firstName=getParameterValue(attrs,"First Name");
                   System.out.println("First Name: "+ firstName);
                   middlename=firstName.substring(0,1);
                   System.out.println("middlename: "+middlename);
                   arg2.addParameter("Middle Name", middlename);
    In the console it prints, middlename and FirstName as null, though the user has both the values!! :(

  • Custom Pre Process Handler for middle name generation

    Hi,
    I am working on Custom Pre Process Event Handler for generation of middle name from the First Name by following the Meta link ID :[ID 1262803.1]. I have followed all the steps successfully as mentioned in meta link. But I am not able to trigger the middle name in OIM admin console. Following are the steps :
    1) Created a Application and project named CustomPreProcessEventHandler and copied the sample code. I have copied all the jars in our class path from OIM Platform folder e.g : iam-platform-context.jar and iam-platform-kernel.jar.
    2) Created plugin as mentioned in metalink.
    3) Copied in the plugins directory and registered successfully.
    4) Set all my paths and home as mentioned in the metalink for Java, ANT, WL_HOME, OIM_HOME.
    5) Created EventHandlers.xml and imported the file with wlst in the OIM_HOME/metadata/user/custom/CustomPreProcessHandler/EventHandlers.xml
    6) Finally ( *./PurgeCache.sh MetaData* ) to purge the cache.
    7) Created a new user in OIM Admin Console but I am not getting any middle name.
    Please guide if i am missing something. Do I need to map something Design console or any system property need to be changed.
    I have been trying this since last week without any success. Please suggest ASAP.
    Thanks

    Thanks for the Promt reply.
    I have changed the orders from 1000 to 50 in EventHandlers.xml.
    I also checked the plugins table in DEV_OIM and found three entries. In plugin table we have these enteries
    1) MyCustomUserNameGenerator
    2) CustomPreProcessEventHandler
    3) CustomPreProcessEventHandler1
    I have deleted the MyCustomUserNameGenerator, CustomPreProcessEventHandler and all its dependencies. Still its showing in Plugins table.
    My active eventhandler is now this CustomPreProcessEventHandler1. but when I trigger the event handler in log..
    executing in the server environment hence initialising ADPClassWatchDog
    Xl Home Dir :/opt/Oracle/Middleware/Oracle_IDM1/server
    MyCustomUserNameGenerator####getUserNameFromPolicy
    MyCustomUserNameGenerator####printMap:
    MyCustomUserNameGenerator####printMap: key=Email val=null
    MyCustomUserNameGenerator####printMap: key=Middle Name val=null
    MyCustomUserNameGenerator####printMap: key=Last Name val=user10
    MyCustomUserNameGenerator####printMap: key=First Name val=test
    MyCustomUserNameGenerator####printMap:
    MyCustomUserNameGenerator####printMap: key=Email [email protected]
    MyCustomUserNameGenerator####printMap: key=Middle Name val=null
    MyCustomUserNameGenerator####printMap: key=Last Name val=user10
    MyCustomUserNameGenerator####printMap: key=First Name val=test
    <Jun 21, 2011 11:08:20 AM IST> <Warning> <oracle.iam.autoroles.impl.util> <IAM-4020205> <Rule Consultant is invalid because it contains an element with an invalid attribute.>
    <Jun 21, 2011 11:08:20 AM IST> <Warning> <oracle.iam.autoroles.impl.util> <IAM-4020203> <Rule Consultant is invalid and it is being ignored.>
    <Jun 21, 2011 11:08:20 AM IST> <Warning> <oracle.iam.autoroles.impl.util> <IAM-4020205> <Rule Full-Time Employee is invalid because it contains an element with an invalid attribute.>
    <Jun 21, 2011 11:08:20 AM IST> <Warning> <oracle.iam.autoroles.impl.util> <IAM-4020203> <Rule Full-Time Employee is invalid and it is being ignored.>
    <Jun 21, 2011 11:09:04 AM IST> <Error> <org.quartz.impl.jdbcjobstore.JobStoreCMT> <BEA-000000> <MisfireHandler: Error handling misfires: Unexpected runtime exception: null
    Its still running MyCustomUserNameGenerator....
    Please guide me for further steps....
    Thanks

  • Pre-process a page before sending

    Is there anyway to preprocess a before it leave the server.
    The situation is that we have pages of static content with
    hundreds of glossary links in. The glossary details are stored ina
    a DB. title attributes are being used to display a word's meaning
    and I want a quick way to scan a page before it loads, and add in
    the glossary definitions - any ideas?

    The pages are all .cfm pages with static text in. The
    glossary is stored in a DB.
    Definitions are added to the page via the title attribute of
    a <strong> tag e.g. <strong title="aka skaskdalskd aklak
    dlk asldk al dkalkdlaksdlkas dlka slkalsdalksd lakjsdlakj sdlka
    ldka sldka lskd laksj dlad">Word</strong> (this is runing
    on an intranet so on IE Explorer is used and they display fine) but
    there are hundredsof definitions and thousands of places where the
    definitions are used. And they keep adding. So is there a way to
    pre-process the page, prior to it loading. Or do we need to run a
    script each time the glossary DB is updated to search for terms and
    add in the definition?
    Cheers
    R

  • 5. We need additional time to process your transaction You should get an email from us by next business day. If you don't hear back from us, you can check your order status on your account page or call us at +1 800-585-0774. If you're not in North America

    Step 5.
    5. We need additional time to process your transaction You should get an email from us by next business day. If you don't hear back from us, you can check your order status on your account page or call us at +1 800-585-0774. If you're not in North America, you can look up a local number here. For now, check out all the great free features of Creative Cloud! Get started with trials
    I keep getting this.
    The Bank and Paypal states that Adobe needs to process my transaction twice.
    I have no order number/ no status nor contact from Adobe. I called customer service and he transferred me to sales where the phone rang with no answer.

    Since this is an open forum, not Adobe support... you need to contact Adobe staff to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • Error in pre processing phase MAIN_SHDIMP/SUBMOD_SH2_RUN/XPRAS_SHD_AIMMERGE

    Hi Experts,
    We faced below error in Pre processing phase of EHP6 Upgrade, MAIN_SHDIMP/SUBMOD_SH2_RUN/XPRAS_SHD_AIMMERGE.
    Please anyone could suggest an alternative or workaround  for this
    Attached is screenshot of error. Below is information from the log
    tail -20 XPRASSHD.ELG
    3 ECD830 INCLUDE '"F_BUPR_BUR_CDF"' created
    3 ECD830 INCLUDE '"F_BUPR_BUR_CDV"' created
    3 ECD832 TCDRP: OBJ '"BUPR_BUR"' REPORT '"_BUPR_BUR_"' created
    3 ECD834 TCDRS: REP '"_BUPR_BUR_"' TABN '"VBUT052"' created
    3 ECD102 "R3TR" "CHDO" "BUPR_BUR" was imported
    2EEPU133 Errors occurred during post-handling "AFTER_IMP_CHDO" for "CHDO" "L"
    3 EPU135 "AFTER_IMP_CHDO" belongs to package "SZD"
    2EEPU136 The errors affect the following components:
    2EEPU137 "BC-SRV-ASF-CHD" ("Change Documents")
    1 ETP111 exit code : "8"
    >>> PLEASE READ THE REPORT DOCUMENTATION OF THE REPORTS MENTIONED ABOVE <<<
    XPRAs are application reports that run at the end of an upgrade.
    Most XPRA reports have a report documentation that explains what
    the report does and how errors can be corrected.
    Call transaction se38 in the SAP system, enter the report name,
    select 'Documentation' and click the 'Display' button.
    >>> The problematic XPRAs are mentioned in messages of type PU132 above <<<

    Hi Venkata
    Could you check this SAP Note
    1764234 - CD: Enhancements in generated function groups
    Regards
    Sriram

  • Shadow Instance Not starting during upgrade Pre-processing

    Hi All,
    I am upgrading CRM Dev system from 6.0 to 7.02. I am getting an error during the start of shadow system in pre-processing phase in MAIN_SHDPREPUT/START_SHDI_PREPUT! Please help ASAP.
    Last error code set: Shadow instance couldn't be started, check 'STARTSSC.LOG' and 'DEVTRACE.LOG': Process F:\SUM\SUM\abap\exe/sapcontrol.exe exited with 2, see 'F:\SUM\SUM\abap\log\SAPup.ECO' for details.
    STARTSSC:
    1 ETQ399 SYSTEM HEALTH MANAGER: check for instance processlist.
    1 ETQ399 SAPCONTROL MANAGER: getProcessList with host: SAPCRMDEV and instance: 04
    3 ETQ120 20150113094015: PID 4656 execute 'F:\SUM\SUM\abap\exe\sapcontrol.exe -format script -prot PIPE -host SAPCRMDEV -nr 04 -function GetProcessList', output written to 'F:\SUM\SUM\abap\log\SAPup.ECO'.
    3 ETQ123 20150113094015: PID 4656 exited with status 4 (time 0.000 real)
    1 ETQ399 SAPCONTROL MANAGER: get parameter value
    3 ETQ120 20150113094015: PID 6968 execute 'F:\SUM\SUM\abap\exe\sapcontrol.exe -prot PIPE -host SAPCRMDEV -nr 04 -function ParameterValue SAPSYSTEMNAME', output written to 'F:\SUM\SUM\abap\log\SAPup.ECO'.
    3 ETQ123 20150113094015: PID 6968 exited with status 0 (time 0.000 real)
    1 ETQ399 SYSTEM HEALTH MANAGER: running postCheck for instance 04 on host SAPCRMDEV
    4 ETQ399 Set RFC variables for shadow connect:
    4 ETQ399 System-nr = '04', GwService = 'sapgw04' Client = '000'
    1 ETQ359 RFC Login to: System="CRD", AsHost="SAPCRMDEV" Nr="04", GwHost="SAPCRMDEV", GwService="sapgw04"
    2EETQ231 RFC Login failed
    2 ETQ399 SYSTEM HEALTH MANAGER: Checking instance number 4 for used ports on host 'SAPCRMDEV'.
    3 ETQ399 SYSTEM HEALTH MANAGER: Port 3204 appears to be unused.
    3 ETQ399 SYSTEM HEALTH MANAGER: Port 3304 appears to be unused.
    3 ETQ399 SYSTEM HEALTH MANAGER: Port 3604 appears to be unused.
    3 ETQ399 SYSTEM HEALTH MANAGER: Port 3904 appears to be unused.
    3 ETQ399 SYSTEM HEALTH MANAGER: Port 8104 appears to be unused.
    3 ETQ399 SYSTEM HEALTH MANAGER: Port 30401 appears to be unused.
    3 ETQ399 SYSTEM HEALTH MANAGER: Port 50419 appears to be unused.
    1 ETQ399 SAPCONTROL MANAGER: restartService with kernelstate: 0
    3 ETQ120 20150113094040: PID 8848 execute 'F:\SUM\SUM\abap\exe\sapcontrol.exe -prot PIPE -host SAPCRMDEV -nr 04 -function RestartService', output written to 'F:\SUM\SUM\abap\log\SAPup.ECO'.
    3 ETQ123 20150113094040: PID 8848 exited with status 0 (time 0.000 real)
    1 ETQ399 SYSTEM MANAGER: SAPControl tries to control all instances.
    1 ETQ399 SYSTEM MANAGER: Calling getInstances.
    1 ETQ399 SYSTEM MANAGER: found instance for action START : Instance Number: 04
    1 ETQ399 SYSTEM MANAGER: ControlInstance with SAPCONTOL action START for instance 04.
    1 ETQ399 SYSTEM HEALTH MANAGER: running preCheck for instance 04 on host SAPCRMDEV.
    2 ETQ399 SYSTEM HEALTH MANAGER: Checking instance number 4 for used ports on host 'SAPCRMDEV'.
    3 ETQ399 SYSTEM HEALTH MANAGER: Port 3204 appears to be unused.
    3 ETQ399 SYSTEM HEALTH MANAGER: Port 3304 appears to be unused.
    3 ETQ399 SYSTEM HEALTH MANAGER: Port 3604 appears to be unused.
    3 ETQ399 SYSTEM HEALTH MANAGER: Port 3904 appears to be unused.
    3 ETQ399 SYSTEM HEALTH MANAGER: Port 8104 appears to be unused.
    3 ETQ399 SYSTEM HEALTH MANAGER: Port 30401 appears to be unused.
    3 ETQ399 SYSTEM HEALTH MANAGER: Port 50419 appears to be unused.
    1 ETQ399 SYSTEM HEALTH MANAGER: call test rfc.
    4 ETQ399 Set RFC variables for shadow connect:
    4 ETQ399 System-nr = '04', GwService = 'sapgw04' Client = '000'
    1 ETQ359 RFC Login to: System="CRD", AsHost="SAPCRMDEV" Nr="04", GwHost="SAPCRMDEV", GwService="sapgw04"
    2EETQ231 RFC Login failed
    1 ETQ399 SYSTEM HEALTH MANAGER: check for instance processlist.
    1 ETQ399 SAPCONTROL MANAGER: getProcessList with host: SAPCRMDEV and instance: 04
    3 ETQ120 20150113094113: PID 8484 execute 'F:\SUM\SUM\abap\exe\sapcontrol.exe -format script -prot PIPE -host SAPCRMDEV -nr 04 -function GetProcessList', output written to 'F:\SUM\SUM\abap\log\SAPup.ECO'.
    3 ETQ123 20150113094113: PID 8484 exited with status 4 (time 0.000 real)
    1 ETQ399 SYSTEM HEALTH MANAGER: System is down, go on with start action
    1 ETQ399 SAPCONTROL MANAGER: startWait with host: SAPCRMDEV and instance: 04
    3 ETQ120 20150113094113: PID 7860 execute 'F:\SUM\SUM\abap\exe\sapcontrol.exe -prot PIPE -host SAPCRMDEV -nr 04 -function StartWait 300 10', output written to 'F:\SUM\SUM\abap\log\SAPup.ECO'.
    3 ETQ123 20150113094153: PID 7860 exited with status 2 (time 0.000 real)
    1 ETQ399 SYSTEM MANAGER: SAPControl action START failed for instance 04 ('SAPCONTROL MANAGER: call (sapcontrol.exe) failed with return code '-1'
    1 ETQ399 SYSTEM MANAGER: CheckSystemStatus.
    1 ETQ399 SAPCONTROL MANAGER: getProcessList with host: SAPCRMDEV and instance: 04
    3 ETQ120 20150113094153: PID 8728 execute 'F:\SUM\SUM\abap\exe\sapcontrol.exe -format script -prot PIPE -host SAPCRMDEV -nr 04 -function GetProcessList', output written to 'F:\SUM\SUM\abap\log\SAPup.ECO'.
    3 ETQ123 20150113094153: PID 8728 exited with status 0 (time 0.000 real)
    1EETQ399 SYSTEM MANAGER: START of mandatory instance 04 on server SAPCRMDEV has failed
    2EETQ399 Starting shadow instance failed
    1EETQ399 Last error code set is: Shadow instance couldn't be started, check 'STARTSSC.LOG' and 'DEVTRACE.LOG': Process F:\SUM\SUM\abap\exe/sapcontrol.exe exited with 2, see 'F:\SUM\SUM\abap\log\SAPup.ECO' for details
    1EETQ204 Upgrade phase "START_SHDI_PREPUT" aborted with severe errors ("20150113094153")
    DEVTRACE:
    trc file: "dev_disp", trc level: 1, release: "721"
    sysno      04
    sid        CRD
    systemid   562 (PC with Windows NT)
    relno      7210
    patchlevel 0
    patchno    400
    intno      20020600
    make       multithreaded, Unicode, 64 bit, optimized
    profile    F:\SUM\SUM\abap\system\CRD\SYS\profile\CRD_DVEBMGS04_SAPCRMDEV
    pid        8608
    kernel runs with dp version 139000(ext=121000) (@(#) DPLIB-INT-VERSION-139000-UC)
    length of sys_adm_ext is 592 bytes
    *** SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (04 8608) [dpxxdisp.c   1323]
    shared lib "dw_xml.dll" version 400 successfully loaded
    shared lib "dw_xtc.dll" version 400 successfully loaded
    shared lib "dw_stl.dll" version 400 successfully loaded
    shared lib "dw_gui.dll" version 400 successfully loaded
    shared lib "dw_mdm.dll" version 400 successfully loaded
    shared lib "dw_rndrt.dll" version 400 successfully loaded
    shared lib "dw_abp.dll" version 400 successfully loaded
    shared lib "dw_sym.dll" version 400 successfully loaded
    shared lib "dw_aci.dll" version 400 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3904
    rdisp/dynamic_wp_check : 0
    rdisp/calculateLoadAverage : 1
    Tue Jan 13 08:53:56 2015
    *** WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 4 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  6525]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    display_tcp_ip: 0
    Set Check Logoff Flags to 0x0
    DpIPCInit2: write dp-profile-values into sys_adm_ext
    DpIPCInit2: start server >SAPCRMDEV_CRD_04                        <
    DpShMCreate: sizeof(wp_adm)  42864 (2256)
    DpShMCreate: sizeof(tm_adm)  5517056 (27448)
    DpShMCreate: sizeof(wp_ca_adm)  64000 (64)
    DpShMCreate: sizeof(appc_ca_adm) 64000 (64)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/16/1392064/1392080
    DpShMCreate: sizeof(comm_adm)  1392080 (2768)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)  0 (296)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)  0 (80)
    DpShMCreate: sizeof(vmc_adm)  0 (2160)
    DpShMCreate: sizeof(wall_adm)  (41664/42896/64/192)
    DpShMCreate: sizeof(gw_adm) 48
    DpShMCreate: sizeof(j2ee_adm) 3952
    DpShMCreate: SHM_DP_ADM_KEY  (addr: 00000000073B0050, size: 7182832)
    DpShMCreate: allocated sys_adm at 00000000073B0060
    DpShMCreate: allocated wp_adm_list at 00000000073B30B0
    DpShMCreate: allocated wp_adm at 00000000073B32A0
    DpShMCreate: allocated tm_adm_list at 00000000073BDA20
    DpShMCreate: allocated tm_adm at 00000000073BDA70
    DpShMCreate: allocated wp_ca_adm at 0000000007900980
    DpShMCreate: allocated appc_ca_adm at 0000000007910390
    DpShMCreate: allocated comm_adm at 000000000791FDA0
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 0000000007A73B80
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated gw_adm at 0000000007A73C30
    DpShMCreate: allocated j2ee_adm at 0000000007A73C70
    DpShMCreate: allocated ca_info at 0000000007A74BF0
    DpShMCreate: allocated wall_adm at 0000000007A74C80
    DpCommAttachTable: attached comm table (header=000000000791FDA0/ft=000000000791FDB0)
    DpSysAdmIntInit: initialize sys_adm
    rdisp/test_roll : roll strategy is DP_NORMAL_ROLL
    dia token check not active (8 token)
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    DpRqQInit: keep protect_queue / slots_per_queue 0 / 2001 in sys_adm
    rdisp/queue_size_check_value :  -> on,50,30,40,500,50,500,80
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> EsILock: use Mutex for locking
    <ES> InitFreeList
    <ES> block size is 4096 kByte.
    <ES> Info: em/initial_size_MB( 8191MB) not multiple of em/blocksize_KB( 4096KB)
    <ES> Info: em/initial_size_MB rounded up to 8192MB
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    *** ERROR => <EsNT> CreateFileMapping name=Global\ES_SEG_04_003 ,size=2044 MB, error=1455 [esnti.c      1278]
    * Memory diagnostic                                 *
    Systeminformation
    Processor-Typ             : Processor-Count           : 4
    Operating System          : NT 6.1, Build 7601
    Service Pack              : Service Pack 1
    NT Pagefile Informations
    Config. minimum size      :     0 K
    Config. maximum size      :     0 K
    Avail.  maximum size      :     0 K
    | Num|Pagefile                      |  Min.Size|  Max.Size| Avail.Max| Curr.Size|
    |----|------------------------------|----------|----------|----------|----------|
    NT Task Manager Informations
    Total Handles             :    42631
    Total Threads             :     1579
    Total Processes           :      124
    Commit Charge Total       : 38104688 K
    Commit Charge Limit       : 39413172 K
    Commit Charge Peak        : 38104688 K
    Phys.Memory Total         : 16776696 K
    Phys.Memory Available     :  4975120 K
    File Cache                :   260104 K
    Kernel Memory Total       :   370268 K
    Kernel Memory Paged       :   284740 K
    Kernel Memory Nonpaged    :    85528 K
    Memory usage of current process
    Total virt.address space  : 0000008589934464 K
    Avail.virt.address space  : 0000008588857984 K
    Private Pages             :        0 K
    Total heap size           :    14399 K
    Virtual memory regions    :       42 K
    Uncommitted heap memory   :     5660 K
    Allocated heap memory     :     7949 K
    Moveable heap memory      :        0 K
    DDE shared heap memory    :     4372 K
    Memory usage of all processes
    | PID|Image               |Instance   |  Work.Set|   WS Peak|Priv.Pages|   PP Peak|Pg Fault|
    |----|--------------------|-----------|----------|----------|----------|----------|--------|
    |5088|conhost.exe         |           |    1228 K|    3148 K|    1204 K|    7952 K|       0|
    |6672|conhost.exe         |           |    1228 K|    3156 K|    1204 K|   35924 K|       0|
    |6416|conhost.exe         |           |    1228 K|    3144 K|    1204 K|   35924 K|       0|
    |5148|taskhost.exe        |           |    6320 K|   10896 K|    7908 K|    8600 K|     235|
    |2576|rdpclip.exe         |           |    6224 K|    8708 K|    2968 K|    3008 K|       3|
    |5664|Dwm.exe             |           |    3564 K|    5576 K|    1884 K|    2064 K|       8|
    |7232|Explorer.EXE        |           |   28532 K|   45316 K|   30488 K|   32508 K|      26|
    |5860|vmtoolsd.exe        |           |    6004 K|   12512 K|    6204 K|    6296 K|      13|
    |3824|MagicDisc.exe       |           |    3208 K|    6812 K|    3000 K|    3176 K|       1|
    |5600|mmc.exe             |           |    9244 K|   28268 K|   21772 K|   21892 K|      14|
    |7952|msg_server.EXE      |[MS] CRD_00|   27324 K|   32816 K|   34368 K|   34636 K|       8|
    |8020|conhost.exe         |           |    1244 K|    3152 K|    1216 K|    1332 K|       0|
    |5756|disp+work.EXE       |[DP] CRD_00|   25144 K|  126440 K|  107700 K|  109536 K|      32|
    |3588|igswd.EXE           |[**] CRD_00|    3740 K|    7808 K|    5252 K|    6364 K|       2|
    |5844|conhost.exe         |           |    1300 K|    3340 K|    1224 K|    1340 K|       1|
    |6536|conhost.exe         |           |    1244 K|    3172 K|    1216 K|    1332 K|       0|
    |7272|igsmux.exe          |           |   30968 K|   30968 K|   37552 K|   37552 K|       9|
    |7636|igspw.exe           |           |   30356 K|   38880 K|   39248 K|   39404 K|      37|
    |1316|igspw.exe           |           |   30408 K|   38924 K|   39428 K|   39584 K|      37|
    | 732|gwrd.EXE            |[GW] CRD_00|   11736 K|   20188 K|   15120 K|   15420 K|       7|
    |3908|icman.EXE           |[**] CRD_00|  109388 K|  118116 K|  116920 K|  117744 K|      29|
    |7264|disp+work.EXE       |[WP] CRD_00|  139528 K|  444572 K|  133204 K|  242864 K|    2417|
    |7620|disp+work.EXE       |[WP] CRD_00|   34728 K|  506312 K|  121364 K|  368924 K|    1174|
    |3620|disp+work.EXE       |[WP] CRD_00|  141068 K|  309044 K|  129432 K|  243256 K|    2035|
    |7140|disp+work.EXE       |[WP] CRD_00|  148012 K|  289512 K|  125064 K|  257388 K|    2123|
    |7296|disp+work.EXE       |[WP] CRD_00|   29664 K|   77940 K|  117004 K|  117272 K|      19|
    |5884|disp+work.EXE       |[WP] CRD_00|  149536 K|  592744 K|  127968 K|  309976 K|   11517|
    |5236|disp+work.EXE       |[WP] CRD_00|  148264 K|  259552 K|  133824 K|  155352 K|    3329|
    |7864|disp+work.EXE       |[WP] CRD_00|  130780 K|  307832 K|  135488 K|  294336 K|    2179|
    |7980|disp+work.EXE       |[WP] CRD_00|   32088 K|  239100 K|  118672 K|  118940 K|      65|
    |3996|disp+work.EXE       |[WP] CRD_00|   28664 K|   57556 K|  116188 K|  116344 K|      14|
    |6140|disp+work.EXE       |[WP] CRD_00|   31348 K|  105800 K|  118016 K|  118172 K|      26|
    |7968|disp+work.EXE       |[WP] CRD_00|   27988 K|   54684 K|  115096 K|  115240 K|      13|
    |7584|disp+work.EXE       |[WP] CRD_00|   35656 K|  150072 K|  123180 K|  132752 K|      71|
    |7856|disp+work.EXE       |[WP] CRD_00|   75496 K|  397344 K|  128608 K|  257352 K|     352|
    |6992|disp+work.EXE       |[WP] CRD_00|   34324 K|   97024 K|  121640 K|  121904 K|      31|
    |8032|disp+work.EXE       |[WP] CRD_00|   31456 K|   85396 K|  119484 K|  119632 K|      24|
    |6196|disp+work.EXE       |[WP] CRD_00|   35688 K|  213644 K|  123180 K|  123632 K|      80|
    | 628|disp+work.EXE       |[WP] CRD_00|   30756 K|   73208 K|  118884 K|  119040 K|      20|
    |3684|disp+work.EXE       |[WP] CRD_00|   41876 K|   69024 K|  117412 K|  117688 K|     166|
    |5456|disp+work.EXE       |[WP] CRD_00|   28516 K|   55980 K|  116140 K|  116296 K|      13|
    |5580|jcontrol.EXE        |[**] CDJ_02|    4960 K|   18960 K|   11776 K|   16620 K|       7|
    |3608|igswd.EXE           |[**] CDJ_02|    2948 K|    7460 K|    4120 K|    5680 K|       2|
    |7480|conhost.exe         |           |    1236 K|    3168 K|    1212 K|    1332 K|       0|
    |4768|conhost.exe         |           |    1248 K|    3168 K|    1216 K|    1332 K|       0|
    |5760|igsmux.exe          |           |   21512 K|   21512 K|   27372 K|   27372 K|       6|
    |6996|igspw.exe           |           |   30516 K|   39044 K|   39524 K|   39716 K|      37|
    |3508|igspw.exe           |           |   30244 K|   38752 K|   38560 K|   38712 K|      37|
    |3368|msg_server.EXE      |[MS] CDJ_03|    9588 K|   15004 K|   15408 K|   15560 K|       3|
    |7260|enserver.EXE        |[**] CDJ_03|   17396 K|   25324 K|   62652 K|   62800 K|       6|
    |2376|conhost.exe         |           |    1240 K|    3144 K|    1212 K|    1332 K|       0|
    |6884|conhost.exe         |           |    1244 K|    3148 K|    1216 K|    1332 K|       0|
    |4264|cmd.exe             |           |    1132 K|    3176 K|    2372 K|    3468 K|       0|
    |5196|conhost.exe         |           |    1472 K|    3840 K|    1332 K|    1452 K|       1|
    |5800|jlaunch.exe         |           |  157752 K|  236956 K|  411928 K|  423684 K|      96|
    |3636|jlaunch.exe         |           |  892232 K|  909720 K| 2438664 K| 2459780 K|     428|
    |5216|jlaunch.exe         |           |  161616 K|  175812 K|  209044 K|  211344 K|      64|
    |5928|cmd.exe             |           |    1176 K|    3156 K|    2408 K|    3504 K|       0|
    |7672|conhost.exe         |           |    1448 K|    3600 K|    1312 K|    1428 K|       1|
    |2732|java.exe            |           |  300320 K|  328740 K|  405232 K|  422776 K|     161|
    |5192|iexplore.exe        |           |   16248 K|   31204 K|   11508 K|   12872 K|      11|
    |6364|IEXPLORE.EXE        |           |   16700 K|   35472 K|   15356 K|   19092 K|      11|
    | 256|javaw.exe           |           |  130904 K|  187428 K|  293136 K|  355476 K|     288|
    |2812|SAPup.exe           |           |  151960 K|  372148 K|  150948 K|  367436 K|     848|
    |6876|conhost.exe         |           |    1112 K|    3032 K|    1176 K|    3180 K|       0|
    |2276|saposcol.exe        |           |   18312 K|   22844 K|   20364 K| 1390432 K|      71|
    |6908|sapstartsrv.exe     |           |   84424 K|   84424 K|  109840 K|  169528 K|      52|
    |9108|sapcontrol.exe      |           |   12176 K|   12176 K|    9588 K|    9588 K|       3|
    |3504|conhost.exe         |           |    3072 K|    3072 K|    1196 K|   34964 K|       0|
    |5628|msg_server.EXE      |[MS] CRD_04|   14264 K|   14264 K|   15384 K|   15388 K|       3|
    |5572|conhost.exe         |           |    3108 K|    3108 K|    1212 K|    1212 K|       0|
    |8888|enserver.EXE        |[**] CRD_04|   41128 K|   41128 K|   17576 K|   17580 K|      10|
    |8412|conhost.exe         |           |    3104 K|    3104 K|    1216 K|    1216 K|       0|
    |8608|disp+work.EXE       |           |   49264 K|   49264 K|   80656 K|   85836 K|      20|
    |9088|conhost.exe         |           |    3116 K|    3116 K|    1212 K|    1212 K|       0|
    |----|--------------------|-----------|----------|----------|----------|----------|--------|
    |    |Sum                 |           | 3883240 K|**********| 7343856 K|**********|********|
    Tue Jan 13 08:53:57 2015
    *** Error 11 while initializing OS dependent part.
    *** ERROR => DpEmInit: EmInit (1) [dpxxdisp.c   10995]
    *** ERROR => DpMemInit: DpEmInit (-1) [dpxxdisp.c   10909]
    *** DP_FATAL_ERROR => DpSapEnvInit: DpMemInit
    *** DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=1
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Jan 13 08:54:07 2015
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)   Tue Jan 13 13:54:07 2015
    ========================
    No Type  Pid    Status  Cause Start Rstr  Err Sem Time Program          Cl  User         Action                    Table
    Dispatcher Queue Statistics   Tue Jan 13 13:54:07 2015
    ===========================
    +------+--------+--------+--------+------------+------------+
    |  Typ |    now |   high |    max | writes     |  reads     |
    +------+--------+--------+--------+------------+------------+
    | NOWP |      0 |      0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  DIA |      0 |      0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  UPD |      0 |      0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  ENQ |      0 |      0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  BTC |      0 |      0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  SPO |      0 |      0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  UP2 |      0 |      0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    max_rq_id  0
    wake_evt_udp_now 0
    wake events       total     0,  udp     0 (  0%),  shm     0 (  0%)
    since last update total     0,  udp     0 (  0%),  shm     0 (  0%)
    Dump of tm_adm structure:   Tue Jan 13 13:54:07 2015
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks   Tue Jan 13 13:54:07 2015
    =============================
    Slots: 1000, Used: 0, Max: 0
    +------+--------------+----------+-------------+
    |   id | owner        |   pid    | eyecatcher  |
    +------+--------------+----------+-------------+
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=1
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Jan 13 08:54:12 2015
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >SAPCRMDEV_CRD_04                        < (normal)
    DpJ2eeDisableRestart
    DpHalt: switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    DpHalt: stop work processes
    DpHalt: terminate gui connections
    DpHalt: wait for end of work processes
    DpHalt: not attached to the message server
    DpHalt: cleanup EM
    EsCleanup( )
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 8608) [dpxxdisp.c   11819]
    DpHalt: Good Bye .....
    trc file: "dev_ms", trc level: 1, release: "721"
    [Thr 8464] Tue Jan 13 08:53:49 2015
    [Thr 8464] ms/http_max_clients = 500 -> 500
    [Thr 8464] MsSSetTrcLog: trc logging active, max size = 52428800 bytes
    systemid   562 (PC with Windows NT)
    relno      7210
    patchlevel 0
    patchno    327
    intno      20020600
    make       multithreaded, Unicode, 64 bit, optimized
    pid        5628
    [Thr 8464] ***LOG Q01=> MsSInit, MSStart (Msg Server 1 5628) [msxxserv.c   2305]
    [Thr 8464] MsInitAclInfo: acl file F:\SUM\SUM\abap\system\CRD\SYS\global\ms_acl_info.DAT not found, unrestricted access
    [Thr 8464] MsGetOwnIpAddr: my host addresses are :
    [Thr 8464]   1 : [192.168.200.142] SAPCRMDEV.CRESTRON.CRESTRON.com (HOSTNAME)
    [Thr 8464]   2 : [127.0.0.1] SAPCRMDEV.CRESTRON.CRESTRON.com (LOCALHOST)
    [Thr 8464] MsHttpInit: full qualified hostname = SAPCRMDEV.CRESTRON.CRESTRON.com
    [Thr 8464] HTTP logging is switch off
    [Thr 8464] MsHttpOwnDomain: own domain[1] = CRESTRON.CRESTRON.com
    [Thr 8464] *** I listen to port 3604 (3604) ***
    [Thr 8464] *** I listen to internal port 3904 (3904) ***
    [Thr 8464] CUSTOMER KEY: >G0021204657<
    [Thr 8464] build version=721.2014.07.17
    Thanks,
    Kavitha Rajan.

    Hi Kavitha,
    Hope you are doing good.
    Looks like a memory issue:
    EsNT> Memory Reset disabled as NT default
    *** ERROR => <EsNT> CreateFileMapping name=Global\ES_SEG_04_003 ,size=2044 MB, error=1455 [esnti.c      1278]
    Tue Jan 13 08:53:57 2015
    *** Error 11 while initializing OS dependent part.
    *** ERROR => DpEmInit: EmInit (1) [dpxxdisp.c   10995]
    *** ERROR => DpMemInit: DpEmInit (-1) [dpxxdisp.c   10909]
    *** DP_FATAL_ERROR => DpSapEnvInit: DpMemInit
    First restart Windows and then try to start the SAP system from the MMC.If that doesn't help then increase the pagefile size and restart the Windows.
    Kind Regards,
    Hemanth
    SAP AGS

  • EHP 7 upgrade - Got stuck at Pre-processing - urgent help required

    hi Everyone,
    I am upgrading my current ECC 6 EHP 6 system to EHP7. I got stuck in the Pre-processing phase "imports included Add-on and Support Packages into the shadow tables and the new tables". there is no error but it is runnign for more than 15 hours now. i dont even see a latest log showing its progress. The logs got updated 14 hours ago and there is no update after that.
    The shadow instance was down. Main instance is up and running and no Jobs running. I manually started the shadow instance and checked if that will help . but no use. so restarted the SUM tool. it gives a different problem now. I have listed out the current probelms below. please check and advise
    1. SUM tool shows, "ABAP- Starting handshake" - SAPUP.Out erro message (ERROR in GUI communication: Error in network interface: NIEINVAL (0/53 written))
    2.Shadow instance up and running but while trying to login from GUI,it says "rabax during SAPGUI logon". i can see all its WP in 'waiting' status at the OS level
    3.in DB02, "oldest Open Transaction" shows Aug 15 2014 10:30 PM, which means this transaction is there at the DB level for more than 16 hrs now.
    Please help trouleshoot and resolve this. useful inputs will be rewarded immediately
    thanks,
    Shiv

    I have resolved the 1st issue, after killing the SAPup process at os level.
    now, in the SUM tool, it gives the following info,
    Type                    |Name                          |ProcessID|Description
    =============================================================================
    Operating system process|E:\usr\sap\<SID>\SUM\abap\exe\tp|5144     |
                            |"pf=E:\usr\sap\<SID>\SUM\abap\va|         |
                            |\SHDALLIMP.TPP"               |         |
                            |put <SID> "-Dmainimp_proc=2"    |         |
                            |"-Dparallel=2"                |         |
    If additional processes are still running or background jobs are active, the
    program *must* wait for them before it is able to continue.
    Be careful with stopping any process. If a background job is scheduled but not
    running, delete this job using transaction SM37.
    01)  -  Exit program
    02)  *  Check status again
    03)  -  Processes do not exist, continue
    04)  -  Wait for processes to finish
    : Check status again
    TP program is running at OS level. but as already said, no background job runnig in Main instance and the shadow instance was already down. shal i kill this TP process and try with option 03) ?
    please advise
    thanks,
    Shiv

  • Refresh database I need to automise the process

    Hello All,
    I need to automise the process of refreshing the database.
    The scenario is:
    I have one database intance and I need to copy the database to another instance every day.
    How is the best way to do this?
    Regards

    There is a very simple way to do it, as most of the time these days, people want even reporting db into read-write mode for which depending on db size and transactions happening per day, you can consider replication too or other solution like log-shipping\db
    mirroring if you have to have db in read - only mode.
    Below ones are easy to follow if simple ways you want to follow, but first get smtp  access for  this server so that you can use alert for this.
    Create a Sql  Server job to add step by keeping below step A, then add step to wait for backup, copy files steps to be done, like wait T-sql command. Then add final restoration step.
    A). Create a batch file wherein you will be calling first job using osql.
    B). Create a batch file wherein you will be calling restore job using osql.
    1. Create and disable Sql Server Job to backup database. It shd have steps like backup, old files removal, success and failure alerts. Add step to call to Robocopy job for copy backup files.
    2. Create and disable Robocopy backup file copy job to copy backup file to required server again with all options like copy just latest files, enable logging for copy. Add dos command to alert in case of success and failure message. This shd be one db at
    a time so that error and success message can be handled properly. Once copy of file is done then move the backup files to archive folder. Again maintain some retention for all folders where you keep backup files.
    3. Create and disable restore job on required server. Add steps like first kill all session for this db, bring db into single user mode, restore backup db, bring db into multi user mode, add any logins, fix required orphan users{If sql server 2012 use contained
    db to carry on logins and password}, shrink log files to remove unwanted log space, success and failure accordingly. Once backup file gets restored then move the backup files to archive folder, so that by mistake also, nobody shd be able to restore it.
    Thanks,
    Santosh Singh

  • Need to automate the process of partial orders-deliveries

    Hi experts,
    I need to automate the process of partial order deliveries in VL01N.
    I checked few BAPI for the above requirement.
    BAPI_OUTB_DELIVERY_CHANGE
    BAPI_OUTB_DELIVERY_SAVEREPLICA
    BAPI_OUTB_DELIVERY_CONFIRM_DEC
    But have no clue ,which would be relevent.
    If any one of you have worked on any such requirement before,please let know,which BAPI i can use in this development.
    Thanks in advance.
    Meenakshi

    Hi
    Try with function modules WS_DELIVERY_UPDATE and RV_DELIVERY_CREATE.
    Regards
    Srilaxmi

  • SP11 upgrade is stuck in Pre-Processing phase MAIN_INIT/REPACHK_CLONE due to inactive object

    Hi ,
    SP11 upgrade is stuck in Pre-Processing phase MAIN_INIT/REPACHK_CLONE with the following errors
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    REPACHK ERRORS and RETURN CODE in GET_INACTIVE_SAP_OBJECTS.SMG
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    4 ETG040 Start time.....: "17.06.2014" "00:13:43"
    4 ETG039 -------------------------------------------------------------------------
    4 ETG010 "533 inactive objects found" " " " " " "
    4 ETG010 "257 inactive SAP objects" "colliding with import queue found." " " " "
    4 ETG010 "Please contact the development team" "to either activate or discard the inactive object." " " " "
    2EETG010 "The following objects are inactive" "in the system:" " " " "
    2EETG010 "LIMU" "CINC" "/1WDA/CASTANDARD==============CCDEF" " "
    2EETG010 "LIMU" "CINC" "/1WDA/CASTANDARD==============CCIMP" " "
    2EETG010 "LIMU" "CINC" "/1WDA/CBUSINESS_GRAPHICS======CCIMP" " "
    2EETG010 "LIMU" "CINC" "CL_AC_CUSTOM_TEMPLATE=========CCAU" " "
    2EETG010 "LIMU" "CINC" "CL_AC_MO_TEMPLATE=============CCAU" " "
    2EETG010 "LIMU" "CLSD" "CL_AC_MO_TEMPLATE" " "
    2EETG010 "LIMU" "CPRO" "CL_AC_MO_TEMPLATE" " "
    2EETG010 "LIMU" "CPUB" "CL_AC_MO_TEMPLATE" " "
    2EETG010 "LIMU" "CINC" "CL_AC_TEMPLATE_REPOSITORY=====CCAU" " "
    2EETG010 "LIMU" "CLSD" "CL_AC_TEMPLATE_REPOSITORY" " "
    2EETG010 "LIMU" "CPRI" "CL_AC_TEMPLATE_REPOSITORY" " "
    2EETG010 "LIMU" "CPRO" "CL_AC_TEMPLATE_REPOSITORY" " "
    2EETG010 "LIMU" "CPUB" "CL_AC_TEMPLATE_REPOSITORY" " "
    2EETG010 "LIMU" "CINC" "CL_AI_SC_REFRESH==============CCIMP" " "
    2EETG010 "LIMU" "CINC" "CL_GENERIC_DATALOADER=========CCAU" " "
    2EETG010 "LIMU" "CINC" "CL_WDR_ESCAPE=================CCAU" " "
    2EETG010 "LIMU" "CINC" "CL_WDR_ESCAPE=================CCDEF" " "
    2EETG010 "LIMU" "CINC" "CL_WDR_ESCAPE=================CCIMP" " "
    2EETG010 "LIMU" "CINC" "CL_WDR_ESCAPE=================CCMAC" " "
    2EETG010 "LIMU" "CLSD" "CL_WDR_ESCAPE" " "
    2EETG010 "LIMU" "CPRI" "CL_WDR_ESCAPE" " "
    2EETG010 "LIMU" "CPRO" "CL_WDR_ESCAPE" " "
    2EETG010 "LIMU" "CPUB" "CL_WDR_ESCAPE" " "
    2EETG010 "LIMU" "CINC" "CX_SYSTEM_READ_ERROR==========CCDEF" " "
    2EETG010 "LIMU" "CINC" "CX_SYSTEM_READ_ERROR==========CCIMP" " "
    2EETG010 "LIMU" "CINC" "CX_SYSTEM_READ_ERROR==========CCMAC" " "
    2EETG010 "LIMU" "CLSD" "CX_SYSTEM_READ_ERROR" " "
    2EETG010 "LIMU" "CPRI" "CX_SYSTEM_READ_ERROR" " "
    2EETG010 "LIMU" "CPRO" "CX_SYSTEM_READ_ERROR" " "
    2EETG010 "LIMU" "CPUB" "CX_SYSTEM_READ_ERROR" " "
    2EETG010 "LIMU" "CLSD" "CL_AC_EXTRACTOR" " "
    2EETG010 "LIMU" "CPRI" "CL_AC_EXTRACTOR" " "
    2EETG010 "LIMU" "CPUB" "CL_AC_EXTRACTOR" " "
    2EETG010 "LIMU" "CLSD" "CL_AC_INCIDENT_MANAGER" " "
    2EETG010 "LIMU" "CPUB" "CL_AC_INCIDENT_MANAGER" " "
    2EETG010 "LIMU" "CLSD" "CL_AC_METRIC" " "
    2EETG010 "LIMU" "CPRI" "CL_AC_METRIC" " "
    2EETG010 "LIMU" "CPRO" "CL_AC_METRIC" " "
    2EETG010 "LIMU" "CPUB" "CL_AC_METRIC" " "
    2EETG010 "LIMU" "CLSD" "CL_AC_NOTIFICATION_MANAGER" " "
    2EETG010 "LIMU" "CPUB" "CL_AC_NOTIFICATION_MANAGER" " "
    2EETG010 "LIMU" "CLSD" "CL_AC_REACTIONS_MANAGER" " "
    2EETG010 "LIMU" "CPUB" "CL_AC_REACTIONS_MANAGER" " "
    2EETG010 "LIMU" "CLSD" "CL_AC_SE61_DOC_MANAGER" " "
    2EETG010 "LIMU" "CPUB" "CL_AC_SE61_DOC_MANAGER" " "
    2EETG010 "LIMU" "CLSD" "CL_AC_TEMPLATE_FACTORY" " "
    2EETG010 "LIMU" "CPUB" "CL_AC_TEMPLATE_FACTORY" " "
    2EETG010 "LIMU" "CLSD" "CL_AGS_DVM_SCH_ASSISTANCE" " "
    2EETG010 "LIMU" "CPUB" "CL_AGS_DVM_SCH_ASSISTANCE" " "
    2EETG010 "LIMU" "CLSD" "CL_AGS_SD_ADAPTER_TOOLS" " "
    2EETG010 "LIMU" "CLSD" "CL_AGS_SERVICE_ENGA" " "
    2EETG010 "LIMU" "CLSD" "CL_AI_CRM_CPY_PROCTYPE_SERVICE" " "
    2EETG010 "LIMU" "CPUB" "CL_AI_CRM_CPY_PROCTYPE_SERVICE" " "
    2EETG010 "LIMU" "METH" "CL_AI_CRM_CPY_PROCTYPE_SERVICECM008" " "
    2EETG010 "LIMU" "METH" "CL_AI_CRM_CPY_PROCTYPE_SERVICECM009" " "
    2EETG010 "LIMU" "CLSD" "CL_AI_SDK_SP_SUSER" " "
    2EETG010 "LIMU" "CLSD" "CL_ALERT_CONSM_CONSTANTS" " "
    2EETG010 "LIMU" "CPUB" "CL_ALERT_CONSM_CONSTANTS" " "
    2EETG010 "LIMU" "CLSD" "CL_BUFFERS_FORCC" " "
    2EETG010 "LIMU" "CPUB" "CL_BUFFERS_FORCC" " "
    2EETG010 "LIMU" "CLSD" "CL_DSWP_NA_NOTIF_ADMIN" " "
    2EETG010 "LIMU" "CLSD" "CL_E2E_TWB_EXTRACTOR" " "
    2EETG010 "LIMU" "CLSD" "CL_GENERIC_DATALOADER" " "
    2EETG010 "LIMU" "CLSD" "CL_HDB_DBH_DATA_VOLUMES" " "
    2EETG010 "LIMU" "CPRO" "CL_HDB_DBH_DATA_VOLUMES" " "
    2EETG010 "LIMU" "CPUB" "CL_HDB_DBH_DATA_VOLUMES" " "
    2EETG010 "LIMU" "CLSD" "CL_HDB_DBH_EXTRACTOR" " "
    2EETG010 "LIMU" "CPRO" "CL_HDB_DBH_EXTRACTOR" " "
    2EETG010 "LIMU" "CPUB" "CL_HDB_DBH_EXTRACTOR" " "
    2EETG010 "LIMU" "CLSD" "CL_HDB_DBH_INDX_SERV_HEAP" " "
    2EETG010 "LIMU" "CPRO" "CL_HDB_DBH_INDX_SERV_HEAP" " "
    2EETG010 "LIMU" "CPUB" "CL_HDB_DBH_INDX_SERV_HEAP" " "
    2EETG010 "LIMU" "CLSD" "CL_HDB_DBH_INTERNAL_EVENTS" " "
    2EETG010 "LIMU" "CPRO" "CL_HDB_DBH_INTERNAL_EVENTS" " "
    2EETG010 "LIMU" "CPUB" "CL_HDB_DBH_INTERNAL_EVENTS" " "
    2EETG010 "LIMU" "CLSD" "CL_HDB_DBH_MEMORY_STATISTICS" " "
    2EETG010 "LIMU" "CPRO" "CL_HDB_DBH_MEMORY_STATISTICS" " "
    2EETG010 "LIMU" "CPUB" "CL_HDB_DBH_MEMORY_STATISTICS" " "
    2EETG010 "LIMU" "CLSD" "CL_HDB_DBH_RESOURCE_UTILIZAT" " "
    2EETG010 "LIMU" "CPRO" "CL_HDB_DBH_RESOURCE_UTILIZAT" " "
    2EETG010 "LIMU" "CPUB" "CL_HDB_DBH_RESOURCE_UTILIZAT" " "
    2EETG010 "LIMU" "CLSD" "CL_HDB_DBH_VOLUME_FILES" " "
    2EETG010 "LIMU" "CPRO" "CL_HDB_DBH_VOLUME_FILES" " "
    2EETG010 "LIMU" "CPUB" "CL_HDB_DBH_VOLUME_FILES" " "
    2EETG010 "LIMU" "CLSD" "CL_HDB_RDI_META" " "
    2EETG010 "LIMU" "CLSD" "CL_LMDB_CS_UTIL" " "
    2EETG010 "LIMU" "CLSD" "CL_SISE_MAIN_ASSIST" " "
    2EETG010 "LIMU" "CLSD" "CL_SMSY_OPPHASE_GROUP_EDITOR32" " "
    2EETG010 "LIMU" "CLSD" "CL_SM_E2EREP_SETUP" " "
    2EETG010 "LIMU" "CLSD" "CL_SVCP_SETUP" " "
    2EETG010 "LIMU" "CLSD" "CL_WDR_TEXT_FORMATTER" " "
    2EETG010 "LIMU" "CLSD" "CX_E2E_DPC_SETUP" " "
    2EETG010 "LIMU" "CPRI" "CL_AC_METRIC_REPOSITORY" " "
    2EETG010 "LIMU" "CPRI" "CL_AC_TEMPLATE" " "
    2EETG010 "LIMU" "CPRO" "CL_AC_TEMPLATE" " "
    2EETG010 "LIMU" "CPRI" "CL_AI_CRM_CPY_PROCTYPE" " "
    2EETG010 "LIMU" "CPRI" "CL_AI_SDK_SP_SUSER" " "
    2EETG010 "LIMU" "CPRI" "CL_ALRT_SELF_MON_LANDSCAPE" " "
    2EETG010 "LIMU" "CPRI" "CL_DSWP_NA_NOTIF_ADMIN" " "
    2EETG010 "LIMU" "CPRI" "CL_E2EEFWK_SETUP" " "
    2EETG010 "LIMU" "CPRI" "CL_E2E_DPC_SETUP" " "
    2EETG010 "LIMU" "CPRI" "CL_GENERIC_DATALOADER" " "
    2EETG010 "LIMU" "CPRI" "CL_SMSY_OPPHASE_GROUP_EDITOR32" " "
    2EETG010 "LIMU" "CPRI" "CL_SM_E2EREP_SETUP" " "
    2EETG010 "LIMU" "CPRI" "CL_WDR_TEXT_FORMATTER" " "
    2EETG010 "LIMU" "CPRO" "CL_AC_ASSIGNMENT_REPOSITORY" " "
    2EETG010 "LIMU" "CPRO" "CL_GENERIC_DATALOADER" " "
    2EETG010 "LIMU" "CPRO" "CL_HDB_RDI_META" " "
    2EETG010 "LIMU" "CPRO" "CL_SMSY_OPPHASE_GROUP_EDITOR32" " "
    2EETG010 "LIMU" "CPRO" "CL_SM_E2EREP_SETUP" " "
    2EETG010 "LIMU" "CPUB" "CL_AGS_SD_ADAPTER_TOOLS" " "
    2EETG010 "LIMU" "CPUB" "CL_AGS_SERVICE_ENGA" " "
    2EETG010 "LIMU" "CPUB" "CL_AI_SDK_SP_SUSER" " "
    2EETG010 "LIMU" "CPUB" "CL_DSWP_NA_NOTIF_ADMIN" " "
    2EETG010 "LIMU" "CPUB" "CL_E2E_TWB_EXTRACTOR" " "
    2EETG010 "LIMU" "CPUB" "CL_GENERIC_DATALOADER" " "
    2EETG010 "LIMU" "CPUB" "CL_HDB_RDI_META" " "
    2EETG010 "LIMU" "CPUB" "CL_LMDB_CS_UTIL" " "
    2EETG010 "LIMU" "CPUB" "CL_SISE_MAIN_ASSIST" " "
    2EETG010 "LIMU" "CPUB" "CL_SMSY_OPPHASE_GROUP_EDITOR32" " "
    2EETG010 "LIMU" "CPUB" "CL_SM_E2EREP_SETUP" " "
    2EETG010 "LIMU" "CPUB" "CL_SVCP_SETUP" " "
    2EETG010 "LIMU" "CPUB" "CL_WDR_TEXT_FORMATTER" " "
    2EETG010 "LIMU" "CPUB" "CX_E2E_DPC_SETUP" " "
    2EETG010 "R3TR" "ENHO" "AGS_GET_JOB_DOC_ATTR" " "
    2EETG010 "LIMU" "FUNC" "AGS_DSWP_SOLMAN_INFO" " "
    2EETG010 "LIMU" "REPS" "LAGS_DSWP_REPORTING$01" " "
    2EETG010 "LIMU" "FUNC" "AGS_SISE_MANU_NOTE_ACTS" " "
    2EETG010 "LIMU" "REPS" "LAGS_SISE_UTIL$02" " "
    2EETG010 "LIMU" "REPS" "LAGS_SISE_UTILF07" " "
    2EETG010 "LIMU" "REPS" "SAPLAGS_SISE_UTIL" " "
    2EETG010 "LIMU" "FUNC" "CCMSBI_DB_UPDATER_REMOTE" " "
    2EETG010 "LIMU" "FUNC" "CCMSBI_GEN_TESTDATA_SETUP" " "
    2EETG010 "LIMU" "FUNC" "SMD_DATA_LOADER_ALM" " "
    2EETG010 "LIMU" "REPS" "LSCSM_BI_DATALOAD$28" " "
    2EETG010 "LIMU" "REPS" "LSCSM_BI_DATALOAD$32" " "
    2EETG010 "LIMU" "REPS" "LSCSM_BI_DATALOADF01" " "
    2EETG010 "LIMU" "REPS" "LSCSM_BI_DATALOADU32" " "
    2EETG010 "LIMU" "REPS" "LSCSM_BI_DATALOADV28" " "
    2EETG010 "LIMU" "FUNC" "DSWP_CI_GET_OBJECTS_BY_GUID" " "
    2EETG010 "LIMU" "FUNC" "DSWP_CREATE_SOLUTION" " "
    2EETG010 "LIMU" "FUNC" "E2E_STAPI_EXTRACTOR_CE2_V2" " "
    2EETG010 "LIMU" "REPS" "LE2E_FUNC$33" " "
    2EETG010 "LIMU" "FUNC" "E2E_TWB_POST_DATA_LOADER" " "
    2EETG010 "LIMU" "FUNC" "FM_UPD_DELIVERY_AFTER_IMPORT" " "
    2EETG010 "LIMU" "REPS" "LAI_UPDATE_CONTENT$01" " "
    2EETG010 "LIMU" "FUNC" "SMSU_CREATE_TEMP_RFC" " "
    2EETG010 "LIMU" "FUNC" "SMSU_MANAGED_SYSTEM" " "
    2EETG010 "LIMU" "REPS" "LSM_SETUP_API$03" " "
    2EETG010 "LIMU" "REPS" "LSM_SETUP_API$04" " "
    2EETG010 "LIMU" "FUNC" "SMSY_GENERATE_RFCDEST_W_USER" " "
    2EETG010 "LIMU" "REPS" "LSMSY_GENERATE_RFCDEST$07" " "
    2EETG010 "LIMU" "FUNC" "SOLAR_BUSINESS_CONT_DISP_ALV" " "
    2EETG010 "LIMU" "REPS" "LSOLAR05$33" " "
    2EETG010 "LIMU" "FUNC" "STREE_GET_STEXT_FOR_RTYPE_ECTC" " "
    2EETG010 "LIMU" "FUNC" "STREE_GET_STEXT_FOR_RTYPE_TWBC" " "
    2EETG010 "R3TR" "INTF" "IF_ACE_METRIC_EVENT_FILTER" " "
    2EETG010 "R3TR" "INTF" "IF_AC_TEMPLATE" " "
    2EETG010 "R3TR" "INTF" "IF_AC_TEMPLATE_REPOSITORY" " "
    2EETG010 "R3TR" "INTF" "IF_AI_SC_UTIL" " "
    2EETG010 "R3TR" "INTF" "IF_ATW_METRIC" " "
    2EETG010 "R3TR" "INTF" "IF_E2E_EFWK_SETUP" " "
    2EETG010 "R3TR" "INTF" "IWCI_AGS_CC_INCIDENT_DETAILS" " "
    2EETG010 "R3TR" "INTF" "IWCI_AGS_INCIDENT_FAVOURITES" " "
    2EETG010 "R3TR" "INTF" "IWCI_AGS_RBE_IMPORT" " "
    2EETG010 "R3TR" "INTF" "IWCI_AGS_WORK_DVM_SCH_ANALYSIS" " "
    2EETG010 "R3TR" "INTF" "IWCI_POWL_TABLE_COMP" " "
    2EETG010 "R3TR" "INTF" "IWCI_POWL_UI_COMP" " "
    2EETG010 "R3TR" "INTF" "IWCI_WDC_ALRT_DATA_PROVIDER" " "
    2EETG010 "R3TR" "INTF" "IWCI_WDC_ALRT_SELF_MON_OVRVIEW" " "
    2EETG010 "R3TR" "INTF" "IWCI_WDC_CONFIG_WIZARD" " "
    2EETG010 "R3TR" "INTF" "IWCI_WDC_MAI_REP_ALERTS" " "
    2EETG010 "R3TR" "INTF" "IWCI_WDC_MAI_REP_DATA_PROVIDER" " "
    2EETG010 "R3TR" "INTF" "IWCI_WDC_MAI_REP_DFLT_TEMPLATE" " "
    2EETG010 "R3TR" "INTF" "IWCI_WDC_MAI_REP_HIERARCHY" " "
    2EETG010 "R3TR" "INTF" "IWCI_WDC_MAI_REP_INCIDENT" " "
    2EETG010 "R3TR" "INTF" "IWCI_WDC_MAI_REP_METRICS" " "
    2EETG010 "R3TR" "INTF" "IWCI_WDC_MAI_REP_METRIC_DETAIL" " "
    2EETG010 "R3TR" "INTF" "IWCI_WDC_MAI_REP_MONOBJ_DETAIL" " "
    2EETG010 "R3TR" "INTF" "IWCI_WDC_MAI_REP_NOTIFICATION" " "
    2EETG010 "R3TR" "INTF" "IWCI_WDC_MAI_REP_REACTIONS" " "
    2EETG010 "R3TR" "INTF" "IWCI_WDC_MAI_REP_RULE_TYPE" " "
    2EETG010 "R3TR" "INTF" "IWCI_WD_ALRT_MEADEF_CTS" " "
    2EETG010 "R3TR" "INTF" "IWCI_WD_SISE_CUSTOM_TMPL_CONF" " "
    2EETG010 "LIMU" "METH" "CL_ALERT_HTML_REPORT_GENERATORCM002" " "
    2EETG010 "LIMU" "REPS" "AI_BPMON_FIX" " "
    2EETG010 "LIMU" "REPS" "AI_CRM_IM_UPDATE_FROM_SAP_C01" " "
    2EETG010 "LIMU" "REPS" "AI_SDK_SP_GENERATE_BP_V2" " "
    2EETG010 "LIMU" "REPS" "AI_SDK_SP_GENERATE_BP_V2_F01" " "
    2EETG010 "LIMU" "REPS" "AI_SDK_SP_GENERATE_BP_V2_TOP" " "
    2EETG010 "LIMU" "REPS" "CCMSBI_GEN_TESTDATA_SETUP" " "
    2EETG010 "LIMU" "REPS" "CRM_DNO_SERVICE_MONITOR" " "
    2EETG010 "LIMU" "REPS" "LDSWP_BPM_FUNCF08" " "
    2EETG010 "LIMU" "REPS" "RLMDB_TECH_SCEN_DUAL_STACKS" " "
    2EETG010 "LIMU" "REPS" "WDAL_URD2_BUSINESS_GRAPHICS" " "
    2EETG010 "LIMU" "WAPP" "BSPWD_BASICS SCRIPTS.JS" " "
    2EETG010 "LIMU" "WAPP" "THTMLB_SCRIPTS SCRIPTS_DELTAHANDLIN" " "
    2EETG010 "LIMU" "WAPP" "THTMLB_SCRIPTS SCRIPTS_KEYBOARD.JS" " "
    2EETG010 "LIMU" "WDYC" "AGS_CC_INCIDENT_DETAILS COMPONENTCONTROLLER" " "
    2EETG010 "LIMU" "WDYC" "AGS_INCIDENT_FAVOURITES COMPONENTCONTROLLER" " "
    2EETG010 "LIMU" "WDYC" "AGS_RBE_IMPORT COMPONENTCONTROLLER" " "
    2EETG010 "LIMU" "WDYC" "AGS_RBE_IMPORT IMP_FLOW_CONTROLLER" " "
    2EETG010 "LIMU" "WDYC" "AGS_WORK_DVM_SCH_ANALYSIS COMPONENTCONTROLLER" " "
    2EETG010 "LIMU" "WDYV" "AGS_WORK_DVM_SCH_ANALYSIS MAIN" " "
    2EETG010 "LIMU" "WDYV" "AGS_WORK_DVM_SCH_ANALYSIS V_SCOPE_SEL" " "
    2EETG010 "LIMU" "WDYC" "POWL_TABLE_COMP COMPONENTCONTROLLER" " "
    2EETG010 "LIMU" "WDYC" "POWL_UI_COMP COMPONENTCONTROLLER" " "
    2EETG010 "LIMU" "WDYC" "WDC_ALRT_DATA_PROVIDER COMPONENTCONTROLLER" " "
    2EETG010 "LIMU" "WDYC" "WDC_ALRT_DATA_PROVIDER MGVARIANTCONTROLLER" " "
    2EETG010 "LIMU" "WDYV" "WDC_ALRT_DATA_PROVIDER PARAMETERTABLE" " "
    2EETG010 "LIMU" "WDYC" "WDC_ALRT_SELF_MON_OVRVIEW COMPONENTCONTROLLER" " "
    2EETG010 "LIMU" "WDYC" "WDC_CONFIG_WIZARD COMPONENTCONTROLLER" " "
    2EETG010 "LIMU" "WDYV" "WDC_CONFIG_WIZARD MAIN" " "
    2EETG010 "LIMU" "WDYC" "WDC_MAI_REP_ALERTS COMPONENTCONTROLLER" " "
    2EETG010 "LIMU" "WDYV" "WDC_MAI_REP_ALERTS MAIN" " "
    2EETG010 "LIMU" "WDYC" "WDC_MAI_REP_DATA_PROVIDER COMPONENTCONTROLLER" " "
    2EETG010 "LIMU" "WDYC" "WDC_MAI_REP_DATA_PROVIDER MGVARIANTCONTROLLER" " "
    2EETG010 "LIMU" "WDYV" "WDC_MAI_REP_DATA_PROVIDER METRIC_GROUP_VARIANT" " "
    2EETG010 "LIMU" "WDYV" "WDC_MAI_REP_DATA_PROVIDER PARAMETERTABLE" " "
    2EETG010 "LIMU" "WDYC" "WDC_MAI_REP_DFLT_TEMPLATE COMPONENTCONTROLLER" " "
    2EETG010 "LIMU" "WDYC" "WDC_MAI_REP_HIERARCHY COMPONENTCONTROLLER" " "
    2EETG010 "LIMU" "WDYC" "WDC_MAI_REP_INCIDENT COMPONENTCONTROLLER" " "
    2EETG010 "LIMU" "WDYV" "WDC_MAI_REP_INCIDENT MAIN" " "
    2EETG010 "LIMU" "WDYC" "WDC_MAI_REP_METRICS COMPONENTCONTROLLER" " "
    2EETG010 "LIMU" "WDYC" "WDC_MAI_REP_METRIC_DETAIL COMPONENTCONTROLLER" " "
    2EETG010 "LIMU" "WDYC" "WDC_MAI_REP_MONOBJ_DETAIL COMPONENTCONTROLLER" " "
    2EETG010 "LIMU" "WDYV" "WDC_MAI_REP_MONOBJ_DETAIL MAIN" " "
    2EETG010 "LIMU" "WDYC" "WDC_MAI_REP_NOTIFICATION COMPONENTCONTROLLER" " "
    2EETG010 "LIMU" "WDYV" "WDC_MAI_REP_NOTIFICATION MAIN" " "
    2EETG010 "LIMU" "WDYC" "WDC_MAI_REP_REACTIONS COMPONENTCONTROLLER" " "
    2EETG010 "LIMU" "WDYV" "WDC_MAI_REP_REACTIONS MAIN" " "
    2EETG010 "LIMU" "WDYC" "WDC_MAI_REP_RULE_TYPE COMPONENTCONTROLLER" " "
    2EETG010 "LIMU" "WDYV" "WDC_MAI_REP_RULE_TYPE MAIN" " "
    2EETG010 "LIMU" "WDYC" "WD_ALRT_MEADEF_CTS COMPONENTCONTROLLER" " "
    2EETG010 "LIMU" "WDYC" "WD_SISE_CUSTOM_TMPL_CONF COMPONENTCONTROLLER" " "
    2EETG010 "LIMU" "WDYV" "AGS_DVM_AFWK_LOG_VIEWER MAIN" " "
    2EETG010 "LIMU" "WDYV" "AGS_INCIDENT_FAVOURITES VWWATCHLIST" " "
    2EETG010 "LIMU" "WDYV" "AGS_RBE_AS VW_AS_TREE_TABLE" " "
    2EETG010 "LIMU" "WDYV" "AGS_RBE_IMPORT V_LOG_COMP_MAP" " "
    2EETG010 "LIMU" "WDYV" "AGS_WORK_ESD_ISSUE_MGMT VW_MAIN" " "
    2EETG010 "LIMU" "WDYV" "AGS_WORK_ESD_ISSUE_MGMT VW_TAB_CHANGE_REQS" " "
    2EETG010 "LIMU" "WDYV" "AGS_WORK_ESD_ISSUE_MGMT VW_TAB_ISSUES" " "
    2EETG010 "LIMU" "WDYV" "AGS_WORK_ESD_ISSUE_MGMT VW_TAB_MSGS_EODS" " "
    2EETG010 "LIMU" "WDYV" "AGS_WORK_ESD_ISSUE_MGMT VW_TAB_PARENT_OBJS" " "
    2EETG010 "LIMU" "WDYV" "AGS_WORK_ESD_ISSUE_MGMT VW_TAB_PROCESS_INFO" " "
    2EETG010 "LIMU" "WDYV" "AGS_WORK_ESD_ISSUE_MGMT VW_TAB_SERVICES" " "
    2EETG010 "LIMU" "WDYV" "AGS_WORK_ESD_ISSUE_MGMT VW_TAB_TASKS" " "
    2EETG010 "LIMU" "WDYV" "AGS_WORK_ESD_ISSUE_MGMT WND_MAIN" " "
    2EETG010 "LIMU" "WDYV" "AGS_WORK_SERVICES_ENGAGE VW_MAIN" " "
    2EETG010 "LIMU" "WDYV" "AICCMSBI_OPERATION_CENTER V_MAIN" " "
    2EETG010 "LIMU" "WDYV" "AICCMSBI_TWB_SETUP V_MAIN" " "
    2EETG010 "LIMU" "WDYV" "AI_SERVICE_CONNECTIONS TREE_CONTROL" " "
    2EETG010 "LIMU" "WDYV" "POWL_UI_COMP POWL_MASTER" " "
    2EETG010 "LIMU" "WDYV" "POWL_UI_COMP POWL_MASTER2" " "
    2EETG010 "LIMU" "WDYV" "WDC_ALERT_GROUP_DETAILS EVENT_GROUP_VIEW" " "
    2EETG010 "LIMU" "WDYV" "WD_SISE_CUSTOM_AGS V_BW_SYSTEM" " "
    2EETG010 "LIMU" "WDYV" "WD_SISE_SS_GUID_PROC GENERIC_POPUP" " "
    Any help to fix this issue.
    Rg,
    Karthik

    Hello Karthik
    I know the list is long. Unfortunately I have never had such a long list of inactive objects in the system during an update or upgrade. But I believe you can make use of the mass activation program RADMASG0 to have them activated. The other option I can think of is to use the function module RS_INACTIVE_OBJECTS_LIST to list all the inactive objects and see whether they can be mass activated from there. I believe it is possible to activate all from there after selecting a block. (Never tried so I cannot guarantee).
    Regards
    RB

Maybe you are looking for

  • IS it me or did I get poor support from Apple? Any advice on this long one?

    OK, so I’m curious, am I a complete idiot or is something else going on here? Please help… Here is my story. I contact Apple Support for my new Imac. Reason being, I am a PC guy who switched, and have had only one user on the machine the past 45 days

  • Deploying a WAR file

    I am trying to deploy a war in the startlone mode using the command line admin utility and I get the following error. If I deploy it using the em console it get deployed properly, Are there any special requesites for command line deployment C:\OAS\10

  • Supress empty page which is due to dynamic page (smartforms)

    hi all, i' ve got the problem that i get an empty page at the end of my printout. the forms is defined as following: first_page - following page: next_page next_page - following page: next_page and in the main window i have a dynamic page (via comman

  • Multiple Database Links

    I have created a database link in Oracle 9i to access the data stored in a remote MSSQL Server machine. Can I create multiple database links in Oracle 9i to access different remote MSSQL Server machines? If yes, please advise how to accomplish this.

  • Can Mail be made to have basic text helpers?

    I have just been forced to switch to Mail and am shocked that it doesn't have the most rudimentary of text helpers like automatic capitalization of sentences. I thought the lack of this capability in programs used to write stuff died with DOS prompts