How do you retrieve the specific multi-level categorization information associated with a specific service ticket? For example, here i want to retrieve "Retail Price" :
I need this information to display it in another screen (ticket search result screen, to display each ticket with its motive and submotive).
I'm still a beginner in SAP CRM development and so far I've only come across ways to get the entire categorization schema and not the specific values associated to the service ticket, or ways to get only the first level category (Motive in this case).
You can get the categories like this:
Read service ticket subject
Get categorization schema GUID
Reading the categories recursively
Output
Note Step 3 can also be implemented through methods of class cl_crm_ml_category_util
cl_crm_ml_category_util=>get_cat_kids_all
(snippet)cl_crm_ml_category_util=>get_selected_category_tree
(snippet)P.S. Sorry for late answer :)