Event to be Logged
|
Example Entry
|
---|---|
Creation of an entity (A row is added to the database table)
|
addLoggingConfiguration("PTC.SCA.SCO.WorkDefinition", "CREATE");
|
Creation of an entity and the initial value for each field (A row is added to the database table, and each field that has a value when the row is added)
|
addLoggingConfiguration("PTC.SCA.SCO.WorkDefinition", "ALL", "CREATE");
|
Initial value of a a specific field when the entity is created (The specified field has a value when the row is added to the database table)
|
addLoggingConfiguration("PTC.SCA.SCO.JobOrder", "ID", "CREATE");
|
Update of the value for a specific field (The specified field value changes in the database table)
|
addLoggingConfiguration("PTC.SCA.SCO.JobOrder", "PlannedEndTime", "UPDATE");
|
Update of the value for all fields (Any field value changes in the database table)
|
addLoggingConfiguration("PTC.SCA.SCO.JobOrder", "ALL", "UPDATE");
|
Deletion of an entity (A row is removed from the database table)
|
addLoggingConfiguration("PTC.SCA.SCO.JobOrder", "DELETE");
|