---
sourceDocument: Xanadu API Reference
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/xanadu/api-reference

 Release :

    - xanadu

ft:locale :

    - en-US

ft:publication_title :

    - Xanadu API Reference

ft:clusterId :

    - crapiref

bundleId :

    - crapiref

workflow :

    - Creator


---

# WorkflowModelManagerAjax - Global

# WorkflowModelManagerAjax - Global {#ariaid-title1}

* Release version: Xanadu
* 
* Updated August 1, 2024
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 minute to read

The WorkflowModelManagerAjax script include provides an AjaxProcessor wrapper for the WorkflowModelManager script include. This class derives from
AbstractAjaxProcessor.

Use this class in the Workflow Debug context menus.

## WorkflowModelManagerAjax - getExecutedHistory( ) {#ariaid-title2}

Puts the execution history into the return parameter based on the query
string.
{#r_WFMMA-getExecutedHistory__table_tgk_kpt_st__entry__3}

| Name | Type | Description |
|-|-|-|
| None |   |   |
[Table 1. Parameters]

{#r_WFMMA-getExecutedHistory__table_tgk_kpt_st} {#r_WFMMA-getExecutedHistory__table_ugk_kpt_st__entry__2}

| Type | Description |
|-|-|
| void |   |
[Table 2. Returns]

{#r_WFMMA-getExecutedHistory__table_ugk_kpt_st}

## WorkflowModelManagerAjax - getFinalExecutedActivityIdList( ) {#ariaid-title3}

Returns the final execution activity list based on a query string.
{#r_WFMMA-gtFnlExexActivIdLst__table_xgk_kpt_st__entry__3}

| Name | Type | Description |
|-|-|-|
| None |   |   |
[Table 3. Parameters]

{#r_WFMMA-gtFnlExexActivIdLst__table_xgk_kpt_st} {#r_WFMMA-gtFnlExexActivIdLst__table_ygk_kpt_st__entry__2}

| Type | Description |
|-|-|
| void |   |
[Table 4. Returns]

{#r_WFMMA-gtFnlExexActivIdLst__table_ygk_kpt_st}  
This example shows how to obtain the sys_ids of an executed activity list.

    var model = new WorkflowModelManagerAjax(); // Initiate the class

      model.getParameter = function(paramName) {
        return {
           sysparm_key_id: "0213a4a607e0011094b4fe4f7c1ed0e2", // sys_id of workflow context
           sysparm_key_table: 'wf_context'
        }[paramName];
      } // Override the parameters while calling from server side

      model.getExecutedHistory();
      var finals = model.getFinalExecutedActivityIdList(); // Get the list of IDs
      finals = JSON.parse(finals);
      var finalarrofID = finals.ids;
        for ( var x = 0; x < finalarrofID .length; x++ ) {
          gs.print(JSON.stringify(finalarrofID[x]) ); // Print the sys_ids of workflow history records
        }

Output:

    WorkflowModelManagerAjax: creating new WorkflowModelManager for context=0213a4a607e0011094b4fe4f7c1ed0e2
    WorkflowModelManagerAjax: returning 4 ActivityHistoryRecords
    WorkflowModelManagerAjax: returning 4 activities  in execution path for 0213a4a607e0011094b4fe4f7c1ed0e2
    *** Script: "0a13a4a607e0011094b4fe4f7c1ed0e3"
    *** Script: "d61368a607e0011094b4fe4f7c1ed027"
    *** Script: "de1368a607e0011094b4fe4f7c1ed02b"
    *** Script: "961368a607e0011094b4fe4f7c1ed02f"

## WorkflowModelManagerAjax - getRolledBackActivityIdList( ) {#ariaid-title4}

Puts the rollback activity list into the return parameter based on the query
string.
{#r_WFMMA-gtRolledBackActivityIdLst__table_vgk_kpt_st__entry__3}

| Name | Type | Description |
|-|-|-|
| None |   |   |
[Table 5. Parameters]

{#r_WFMMA-gtRolledBackActivityIdLst__table_vgk_kpt_st} {#r_WFMMA-gtRolledBackActivityIdLst__table_wgk_kpt_st__entry__2}

| Type | Description |
|-|-|
| void |   |
[Table 6. Returns]

{#r_WFMMA-gtRolledBackActivityIdLst__table_wgk_kpt_st}

