CA Service Management

 View Only
  • 1.  Status Change History Table

    Posted Aug 24, 2015 02:12 AM

    Dear All,

     

    Can somebody tell me in which table the details of Status Change History is stored, that is the content we see when we click the Status of the request.

     

    In CA Service Catalog version 12.7.

     

    Thank you



  • 2.  Re: Status Change History Table

    Posted Aug 24, 2015 02:52 AM

    usm_request_status table captures the status change for all request. It includes column for old status and new status value. This should help you.



  • 3.  Re: Status Change History Table

    Posted Aug 24, 2015 03:14 AM

    tonsh03 This table has the status change values, What I am referring is the table where the action taken, say Approval Done , Implementation in Progress all those gets captured.

    In simple the contents we see when we click the Current Status of the request.



  • 4.  Re: Status Change History Table
    Best Answer

    Posted Aug 24, 2015 10:38 AM

    Hi!

     

    Following is the query executed when the request status link is selected:

     

    select user_id as modified_by, status_date as timestamp, status
    from usm_request_status
    where request_id = <request id> and subscription_detail_id is NULL
    order by request_status_id asc
    

     

    The status value correlates to the associated string within %USM_HOME%\view\webapps\usm\locale\icusen\request\requestshared.xml which is displayed in the UI (i.e. Approval Done).

     

    Thanks,
    Jason



  • 5.  Re: Status Change History Table

    Posted Aug 26, 2015 09:30 AM

    We added a table to map the status codes to the status text and use this in joined queries.



  • 6.  Re: Status Change History Table

    Posted Aug 28, 2015 08:04 AM

    This helps Jason.. Thank you..