
You configure the logging of changes to PCD objects using a set of properties in SAP NetWeaver Administrator:
The Pcd.Gl.AdminTraceability.Active property determines whether to log changes to the PCD. By default, logging is activated.
The Pcd.Gl.AdminTraceability.IncludedObjectClasses property enables you to limit the scope of the object classes to log. By default, all classes are logged.
In addition, you can specify the object paths to log according to severity level, using the following properties:
Pcd.Gl.AdminTraceability.IncludedPaths.Debug
Pcd.Gl.AdminTraceability.IncludedPaths.Path
Pcd.Gl.AdminTraceability.IncludedPaths.Info
Pcd.Gl.AdminTraceability.IncludedPaths.Warning
Pcd.Gl.AdminTraceability.IncludedPaths.Error
When specifying a list of object classes or object paths to log, you can use the following special characters:
; : To separate between items
* : To signify zero or more characters
? : To signify zero or one characters
Before you configure PCD logging properties, you need to adjust the log debug levels (referred to as Severity ), as follows:
Access SAP NetWeaver Administrator.
Choose .
In the Show dropdown list, choose Logging Categories .
Choose .
Make sure that the Severity is Info .
In the Show dropdown list, choose Tracing Locations .
Choose .
Make sure that the Severity is Info .
Choose Save Configuration .
The severity of the category determines which objects are logged. For example, when the severity of the category is Info , only objects that are included in the configuration for severities Info , Warning and Error are logged.
For information about accessing PCD properties in SAP NetWeaver Administrator, see Configuring PCD Properties .
Specify the object classes to log, using the property: Pcd.Gl.AdminTraceability.IncludedObjectClasses
A list of object class examples is provided in PCD Object Classes .
Examples:
To log all classes that start with com.sap.pcd or com.sap.pcm , use com.sap.pcd.*;com.sap.pcm.*
To log all classes that start with com.sap.pcx , where x stands for any character, use com.sap.pc?.*
Specify the object paths to log for each severity level, using the corresponding property: Pcd.Gl.AdminTraceability.IncludedPaths.<severity level>
Configuring Admin Traceability to log numerous paths with high severities (above Info ) may impact performance, as these paths will always be logged.
User data is located under the portal_content folder. Define the logging path starting from this folder, or below, to ensure more focused logging results.
Examples:
To log all objects in paths that start with portal_content/test1 or portal_content/test2 , use portal_content/test1/*;portal_content/test2/*
To log all objects in paths that start with portal_content/testx , where x stands for any character, use portal_content/test?/* .