Is it possible to filter certain activity log entries from end user displays?
Release: 14.1 or higher
CA Service Desk Manager
The "classic_sla_processing" option is NOT installed.
<PDM_IF "$prop.view_internal" == "0">
<PDM_MACRO name=tab title="Activities" height=300 id=alg src="OP=SEARCH+FACTORY=alg+QBE.EQ.call_req_id=$args.persistent_id+QBE.EQ.internal=0">
<PDM_ELSE>
<PDM_MACRO name=tab title="Activities" height=300 id=alg src="OP=SEARCH+FACTORY=alg+QBE.EQ.call_req_id=$args.persistent_id">
</PDM_IF>
<PDM_IF "$prop.view_internal" == "0">
<PDM_MACRO name=tab title="Activities" height=300 id=alg src="OP=SEARCH+FACTORY=alg+QBE.EQ.call_req_id=$args.persistent_id+QBE.EQ.internal=0+QBE.NE.type=SLASTART">
<PDM_ELSE>
<PDM_MACRO name=tab title="Activities" height=300 id=alg src="OP=SEARCH+FACTORY=alg+QBE.EQ.call_req_id=$args.persistent_id+QBE.NE.type=SLASTART">
</PDM_IF>
Important Note: This solution is NOT supported by Broadcom Technical Support as it involved changing the source code via WSP rather than using the WSP GUI to achieve the requirement.
To find the code that corresponds to the activity log type, run the following command:
pdm_extract -f "select code,sym, description from Act_Type" > pdm_extract.code.sym.description.Act_Type.txt
Then search the output file for the desired type.
For example in this knowledge article, the output of the relevant entry would be:
{ "SLASTART" ,"A Service Type Event was attached" ,"Attach Service Type Event" }