Is there a way to view the full path for Incident Classification (Category column in Portal)?
It would be also nice to have the possibility to search (filter) by selecting the parent (containing all the enum list related to the parent) in the Search (Classification contains "").
Thanks.
Best Answer
-
Geoff_Ross Cireson Consultant O.G.Hi Jacky,
You can do the first part but creating / editing a custom Incident Form. (I'll not going into that as its documented elsewhere but let me know if you need more info). Add the property ShowPath to your Enum properties and set equal to true.
EG
{ DataType: "Enum", PropertyDisplayName: "Classification", PropertyName: "Classification", EnumId: '1f77f0ce-9e43-340f-1fd5-b11cc36c9cba', ShowPath: true }
Geoff8
Answers
You can do the first part but creating / editing a custom Incident Form. (I'll not going into that as its documented elsewhere but let me know if you need more info). Add the property ShowPath to your Enum properties and set equal to true.
EG
{ DataType: "Enum", PropertyDisplayName: "Classification", PropertyName: "Classification", EnumId: '1f77f0ce-9e43-340f-1fd5-b11cc36c9cba', ShowPath: true }
Geoff
As for the second, it's possible to SQL Query the Child Enum(s) for a particular Parent Enum using CTE Recursion and then you'd have a list of child Ids you could search for.
Thanks a lot for info. I will try to implement the solutions you proposed and I'll come back.
For the query I use for the moment the WorkItems cube and it's enough for reporting. I just wanted to implement it in the Cireson Portal for analysts (SEARCH page)
Best regards.
Hi, what other properties are also available on these, is there a list of available properties???
They are all documented here.
https://support.cireson.com/KnowledgeBase/View/51#/
Geoff
On Selection:
After Apply
Edit: My mistake, I should have used ShowPath: true. It works now using the following:
{ DataType: "Enum", PropertyDisplayName: "Classification", PropertyName: "Classification", Required: true, EnumId: '1f77f0ce-9e43-aaaa-1fd5-b11cc36c9cba', ShowPath: true },
@Geoff_Ross can this be done for SR? I added/edited this line - { DataType: "Enum", PropertyDisplayName: "Area", PropertyName: "Area", EnumId: "3880594c-dc54-9307-93e4-45a18bb0e9e1",ShowPaht:true}, - but once I refresh/save the SR it reverts back to the last item in the path.
thanks
Hi Sandra,
Should work on SR. Looks like you have a typo in your snippet there. Is that a direct paste? ShowPath
Geoff
Geoff,
That was the issue. Thank you