How to Find SAP AS JAVA Component Deployment History

In SAP AS ABAP environment, you can get the component deployment history from the system status or transaction code SPAM.

But how do you check in SAP AS JAVA environment?

Based on SAP Note below,

  • 2473415 – How to find component deployment history in AS Java?
  • 3028131 – How to find the component installation history in AS JAVA 7.5

There is no standard tool to check the deployments/update history of a spefic component. It is possible to check the history of the deploy control to determine this information. The log files in the work directory found here will have the installation history contained within them: /usr/sap/[SID]/[INSTANCE-ID]/work/deploy.*.trc, deploy.*.log. There should be older versions of this log file which can go back a long time.

If these files are not present or do not go back far enough you can check the date of when the patch level of a component which is currently running on the system in the software component section of NWA. This will not give you an exact date of deployment but may give you an estimate as to the time deployed.

#2.0#2021 08 06 22:00:54:473#+0800#Info#/System/Server/Deployment#
com.sap.ASJ.dpl_dc.001087#BC-JAS-DPL#tc~bl~deploy_controller#C023130004#19500510##
com.sap.engine.services.dc.cm.deploy.impl#J2EE_ADM_SID#10##8E61#84c7e8c36100bc##0#
Thread[DeployThread[sap.com_MDM_WEB_UI],5,Managed_Application_Thread]#Plain#com.sap.engine.services.monitor.mbeans.MonitorResourceBundle#
 [Server 00 00_19472] (371) :Component has been delivered: [sdu id: [sap.com_MDM_WEB_UI]
sdu file path: [E:\\usr\\sap\\SID\\J00\\j2ee\\cluster\\server0\\temp\\tc~bl~deploy_controller\\archives\\371\\MDMWEBUI75SP21_0-70004903.SCA]
version status: [HIGHER]
deployment status: [Admitted]
description: []
]#

#2.0#2021 08 06 22:00:54:491#+0800#Info#/System/Server/Deployment#
com.sap.ASJ.dpl_dc.001087#BC-JAS-DPL#tc~bl~deploy_controller#C023130004#19500510##
com.sap.engine.services.dc.cm.deploy.impl#J2EE_ADM_SID#10##8E61#84c7e8c36100bc##0#
Thread[DeployThread[sap.com_MDM_CONNECTOR],5,Managed_Application_Thread]#Plain#com.sap.engine.services.monitor.mbeans.MonitorResourceBundle#
 [Server 00 00_19472] (371) :Component has been delivered: [sdu id: [sap.com_MDM_CONNECTOR]
sdu file path: [E:\\usr\\sap\\SID\\J00\\j2ee\\cluster\\server0\\temp\\tc~bl~deploy_controller\\archives\\371\\MDMCONN7521_3-70004906.SCA]
version status: [HIGHER]
deployment status: [Admitted]
description: []
]#

#2.0#2021 08 06 22:01:04:492#+0800#Info#/System/Server/Deployment#
com.sap.ASJ.dpl_dc.001048#BC-JAS-DPL#tc~bl~deploy_controller#C023130004#19500510##
com.sap.engine.services.dc.cm.deploy.impl#J2EE_ADM_SID#10##8E61#84c7e8c36100bc##0#
Thread[RMI/IIOP Worker [4],5,Dedicated_Application_Thread]#Plain#com.sap.engine.services.monitor.mbeans.MonitorResourceBundle#
 [Server 00 00_19472] (371) :Deployment finished with result: [The status of the deployed SDUs is Warning. 
Additional information: 
]#

#2.0#2021 08 06 22:01:04:502#+0800#Info#/System/Server/Deployment#
com.sap.ASJ.dpl_dc.000001#BC-JAS-DPL#tc~bl~deploy_controller#C023130004#19500510##
com.sap.engine.services.dc.cm.deploy.impl#J2EE_ADM_SID#10##8E61#84c7e8c36100bc##0#
Thread[RMI/IIOP Worker [4],5,Dedicated_Application_Thread]#Plain#com.sap.engine.services.monitor.mbeans.MonitorResourceBundle#
 [Server 00 00_19472] (371) :===== Summary - Deploy Result - Start =====
------------------------
Type | Status  : Count
------------------------
 > SCA(s)
   - [Success] : [3]
   - [Warning] : [1]
 > SDA(s)
   - [Success] : [19]
   - [Warning] : [1]
------------------------
------------------------
Type | Status  : Id
------------------------
 > SCA(s)
   - [Success] : sap.com_SRM_MDM_CAT, sap.com_MDM_WEB_UI, sap.com_MDM_JAVA_API, 
   - [Warning] : sap.com_MDM_CONNECTOR, 
 > SDA(s)
   - [Success] : sap.com_MDM_CONNECTOR/sap.com_tc~mdm~cat~wd, sap.com_MDM_CONNECTOR/sap.com_tc~mdm~apireset, 
                 sap.com_SRM_MDM_CAT/sap.com_tc~mdm~srmcat~mdmadministration, sap.com_SRM_MDM_CAT/sap.com_tc~mdm~srmcat~redirect, 
                 sap.com_SRM_MDM_CAT/sap.com_tc~mdm~srmcat~uiutil, sap.com_SRM_MDM_CAT/sap.com_tc~mdm~srmcat~uiconf, 
                 sap.com_SRM_MDM_CAT/sap.com_tc~bs~craft~wd~form~face, sap.com_SRM_MDM_CAT/sap.com_tc~mdm~srmcat~uiprod, 
                 sap.com_SRM_MDM_CAT/sap.com_tc~mdm~srmcat~uisearch, sap.com_SRM_MDM_CAT/sap.com_tc~mdm~srmcat~import1, 
                 sap.com_SRM_MDM_CAT/sap.com_tc~mdm~srmcat~config, sap.com_SRM_MDM_CAT/sap.com_tc~mdm~srmcat~pricesorter,
   - [Warning] : sap.com_MDM_CONNECTOR/sap.com_tc~mdm~connector, 
------------------------
===== Summary - Deploy Result - End =====
#

You May Also Like

Leave a Reply?