Deployment of SAP mappings

i have created numerous mapping in OWB to extract, transform and load data from SAP tables. this of course includes dimension and fact data.
i understand that they are ABAP mappings so ABAP source code and an SQL Loader control file will be created for each type of mapping.
my question is :-
1) do we have to manually deploy the ABAP program to the SAP server ?
2) if we want to schedule the data to load periodically, do we have to manually know how to define background jobs in SAP ?
3) do we schedule a periodic process at the OS level to manually FTP the data and control files over to our data warehouse "staging" area ?
4) and lastly, on the data warehouse environment, we again have to manually establish a period background process to load the data from the transferred flat files
i am concerned due to the number of dependencies involved in this whole process, than in event any errors occur, it might be difficult to diagnose and pinpoint the failure. does Oracle provide any sample scripts or guidelines to streamline this process ?
sorry for the long questions but i have a project to deliver and these concerns are making us contemplate on whether we should proceed further ...
looking forward to your replies. thanks !

Duncan,
See the answers below:
1) do we have to manually deploy the ABAP program to the SAP server ?If you generate ABAP you have to deploy it in the standard way by uploading it through the SAP UI. This is a one time activity.
2) if we want to schedule the data to load periodically, do we have to manually know how to define background jobs in SAP ? There are numerous ways to do this - either manually through SAP or by using system management tools. Oracle Enterprise Manager (OEM) is the preferred tool to do this kind of operation for Oracle Warehouse Builder (OWB). OEM is OWB's standard scheduler. OEM has a SAP Management Pack. Take a look at the following documents for this pack:
- installation guide: http://otn.oracle.com/docs/products/oem/doc_library/sap/sap_inst.pdf
- getting started: http://otn.oracle.com/docs/products/oem/doc_library/sap/sap_gs.pdf
3) do we schedule a periodic process at the OS level to manually FTP the data and control files over to our data warehouse "staging" area ?- this can be done by OEM (OWBs standard scheduler).
4) and lastly, on the data warehouse environment, we again have to manually establish a period background process to load the data from the transferred flat files - this can be done by OEM (OWBs standard scheduler).
i am concerned due to the number of dependencies involved in this whole process, than in event any errors occur, it might be difficult to diagnose and pinpoint the failure. does Oracle provide any sample scripts or guidelines to streamline this process ?- OWB's standard way of scheduling jobs and managing dependencies is to use OEM for scheduling (as already mentioned) and Oracle Workflow (OWF) for defining jobs flows (including dependencies). In other words, you define your jobs (with dependencies) in OWF and schedule them in OEM. OEM, OWF and OWB are tightly integrated and there is a whole chapter about this process and how to configure and run it in the OWB documentation. See chapter 10 in the user's guide (find the user's guide at http://otn.oracle.com/docs/products/warehouse/content.html ).
Regards:
Igor

Similar Messages

  • Time out error on deploying to SAP-J2EE engine.

    I got a problem while deploying to SAP-J2EE engine using ant. It takes a lot of time and then throws a time out error.
    The problem is with the web.xml file pointing to a DTD in the internet, I have pasted some part of the web.xml below,
    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE web-app
      PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
      "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
    <web-app>
        <display-name>MyPay</display-name>
        <description>MyPay</description>
    Once I write down the DTD description in the web.xml itself, it works fine.
    I have pasted the error trace below,
    j2eedeploy:
         [echo] Deploying to Local environment...
         [echo] C:\Java\Projects/MyPay/dist/MyPay.ear
    BUILD FAILED
    C:\Java\Projects\MyPay\build.xml:445: java.lang.RuntimeException: ERROR: ID90507:  Error occured during getting EARDescriptor : Failed to load resource from the context classloader of the current thread! Loading from classloader was caused by: java.net.ConnectException: Connection timed out: connect
    Exception is :
    java.io.IOException: Failed to load resource from the context classloader of the current thread! Loading from classloader was caused by: java.net.ConnectException: Connection timed out: connect
         at com.sap.engine.lib.xml.parser.URLLoaderBase.resolveEntity(URLLoaderBase.java:148)
         at com.sap.engine.lib.xml.parser.XMLParser.scanDTD(XMLParser.java:1271)
         at com.sap.engine.lib.xml.parser.XMLParser.scanProlog(XMLParser.java:2795)
         at com.sap.engine.lib.xml.parser.XMLParser.scanDocument(XMLParser.java:2830)
         at com.sap.engine.lib.xml.parser.XMLParser.parse0(XMLParser.java:229)
         at com.sap.engine.lib.xml.parser.AbstractXMLParser.parseAndCatchException(AbstractXMLParser.java:145)
         at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:160)
         at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:261)
         at com.sap.engine.lib.xml.parser.Parser.parseWithoutSchemaValidationProcessing(Parser.java:280)
         at com.sap.engine.lib.xml.parser.Parser.parse(Parser.java:342)
         at com.sap.engine.lib.xml.parser.DOMParser.parse(DOMParser.java:101)
         at com.sap.engine.lib.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:127)
         at com.inqmy.lib.xml.StandardDOMParser.parse(StandardDOMParser.java:127)
         at com.inqmy.lib.xml.StandardDOMParser.parse(StandardDOMParser.java:120)
         at com.inqmy.services.servlets_jsp.descriptor.jar.WebWar.getWebDescriptor(WebWar.java:98)
         at com.inqmy.deploy.tool.deployer.ExtendedEarReader.loadDescriptorFromFile(ExtendedEarReader.java:175)
         at com.inqmy.deploy.tool.deployer.ExtendedEarReader.getFullEarDescriptor(ExtendedEarReader.java:104)
         at com.inqmy.deploy.manager.DeployManagerImpl.setEar(DeployManagerImpl.java:355)
         at com.inqmy.deploy.manager.DeployManagerImpl.setEar(DeployManagerImpl.java:325)
         at com.pg.sap.deploy620.SAPDeploy620Manager.process(SAPDeploy620Manager.java:84)
         at com.pg.ant.tasks.j2ee620.J2ee620EngineDeployTask.execute(J2ee620EngineDeployTask.java:40)
         at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
         at org.apache.tools.ant.Task.perform(Task.java:364)
         at org.apache.tools.ant.Target.execute(Target.java:341)
         at org.apache.tools.ant.Target.performTasks(Target.java:369)
         at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
         at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
         at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
         at org.eclipse.ant.internal.ui.antsupport.EclipseDefaultExecutor.executeTargets(EclipseDefaultExecutor.java:32)
         at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
         at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.run(InternalAntRunner.java:423)
         at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.main(InternalAntRunner.java:137)

    Thanks for your reply Kalyan,
    The problem seems to be with my system, because I had run the same ant script in another system and it deployed successfully.
    The problem does not seem to be with the dtd, whereas it seems that the SAP-J2EE engine is not able to open the link to the dtd giving a time out error.
    Is it possible to switch off the validation process of the SAP-J2EE engine of an xml with the dtd?

  • Error in Deployment of SAP ESS 100 SP16 ess/au/addr

    Hello Gurus
    Greetings !..
    I am trying to Deploy SAP ESS 100 SP16 for Netweaver 2004s using SDM but getting error while i deploy in the phase ess/au/addr.
    Please check for the log below if any one can helpout soon....
    May 22, 2007 10:16:50... Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    May 22, 2007 10:16:50... Info: Finished successfully: development component 'ess/at/fam'/'sap.com'/'MAIN_xss04VAL_C'/'680352'/'0', grouped by
    May 22, 2007 10:16:50... Info: Starting to save the repository
    May 22, 2007 10:16:52... Info: Finished saving the repository
    May 22, 2007 10:17:04... Info: Starting: Update: Selected development component 'ess/at/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'680388'/'0' updates currently deployed development component 'ess/at/pdata'/'sap.com'/'MAIN_ERP05VAL_C'/'766644'/'0'.
    May 22, 2007 10:17:04... Info: SDA to be deployed: E:\usr\sap\SND\JC01\SDM\root\origin\sap.com\ess\at\pdata\MAIN_xss04VAL_C\0\680388\sap.com_essatpdata.sda
    May 22, 2007 10:17:04... Info: Software type of SDA: J2EE
    May 22, 2007 10:17:04... Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) *****
    May 22, 2007 10:17:06... Info: Begin of log messages of the target system:
    07/05/22 22:17:04 - ***********************************************************
    07/05/22 22:17:04 - Start updating EAR file...
    07/05/22 22:17:04 - start-up mode is lazy
    07/05/22 22:17:04 - EAR file updated successfully for 78ms.
    07/05/22 22:17:04 - Start updating...
    07/05/22 22:17:04 - EAR file uploaded to server for 219ms.
    07/05/22 22:17:05 - Successfully updated. Update took 734ms.
    07/05/22 22:17:05 - Deploy Service status:
    07/05/22 22:17:05 - Application : sap.com/essatpdata
    07/05/22 22:17:05 -
    07/05/22 22:17:05 - sap.com/essatpdata - WEBDYNPRO
    07/05/22 22:17:05 - ***********************************************************
    May 22, 2007 10:17:06... Info: End of log messages of the target system.
    May 22, 2007 10:17:06... Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    May 22, 2007 10:17:06... Info: Finished successfully: development component 'ess/at/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'680388'/'0', grouped by
    May 22, 2007 10:17:07... Info: Starting to save the repository
    May 22, 2007 10:17:08... Info: Finished saving the repository
    May 22, 2007 10:17:21... Info: Starting: Initial deployment: Selected development component 'ess/au'/'sap.com'/'MAIN_xss04VAL_C'/'681439'/'0' will be deployed.
    May 22, 2007 10:17:21... Info: SDA to be deployed: E:\usr\sap\SND\JC01\SDM\root\origin\sap.com\ess\au\MAIN_xss04VAL_C\0\681439\sap.com_ess~au.sda
    May 22, 2007 10:17:21... Info: Software type of SDA: J2EE
    May 22, 2007 10:17:21... Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) *****
    May 22, 2007 10:17:25... Info: Begin of log messages of the target system:
    07/05/22 22:17:21 - ***********************************************************
    07/05/22 22:17:21 - Start updating EAR file...
    07/05/22 22:17:21 - start-up mode is lazy
    07/05/22 22:17:21 - EAR file updated successfully for 188ms.
    07/05/22 22:17:21 - Start deploying ...
    07/05/22 22:17:22 - EAR file uploaded to server for 859ms.
    07/05/22 22:17:24 - Successfully deployed. Deployment took 2547ms.
    07/05/22 22:17:24 - Application : sap.com/ess~au
    07/05/22 22:17:24 -
    07/05/22 22:17:24 - sap.com/ess~au - WEBDYNPRO
    07/05/22 22:17:24 - ***********************************************************
    May 22, 2007 10:17:25... Info: End of log messages of the target system.
    May 22, 2007 10:17:25... Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    May 22, 2007 10:17:25... Info: Finished successfully: development component 'ess/au'/'sap.com'/'MAIN_xss04VAL_C'/'681439'/'0', grouped by software component 'SAP_ESS'/'sap.com'/'MAIN_xss04VAL_C'/'1000.100.0.11.0.20060117105520''/'0'
    May 22, 2007 10:17:25... Info: Starting to save the repository
    May 22, 2007 10:17:27... Info: Finished saving the repository
    May 22, 2007 10:17:39... Info: Starting: Initial deployment: Selected development component 'ess/au/addr'/'sap.com'/'MAIN_xss04VAL_C'/'681471'/'0' will be deployed.
    May 22, 2007 10:17:39... Info: SDA to be deployed: E:\usr\sap\SND\JC01\SDM\root\origin\sap.com\ess\au\addr\MAIN_xss04VAL_C\0\681471\sap.com_essauaddr.sda
    May 22, 2007 10:17:39... Info: Software type of SDA: J2EE
    May 22, 2007 10:17:39... Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) *****
    May 22, 2007 10:17:40... Info: Begin of log messages of the target system:
    07/05/22 22:17:39 - ***********************************************************
    07/05/22 22:17:39 - Start updating EAR file...
    07/05/22 22:17:39 - start-up mode is lazy
    07/05/22 22:17:39 - EAR file updated successfully for 94ms.
    07/05/22 22:17:39 - Start deploying ...
    07/05/22 22:17:40 - EAR file uploaded to server for 297ms.
    07/05/22 22:17:40 - ERROR: Not deployed. Deploy Service returned ERROR:
    java.rmi.RemoteException: Cannot deploy application sap.com/essauaddr..
    Reason: Clusterwide exception: Failed to deploy application sap.com/essauaddr. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?; nested exception is:
    com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to deploy application sap.com/essauaddr. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?
    at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:567)
    at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1555)
    at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:320)
    at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:198)
    at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:129)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to deploy application sap.com/essauaddr. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?
    at com.sap.engine.services.webdynpro.WebDynproContainer.deploy(WebDynproContainer.java:1016)
    at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:606)
    at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:321)
    at com.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:307)
    at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:292)
    at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:326)
    at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:3184)
    at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:552)
    ... 10 more
    For detailed information see the log file of the Deploy Service.
    07/05/22 22:17:40 - ***********************************************************
    May 22, 2007 10:17:40... Info: End of log messages of the target system.
    May 22, 2007 10:17:40... Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    May 22, 2007 10:17:40... Error: Aborted: development component 'ess/au/addr'/'sap.com'/'MAIN_xss04VAL_C'/'681471'/'0', grouped by software component 'SAP_ESS'/'sap.com'/'MAIN_xss04VAL_C'/'1000.100.0.11.0.20060117105520''/'0':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Cannot deploy application sap.com/essauaddr..
    Reason: Clusterwide exception: Failed to deploy application sap.com/essauaddr. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?; nested exception is:
    com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to deploy application sap.com/essauaddr. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    May 22, 2007 10:17:40... Info: Starting to save the repository
    May 22, 2007 10:17:42... Info: Finished saving the repository
    May 22, 2007 10:17:54... Info: Starting: Initial deployment: Selected software component 'SAP_ESS'/'sap.com'/'MAIN_xss04VAL_C'/'1000.100.0.11.0.20060117105520''/'0' will be deployed.
    May 22, 2007 10:17:54... Error: Aborted: software component 'SAP_ESS'/'sap.com'/'MAIN_xss04VAL_C'/'1000.100.0.11.0.20060117105520''/'0':
    Failed deployment of SDAs:
    development component 'ess/au/addr'/'sap.com'/'MAIN_xss04VAL_C'/'681471'/'0' : aborted
    Please, look at error logs above for more information!
    Hope for a prompt response.
    Reply awaited urgently....
    Thanks in Advance
    Thanks & Best Regards
    Ashish

    Hello Gerard Christopher
    Yes i got the problem solved, actually SAP ESS 600 & SAP MSS 600 are the component we have to use. As we were on WAS 7.00 and ERP 2005 so
    SAP ESS 600
    SAP MSS 600
    SAP PSS 600
    SAP ASR 600
    SAP PCUI_GP 600
    Try with this you will able to solve.
    Thanks & best Regards
    Ashish

  • Deployment of SAP Internet Sales/E Commerce module

    Hi All,
    Please let me know whether SAP Internet Sales / E Commerce module comes by default in an ECC 6.0 installation.
    Also if yes, please provide me with some guides/documents on configurations to be done in ECC for making the SAP IS module functional.
    Thanks!!
    Lisha

    Hi Lisha,
    You will not get SAP Internet sales Software Components while installing ECC, You need to deploy sca files externally.
    You need to download sca files from service market place.
    link : [ download ink|https://websmp108.sap-ag.de/patches]
    Goto Downloads -> SAP Software Distribution Center -> select Search for Support Packages and Patches
    try to get below sca files using search key:
    eg: for SAP-SHRJAV.sca file search with shrjav
    o SAP_JTECHS.sca
    o SAP_BUILDT.sca
    o SAP-JEE.sca
    o SAP-SHRJAV.sca
    o SAP-SHRWEB.sca
    o SAP-SHRAPP.sca
    o SAP-CRMJAV.sca
    o SAP-CRMWEB.sca
    o SAP-CRMAPP.sca
    o SAP-CRMDIC.sca
    o SAP-IPCMSA.sca
    o STRUTS.sca
    o TEALEAF.sca
    download all sca files and deploy to SAP-J2EE.
    Hope this helps you.
    Regards,
    Devender

  • Scripts for SAP mappings

    To generate the scripts for SAP mappings:
    - From the Warehouse Module Editor menu, choose Module then Generate.
    - The Generation Mode dialog
    hi i don't find the "generation mode dialog". where i find it?
    robson
    thanks.

    hi,
         the reboot of a system can be of broadly two types.
    1) done by the user
    2) abrupt shutdown say due to power failure.
       if you closely look at the file inittab under /etc/ you will find different files are executed for different run levels. For powerfailure also there is a script called powerfail under /etc/init.d/. with different options.
    under init.d directory you can find all the scripts for different run levlels starting from rc0-rc6, halt named script  , and reboot named script.
    . So to solve your problem you can write a script and execute it under this files. Changing all these files are not at all recommended as any mistake can lead to a system halt state. But still we can make the changes if we know what are we doing and definitely you can try if are having a test system with you.
    the logic will go something like this:-->
    1) for shutdown
        respawn a new shell
        login as <sid>adm
        execute the command i.e stopsap
        exit from that user
    same goes for startup also.
    now only you have to run this script in the appropriate files at appropriate places(most important).
    but the main problem comes when system goes down as sap system takes time to stop so you have to make your OS wait uptill that which may be a tedious task.
    . the above discussion was keeping SUSE linux enterprise server in mind.
    Please do not make any changes in the above mentioned file if you  are running a crucial 
    system on that OS. try only on  a test system.
    revert back in case of any query..
    cheers,
    yatindra
    null

  • Unresolved dependencies while deploying  com.sap.aii.af.app in SDM (PI 7.0)

    Hi Experts,
    I am trying to deploy aii_af_app.sda file using SDM tool. I am getting below mentioned errors. Please suggest. Thank you.
    SDM Logs -
    Oct 14, 2009 8:18:26 AM  Error: Unresolved dependencies found for the following SDAs:
    1.: development component 'com.sap.aii.af.app'/'sap.com'/'SAP AG'/'3.0.20091009164609.0000'/'0'
    dependency:
    name:     'com.sap.aii.af'
    vendor:     'sap.com'
    There is no component either in SDM repository or in Deployment batch that resolves the dependency.
    Deployment will be aborted.
    Return code: 4

    Hi,
    >
    > Oct 14, 2009 8:18:26 AM  Error: Unresolved dependencies found for the following SDAs:
    > 1.: development component 'com.sap.aii.af.app'/'sap.com'/'SAP AG'/'3.0.20091009164609.0000'/'0'
    > dependency:
    > name:     'com.sap.aii.af'
    > vendor:     'sap.com'
    > There is no component either in SDM repository or in Deployment batch that resolves the dependency.
    > Deployment will be aborted.
    > Return code: 4
    Error completely shows that you have not met prerequisite to install this component. Check what all component you need to install in order to install aii_af_app.sda
    Thanks
    Sunny

  • CmcApp don't work after deployment on SAP Netweaver 7.0

    Hello,
    I've installed BOE XI3.1sp3 and after installation deployed Web Components to SAP Netweaver 7.0Ehp1. After deployment, I've try to launch CMC application in web browser. The url is http://<j2ee_server>:<j2ee_port>/CmcApp.
    Logon screen looks good, but after succesful login I recieved page with unreadable symbols.
    It's looks like  ? э=is Ч??Щ_б??HpMт / t? hСс  fd? 5Ф4?  3№Ь?? (whole page of such symbols).............
    InvoViewApp works good.
    Please, help me!!!
    Thanks in advance.
    Anton.

    The problem is resolved. Note 1342545
    1. Launch the Visual Administrator.
    2. Connect to the SAP J2EE Engine by clicking Connect -> Login, select the appropriate connection, and click on the Connect button. Enter the password and click on the Connect button.    
    3. Navigate to the HTTP Provider service by going to the Cluster tab, expanding Server, expanding Services, and clicking on HTTP Provider.
    4. On the right side of the screen, click on the Properties tab.
    5. Click on the AlwaysCompressed key. At the bottom of the screen in the Value field, remove "text/html" (without the quotes). Click on Update.
    6. Click on the NeverCompressed key. At the bottom of the screen in the Value field, add "text/html" (without the quotes). Click on Update.
    7. At the top of the screen, click on the Save Properties button. 
    8. Restart the NetWeaver server.

  • JDBC Drivers deployment in SAP PO system

    Hi Experts,
    Could any one provide information regarding deployment of JDBC drivers in SAP PO system. As I can see one of the option in NWA (Below is the screen snap) to deploy directly driver file in to SAP PO system. Is this is the way ?? If not please show some light on this.
    Regards,
    Anusha.

    Hi Anusha
    You can use SDA maker tool to build and include JDBC driver jar file in com.sap.aii.adapter.lib.sda file. You can also get this sda file by following the steps in SAP Note 1770304.
    Ensure that the jar file is compatible with SAP JVM used in your PI system.
    After you build the sda file, deploy it using telnet or SUM.
    regards
    AKD

  • Quick question on BOE deployment for SAP BW with 3 system landscape

    Client has SAP BW environment with 3 system landscape: Dev, QA, Production
    Should BOE be installed seperately on 3 different machines for each of them?
    Or is there any best practice for this?
    Thanks,
    Henry

    Hello Henry,
    yes - i would recommend this Setup. Technically there is no need for it but on an organisational/development/deployment level it makes more sence.
    I often saw it at customers that Dev and Q&A is on virtual machines and Prod is on a physically machines. Saves some Hardware costs.
    Regards
    -Seb.

  • Deploying / Transporting SAP HANA-ECC and BW Solution?

    Is there one centralized deployment guid for SAP  HANA solutions in the SAP ECC and SAP BW environment?
    Please can one of you provide some directions to a centralized guide to move / deploy SAP HANA solutions build in one system to Quality and/or production environment?

    Rama,
    there's a pretty straight forward export/import functionality for moveing models from dev to qa and prod. Please see the SAP HANA Modeling Guide, chapter "Processing Information Objects".
    You can also use CTS+ in conjunction with this functionality.
    Regards,
    Marc
    SAP Customer Solution Adoption (CSA)

  • SDM Deployment for SAP-XIAFC

    Hi All,
    I am trying to deploy SAP-XIAFC.sca using SDM. However, there are some dependent components which need to be deployed as a pre-requisite for this.
    *com.sap.aii.af.ra.ms.sonic.client
    com.sap.aii.af.jmsproviderlib
    Can somebody please let me know where do iI find these pre-requisites ? Any help would be appreciated.
    Thanks and Regards,
    Pranav

    Normally you would download the whole XI/PI service pack/stack and not the individual components, via here:
    http://service.sap.com/swdc
    SAP CAF 7.00
    SAP CAF-UM 7.00
    SAP J2EE ENGINE 7.00
    SAP J2EE ENGINE CORE 7.00
    SAP JAVA TECH SERVICES 7.00
    SAP SOFTW. DELIV. MANAGER 7.00
    SAP TECH S 7.00 OFFLINE
    SAP_IKS_7.00
    UME ADMINISTRATION 7.00
    XI ADAPTER FRAMEWORK 7.00
    XI ADAPTER FRAMEWORK CORE
    XI CONNECTIVITY SE 7.00
    XI CONTENT SAP_ABA 700
    XI CONTENT SAP_BASIS 7.00
    XI PCK 7.00
    XI TOOLS 7.00
    You then get all the pre-requisites.  We normally load all the SDA/SCA files into the SDM and then we don't get the issues

  • Problem testing deployment of SAP Data Source

    Following the Installation Guide for SAP Data Source on Oracle iAS10g 9.0.4.0.0 on Windows 2000 Server SP4 Im stuck with error
    500 Internal Server Error
    java.io.IOException: javax.servlet.ServletException: Class oracle.webdb.reformlet.ReformletPortlet has no set or add method for tag "localePersonalizationLevel" at oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter.showTestPageURI.... (full shown at end)
    when testing URL
    http://sgr-a31.dk.ementor.dom/portalTools/omniPortlet/providers/sap
    Can anybody help ?
    Creating the External Application logon etc. worked fine !
    500 Internal Server Error
    java.io.IOException: javax.servlet.ServletException: Class oracle.webdb.reformlet.ReformletPortlet has no set or add method for tag "localePersonalizationLevel" at oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter.showTestPageURI(Unknown Source) at oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter.showTestPage(Unknown Source) at oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter.handleHttp(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:324) at oracle.webdb.provider.v2.adapter.SOAPServlet.doHTTPCall(Unknown Source) at oracle.webdb.provider.v2.adapter.SOAPServlet.service(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:208) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:125) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192) at java.lang.Thread.run(Thread.java:534)

    PUBLISHING THE SAP DATA SOURCE PLUGIN FOR OMNIPORTLET FOR SAP, UNSUCEFULL
    ### What kind of problem do you have? ###
    Managing External Applications
    ### Describe the problem you are having in detail. Include any notes, guides, o Documentation:
    OracleAS Portal Integration Solutions
    Installation Guide for SAP Data Source
    Revision No Last Update
    1.0 December 19, 2003
    1.1 January 16, 2004
    Follow step-by-step.
    1 - Upgraded portalTools to Version: 9.0.4.1
    2 - Used the 'Upgrading the Portal Tools Application' instroctions, making sure
    to stop OC4J's before copying files 'onto' my system.
    3 - Restarting the OC4J_Portal
    4 - Testing the deployment @ Provider Test
    Page:
    http://portaldev:7778/portalTools/omniPortlet/providers/sap
    Welcome
    Congratulations!! You have successfully set up the SAP Data Source
    Provider.
    5 - Creating the external application was successful.
    SAPExternalApp
    6 - Publishing the SAP Data Source
    Okey...
    Fill up Filds, as describe..
    Application Name: SAPExternalApp
    Login URL:http://portaldev:7778/portalTools/omniPortlet/servlet/login
    User Name/ID Field Name: Username
    Password Field Name: Password
    POST
    VALID SAP CLIENT (TESTED!!!)
    clientId 400 Check this box
    language EN Check this box
    systemId 00 Uncheck this box
    hostname xxx.xxx.xxx.xxx Uncheck this box
    connectionPoolSize 5 Uncheck this box
    7 - When click on the link SAPExternalApp , got following error ...
    500 Internal Server Error java.lang.NoClassDefFoundError:
    com/sap/mw/jco/JCO
    ### Provide any error numbers, or error text that you are receiving. Include any
    500 Internal Server Error
    java.lang.NoClassDefFoundError: com/sap/mw/jco/JCO
    and so on ...
    TAR has been assigned to an analyst -- Sending email.
    03-JUN-05 11:44:44 GMT
    Hi,
    Thank you for using MetaLink. We are currently reviewing/researching the situation and will update the SR / call you as soon as we have releva
    nt information. Thank you for your patience.
    Best Regards,
    Pascal Brand
    Oracle EMEA Portal Competency.
    STATUS
    =======
    @WIP -- Work In Progress
    03-JUN-05 11:49:30 GMT
    UPDATE
    =======
    It seems one of the classes in missing in the OC4J class path. (com/sap/mw/jco/JCO).
    03-JUN-05 11:50:15 GMT
    OWC Conference 25816178
    Start : 03-Jun-2005 11:50:15 GMT
    Duration : 121 minutes
    Hosted by : BRAND,PASCAL
    Rating : Good
    Finish status : graceful
    Playback URL : The recording of this conference is not published
    Comments :
    Attendees : 2
    peres () From: to
    peres () From: to
    peres () From: 12:07:10 GMT to 13:51:27 GMT
    PASCAL BRAND ([email protected]) From: 11:50:33 GMT to 13:51:41 GMT
    03-JUN-05 11:51:18 GMT
    OWC REQUEST
    ============
    Hi,
    I would like to collaborate with you in a 20 minute Web Conference (OWC) to progress your issue. Please follow these
    steps:
    1. Log into Metalink (http://metalink.oracle.com) using INTERNET EXPLORER.
    2. Click on Oracle Collaborative Support button on lower left side
    3. Under the list of Upcoming Public Conferences, identify the conference with the Confere
    nce Title which matches your TAR#4414221.994, and click Join Meeting. (If you do
    not see your conference, click on Full List button)
    OR
    Enter the Conference ID: 25816178
    4. Enter your CSI# as the Conference Key, your name, email address, and company name and click Join Conference.
    Please join this collaboration session as soon as possible.
    Thank you,
    Pascal
    STATUS
    =======
    @CUS -- Waiting for Customer Update
    03-JUN-05 12:06:30 GMT
    ISSUE CLARIFICATION
    ====================
    After configuring the SAP Data Source Provider, customer can reach the test page but can't configure the external app
    lication.
    500 Internal Server Error
    java.lang.NoClassDefFoundError: com/sap/mw/jco/JCO
    at oracle.webdb.reformlet.plugin.datasource.sap.jco.JCOUtils.
    testForAuthentication(Unknown Source)
    at oracle.webdb.reformlet.plugin.datasource.sap.jco.JCOUtils.
    testForAuthentication(Unknown Source)
    at oracle.webdb.reformlet.plugin.datasource.sap.LoginServlet.
    doGet(Unknown Source)
    eos (end of section)
    ACTION PLAN
    ============
    1. Can you check in which jar or zip file this class is located.
    com/sap/mw/jco/JCO
    2. Add the jar or zip file in the orion-applications.xml library path definitions.
    3. restart the OC4J instance where the SAP provider is located.
    eos (end of section)
    Let me know if this helps,
    Pascal
    03-JUN-05 12:06:44 GMT
    Email Update button has been pressed: Sending email to [email protected].
    br.
    DATA COLLECTED
    ===============
    COLLABORATION
    After adding the sapds.jar and the sapjco.jar in the $ORACLE_HOME/portal/jlib and having restarted the OC4J_POrtal, we have and other error
    with something like:
    NOEXEC shared libraries..
    It seems to be related to the SAP librairies for AIX.
    Customer will upload the complete error message on metalink.
    We have tried to set LD_LIBRARY_PATh and LIBPATH in the environement and in the opmn.xml for OC4J_Portal.
    This didn't help.
    eos (end of section)
    ACTION PLAN
    ============
    1. Can you upload the complete error message we have seen on the screen.
    eos (end of section)
    Thanks,
    Pascal
    03-JUN-05 14:05:21 GMT
    Email Update button has been pressed: Sending email to [email protected].
    br.
    03-JUN-05 14:24:30 GMT
    UPDATE
    =======
    Hi,
    I'm afraid but I have the feeling the problem is due to wrong AIX shared libraries.
    ACTION PLAN
    ============
    1. Can you ask for reloading the libraries from the SAP services site and make sure they are for
    AIX.
    eos (end of section)
    UPDATE
    =======
    The SAP provider is not suported by Oracle support as it is written in the SAP plugin installation guide:
    NOTE: The OracleAS Data Source Plugin for Omniportlet for SAP is a sample released for
    test, evaluation, and education purposes. It is not supported through formal Ora
    cle Support mechanisms. We are, however, very interested in receiving your feedb
    ack. Please post any suggestions, questions, or issues to the 'Portal - Portal
    Development Kit' Discussion Forum on OTN. We will respond as quickly as possibl
    e."
    The developers are checking the forum for the questions.
    Please use this forum for futur investigation.
    I'm sorry not beeing able to help more.
    UPDATE
    =======
    Hi,
    I am inactivating this SR, as the OracleAS Data Source Plugin for Omniportlet for SAP is a sample released for test, evaluation, and ed
    ucation purposes. It is not supported through formal Oracle Support mechanisms.
    Best Regards,
    Pascal Brand
    Oracle EMEA Portal Competency.
    +++++++++++++++++++++++++++++++++++++++++++++++++++
    Try with SAJCO 2.1.5 but haven´t worked.., paperwork sugested 2.0.5, can´t find anywhere...
    Doesn´t work with: 2.0.5 or 2.0.10
    Any help???

  • About deploying a sap connector in oim10g.

    hi,
    I am trying to configure sap application & oracle app application with oim 10g please any one can provide the connectors of both sap and oracle app version which supported by oracle identity management 9.1.0.2 and with some documentation.
    Regards and thanks,
    avinash
    Edited by: 918071 on Apr 18, 2012 1:55 AM

    You can use SAP_UM_9.1.2 connector for OIM 9.1.0.2...download the connector from Oracle site...u will get the documentation there.

  • I can't deploy my webdynpro to SAP EP

    Hi, I created my Webdynpro Application, but when I try to deploy to SAP EP, and
    NWDS display this log on Deploy console
    [001]Deployment finished with warning
    Settings
    SDM host : bvpmepd
    SDM port : 50018
    URL to deploy : file:/C:/Users/sistemas/AppData/Local/Temp/temp8616demo.sap.com~sifweb.ear
    Result
    => deployment not executed : file:/C:/Users/sistemas/AppData/Local/Temp/temp8616demo.sap.com~sifweb.ear
    Unresolved dependencies found for the following SDAs:
    1.: development component 'sifweb'/'demo.sap.com'/'localDevelopment'/'20110304125206'/'0'
    dependency:
           name:     'tc/ddic/runtime/facade'
         vendor:     'sap.com'
    There is no component either in SDM repository or in Deployment batch that resolves the dependency.
    dependency:
           name:     'tc/aii/base/offline/facade'
         vendor:     'sap.com'
    There is no component either in SDM repository or in Deployment batch that resolves the dependency.
    dependency:
           name:     'tc/bl/exception/lib'
         vendor:     'sap.com'
    There is no component either in SDM repository or in Deployment batch that resolves the dependency.
    dependency:
           name:     'tc/wd/api'
         vendor:     'sap.com'
    There is no component either in SDM repository or in Deployment batch that resolves the dependency.
    dependency:
           name:     'tc/bl/logging/api'
         vendor:     'sap.com'
    There is no component either in SDM repository or in Deployment batch that resolves the dependency.
    dependency:
           name:     'tc/bl/jrfc/api'
         vendor:     'sap.com'
    There is no component either in SDM repository or in Deployment batch that resolves the dependency.
    Deployment will be aborted.
    Deployment exception : Got problems during deployment [WARNING: 4/03/2011 12:52:31 PM /userOut/daView_category (eclipse.UserOutLocation) [Thread[Deploy Thread,5,main]] ]
    And this try to display on Explorer
    and display this
      Details:   com.sap.tc.webdynpro.services.sal.core.DispatcherException: The requested deployable object 'demo.sap.com/sifweb' and application 'CapturaDocumentosApp' are not deployed on the server. Please check the used URL for typos.
    Exception id: [E41F136228E400710000000400000D3400049DAA7D960587]
    I don't know how to solve the problem.
    I do all the instruccion of SAP tutorials to create the first Webdynpro As Java Aplication

    Hi,
    The DC's error is indecating are the default DC's which normally get deployed at time of J2ee Server installation (I mean following DC's)
    1.: development component 'sifweb'/'demo.sap.com'/'localDevelopment'/'20110304125206'/'0'
    dependency:
    name: 'tc/ddic/runtime/facade'
    vendor: 'sap.com'
    name: 'tc/aii/base/offline/facade'
    vendor: 'sap.com'
    name: 'tc/bl/exception/lib'
    vendor: 'sap.com'
    name: 'tc/wd/api'
    vendor: 'sap.com'
    name: 'tc/bl/logging/api'
    vendor: 'sap.com'
    name: 'tc/bl/jrfc/api'
    vendor: 'sap.com'
    So i doubt if those DC's are not available in server, I believe these one is dependancy problem.
    Regards
    Jeetendra

  • SAP Strategy Management 7.0 SSM Component Deployment failed with JSPM

    Dear experts,
    i have installed a SAP Netweaver CE 7.1 on Windows Server 2003 Enterprise x64 with MS SQL and i wish to install now SAP Strategy Management 7.0 with JSPM Tool.
    I have copied the CPMSTRMGMAPC00_0.SCA file on the usr\sap\trans\EPS\in\ directory and the deployment precessus failed with error before the AS JAVA has been restarted.
    How can i manage this problem? Any suggestion is welcomed.
    Thank you very much.
    Best regards,
    Pascal.

    Any ideas?
    Here is the F:\usr\sap\PI7\J71\j2ee\JSPM\log\log_2009_06_15_12_51_48\deploy_2009-06-15_14-56-58.log
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[1.5.7.1006]/>
    <!NAME[F:\usr\sap\PI7\J71\j2ee\JSPM\log\log_2009_06_15_12_51_48\deploy_2009-06-15_13-07-03.log]/>
    <!PATTERN[deploy_2009-06-15_13-07-03.log]/>
    <!FORMATTER[com.sap.tc.logging.TraceFormatter(%25d[%6s]:%m)]/>
    <!ENCODING[UTF8]/>
    <!LOGHEADER[END]/>
    Jun 15, 2009 1:07:03 PM  [Info  ]:DC API is trying to connect to 'sap-pi7:57104'
    Jun 15, 2009 1:07:03 PM  [Info  ]:DC API has Connected to 'sap-pi7:57104'
    Jun 15, 2009 1:07:03 PM  [Path  ]:+++++ Starting  V A L I D A T E action +++++[ deployerId=2 ]. timerId=7
    Jun 15, 2009 1:07:03 PM  [Path  ]:Selected archives for validation. [ deployerId=2 ]
    Jun 15, 2009 1:07:03 PM  [Path  ]:
    sap-pi7\sapmnt\trans\EPS\in\CPMSTRMGMAPC00_0.sca
    Jun 15, 2009 1:07:03 PM  [Debug ]:Got full sdu path '
    sap-pi7\sapmnt\trans\EPS\in\CPMSTRMGMAPC00_0.sca'
    Jun 15, 2009 1:07:03 PM  [Path  ]:component version handling rule is UpdateLowerVersionsOnly.[ deployerId=2 ]
    Jun 15, 2009 1:07:03 PM  [Path  ]:deployment workflow strategy is safety deploy strategy.[ deployerId=2 ]
    Jun 15, 2009 1:07:03 PM  [Path  ]:life cycle deploy strategy is disable LCM deploy strategy.[ deployerId=2 ]
    Jun 15, 2009 1:07:03 PM  [Path  ]:Error strategies[ deployerId=2 ]:
    Jun 15, 2009 1:07:03 PM  [Path  ]:error action 'DeploymentAction' is 'OnErrorStop'
    Jun 15, 2009 1:07:03 PM  [Path  ]:error action 'PrerequisitesCheckAction' is 'OnErrorSkipDepending'
    Jun 15, 2009 1:07:03 PM  [Debug ]:deployer initialized successfully:[id:#8, elapsed: 0 ms.].[ deployerId=2 ]
    Jun 15, 2009 1:07:03 PM  [Debug ]:Total time:[#8: 0.0 sec].[ deployerId=2 ]
    Jun 15, 2009 1:07:03 PM  [Info  ]:Start validating.[ deployerId=2 ]
    Jun 15, 2009 1:07:06 PM  [Path  ]:Validating completed. Preparing the validation result.
    Jun 15, 2009 1:07:06 PM  [Path  ]:
    Sorted Items -
         1. Client path '
    sap-pi7\sapmnt\trans\EPS\in\CPMSTRMGMAPC00_0.sca --> xappscpmsm~strategymanagement.sda'
         Sdu info :name 'xappscpmsm~strategymanagement', vendor 'sap.com', location 'MAIN_CPMSM70V_D', version '2465295', software type ('J2EE', sub type ''), dependencies :[none]
              Deploy status is 'Admitted'
         2. Client path '
    sap-pi7\sapmnt\trans\EPS\in\CPMSTRMGMAPC00_0.sca'
         Sdu info :name 'CPM_STR_MGM_APC', vendor 'sap.com', location 'MAIN_CPMSM70V_D', version '1000.700.0.1.0.20080221071842'
              Deploy status is 'Admitted'
    Deployment Items -
         1. Client path '
    sap-pi7\sapmnt\trans\EPS\in\CPMSTRMGMAPC00_0.sca'
         Sdu info :name 'CPM_STR_MGM_APC', vendor 'sap.com', location 'MAIN_CPMSM70V_D', version '1000.700.0.1.0.20080221071842'
              Deploy status is 'Admitted'
              Time statistics:
              Contained DCs:
              1.1:name 'xappscpmsm~strategymanagement', vendor 'sap.com', location 'MAIN_CPMSM70V_D', version '2465295', software type ('J2EE', sub type ''), dependencies :[none]          
                        Deploy status is 'Admitted'
              1.2:name 'xappscpmsm~strategymanagementactions', vendor 'sap.com', location 'MAIN_CPMSM70V_D', version '2465041', software type ('J2EE', sub type ''), dependencies :[none]          
                        Deploy status is 'AlreadyDeployed'
                        Description:'1. Already deployed component has version:2465041'.
              1.3:name 'xappscpmsm~strategymanagementdoc', vendor 'sap.com', location 'MAIN_CPMSM70V_D', version '2465046', software type ('J2EE', sub type ''), dependencies :[none]          
                        Deploy status is 'AlreadyDeployed'
                        Description:'1. Already deployed component has version:2465046'.
              1.4:name 'xappscpmsm~strategymanagementdic', vendor 'sap.com', location 'MAIN_CPMSM70V_D', version '2465042', software type ('JDDSCHEMA', sub type ''), dependencies :[none]          
                        Deploy status is 'AlreadyDeployed'
                        Description:'1. Already deployed component has version:2465042'.
    Jun 15, 2009 1:07:06 PM  [Info  ]:+++ Validation finished with status 'Success' +++[ deployerId=2 ]
    Jun 15, 2009 1:07:06 PM  [Path  ]:+++++ End  V A L I D A T E action +++++[ deployerId=2 ]. Total time:[#7: 3.016 sec]
    Jun 15, 2009 1:07:06 PM  [Path  ]:+++++ Starting  D E P L O Y action +++++ [ deployerId=2 ] [ timerId=9]
    Jun 15, 2009 1:07:06 PM  [Path  ]:Selected archives for deployment. [ deployerId=2 ]
    Jun 15, 2009 1:07:06 PM  [Path  ]:
    sap-pi7\sapmnt\trans\EPS\in\CPMSTRMGMAPC00_0.sca
    Jun 15, 2009 1:07:06 PM  [Debug ]:Got full sdu path '
    sap-pi7\sapmnt\trans\EPS\in\CPMSTRMGMAPC00_0.sca'
    Jun 15, 2009 1:07:06 PM  [Path  ]:component version handling rule is UpdateLowerVersionsOnly.[ deployerId=2 ]
    Jun 15, 2009 1:07:06 PM  [Path  ]:deployment workflow strategy is safety deploy strategy.[ deployerId=2 ]
    Jun 15, 2009 1:07:06 PM  [Path  ]:life cycle deploy strategy is disable LCM deploy strategy.[ deployerId=2 ]
    Jun 15, 2009 1:07:06 PM  [Path  ]:Error strategies[ deployerId=2 ]:
    Jun 15, 2009 1:07:06 PM  [Path  ]:error action 'DeploymentAction' is 'OnErrorStop'
    Jun 15, 2009 1:07:06 PM  [Path  ]:error action 'PrerequisitesCheckAction' is 'OnErrorStop'
    Jun 15, 2009 1:07:06 PM  [Debug ]:deployer initialized successfully:[id:#11, elapsed: 15 ms.].[ deployerId=2 ]
    Jun 15, 2009 1:07:06 PM  [Debug ]:Total time:[#11: 0.015 sec].[ deployerId=2 ]
    Jun 15, 2009 1:07:06 PM  [Path  ]:Starting deployment.[ deployerId=2 ]
    Jun 15, 2009 1:07:17 PM  [Debug ]:clusterRestartTriggered for transactionId:223, clusterEventAction:cluster restart triggered
    Jun 15, 2009 1:07:17 PM  [Debug ]:Mark transaction '223' as offline phase.
    Jun 15, 2009 1:07:17 PM  [Info  ]:+++ Performing offline deployment. Server is being restarted +++.The timeout for the operation is:  86400 sec.
    Jun 15, 2009 1:07:17 PM  [Path  ]:+++ Wait for server response +++. Elapsed: 0 ms.
    Jun 15, 2009 1:07:47 PM  [Path  ]:+++ Wait for server response +++. Elapsed: 484 ms.
    Jun 15, 2009 1:08:19 PM  [Path  ]:+++ Wait for server response +++. Elapsed: 30484 ms.
    Jun 15, 2009 1:08:49 PM  [Path  ]:+++ Wait for server response +++. Elapsed: 62140 ms.
    Jun 15, 2009 1:09:19 PM  [Path  ]:+++ Wait for server response +++. Elapsed: 92156 ms.
    Jun 15, 2009 1:09:49 PM  [Path  ]:+++ Wait for server response +++. Elapsed: 122171 ms.
    Jun 15, 2009 1:10:19 PM  [Path  ]:+++ Wait for server response +++. Elapsed: 152171 ms.
    Jun 15, 2009 1:10:49 PM  [Path  ]:+++ Wait for server response +++. Elapsed: 182296 ms.
    Jun 15, 2009 1:11:20 PM  [Path  ]:+++ Wait for server response +++. Elapsed: 212905 ms.
    Jun 15, 2009 1:12:22 PM  [Info  ]:Engine is up and running. Wait for engine deployment result.
    Jun 15, 2009 1:12:22 PM  [Debug ]:DC API will create new CM
    Jun 15, 2009 1:12:52 PM  [Path  ]:+++ Wait for server response +++. Elapsed: 305686 ms.
    Jun 15, 2009 1:13:22 PM  [Path  ]:+++ Wait for server response +++. Elapsed: 335685 ms.
    Jun 15, 2009 1:13:53 PM  [Path  ]:+++ Wait for server response +++. Elapsed: 365701 ms.
    Jun 15, 2009 1:14:23 PM  [Path  ]:+++ Wait for server response +++. Elapsed: 395701 ms.
    Jun 15, 2009 1:14:53 PM  [Path  ]:+++ Wait for server response +++. Elapsed: 425763 ms.
    Jun 15, 2009 1:15:24 PM  [Path  ]:+++ Wait for server response +++. Elapsed: 456856 ms.
    Jun 15, 2009 1:15:54 PM  [Path  ]:+++ Wait for server response +++. Elapsed: 487012 ms.
    Jun 15, 2009 1:15:57 PM  [Info  ]:Engine is up and running. Wait for engine deployment result.
    Jun 15, 2009 1:15:57 PM  [Info  ]:server is online, time:[id:#10, elapsed: 520059 ms.]
    Jun 15, 2009 1:15:57 PM  [Path  ]:Deployment completed. Preparing the deployment result.[ deployerId=2 ]
    Jun 15, 2009 1:15:57 PM  [Path  ]:
    Sorted Items -
         1. Client path '
    sap-pi7\sapmnt\trans\EPS\in\CPMSTRMGMAPC00_0.sca --> xappscpmsm~strategymanagement.sda'
         Sdu info :name 'xappscpmsm~strategymanagement', vendor 'sap.com', location 'MAIN_CPMSM70V_D', version '2465295', software type ('J2EE', sub type ''), dependencies :[none]
              Deploy status is 'Aborted'
              Description:'1. class com.sap.engine.services.webservices.espbase.wsdl.exceptions.WSDLException
               -> class java.lang.NullPointerException'.
         2. Client path '
    sap-pi7\sapmnt\trans\EPS\in\CPMSTRMGMAPC00_0.sca'
         Sdu info :name 'CPM_STR_MGM_APC', vendor 'sap.com', location 'MAIN_CPMSM70V_D', version '1000.700.0.1.0.20080221071842'
              Deploy status is 'Aborted'
              Description:'1. Contains Aborted deployment component:
    sdu id: sap.com_xappscpmsm~strategymanagement
    sdu file path: F:\usr\sap\PI7\J71\j2ee\cluster\server0\.\temp\tcbldeploy_controller\archives\223\CPMSTRMGMAPC00_0_sca1245064026979\DEPLOYARCHIVES\xappscpmsm~strategymanagement.sda
    version status: NEW
    deployment status: Aborted
    description: 1. class com.sap.engine.services.webservices.espbase.wsdl.exceptions.WSDLException
               -> class java.lang.NullPointerException'.
    Deployment Items -
         1. Client path '
    sap-pi7\sapmnt\trans\EPS\in\CPMSTRMGMAPC00_0.sca'
         Sdu info :name 'CPM_STR_MGM_APC', vendor 'sap.com', location 'MAIN_CPMSM70V_D', version '1000.700.0.1.0.20080221071842'
              Deploy status is 'Aborted'
              Description:'1. Contains Aborted deployment component:
    sdu id: sap.com_xappscpmsm~strategymanagement
    sdu file path: F:\usr\sap\PI7\J71\j2ee\cluster\server0\.\temp\tcbldeploy_controller\archives\223\CPMSTRMGMAPC00_0_sca1245064026979\DEPLOYARCHIVES\xappscpmsm~strategymanagement.sda
    version status: NEW
    deployment status: Aborted
    description: 1. class com.sap.engine.services.webservices.espbase.wsdl.exceptions.WSDLException
               -> class java.lang.NullPointerException'.
              Time statistics:
              Contained DCs:
              1.1:name 'xappscpmsm~strategymanagementdic', vendor 'sap.com', location 'n/a', version '1', software type ('n/a', sub type ''), dependencies :[none]          
                        Deploy status is 'AlreadyDeployed'
                        Description:'1. Already deployed component has version:2465042'.
              1.2:name 'xappscpmsm~strategymanagementdoc', vendor 'sap.com', location 'n/a', version '1', software type ('n/a', sub type ''), dependencies :[none]          
                        Deploy status is 'AlreadyDeployed'
                        Description:'1. Already deployed component has version:2465046'.
              1.3:name 'xappscpmsm~strategymanagement', vendor 'sap.com', location 'MAIN_CPMSM70V_D', version '2465295', software type ('J2EE', sub type ''), dependencies :[none]          
                        Deploy status is 'Aborted'
              Time statistics( ms ):
                   1.deployment : 34906
                        1.1.Notify:Event triggered : 157
                        1.2.Disable LCM deployment : 34656
                             1.2.1.Perform delivery : 34656
                                  1.2.1.1.Application Deployer : 34656
                        1.3.Notify Observers : 15
                             1.3.1.Persist in storage : 15
                        1.4.Notify:Event performed : 78
                   2.Persist in storage : 16
                        Description:'1. class com.sap.engine.services.webservices.espbase.wsdl.exceptions.WSDLException
               -> class java.lang.NullPointerException'.
              1.4:name 'xappscpmsm~strategymanagementactions', vendor 'sap.com', location 'n/a', version '1', software type ('n/a', sub type ''), dependencies :[none]          
                        Deploy status is 'AlreadyDeployed'
                        Description:'1. Already deployed component has version:2465041'.
    Jun 15, 2009 1:15:57 PM  [Info  ]:
    Deploy Result Description: Deployment exception occurred during deploy online data. Reason :An error occurred while deploying the deployment item 'sap.com_xappscpmsm~strategymanagement'.; nested exception is:
         com.sap.engine.services.dc.gd.DeliveryException: [ERROR CODE DPL.DC.3298] An error occurred during deployment of sap.com_xappscpmsm~strategymanagement. Cannot deploy it.
    [ deployerId=2 ]
    Jun 15, 2009 1:15:57 PM  [Info  ]:+++ Deployment finished with status 'Error' +++.[ deployerId=2 ][#10: 530.465 sec]
    Jun 15, 2009 1:15:57 PM  [Path  ]:+++++ End  D E P L O Y action +++++[ deployerId=2 ]. Total time:[#9: 530.465 sec]
    Jun 15, 2009 1:15:57 PM  [Debug ]:Incorrect client ID. The stub is not connected yet.
    Jun 15, 2009 1:15:57 PM  [Debug ]:Incorrect client ID. The stub is not connected yet.

Maybe you are looking for