Cognos Analytics

Cognos Analytics

Connect, learn, and share with thousands of IBM Cognos Analytics users! 

 View Only
  • 1.  Add Recent as a Tab on 11.2.4 Content View

    Posted Wed October 18, 2023 12:44 PM

    Does anyone have an extension or JSON code that is needed to add the recently run reports as a tab in Cognos 11.2.4?  I have the code to add custom folders in the team content but I can't find a way to add recent.



    ------------------------------
    Todd Schuman
    ------------------------------


  • 2.  RE: Add Recent as a Tab on 11.2.4 Content View

    Posted Wed October 18, 2023 05:37 PM

    {
      "name": "Most Recent Tabs",
      "extensions": [
        {
          "perspective": "common",
          "features": [
            {
              "id": "mostRecent",
              "excludeItems": [],
              "collectionItems": [
                {
                  "containerId": "com.ibm.bi.content.navigator",
                  "id": "com.ibm.bi.content.navigator.MostRecent",
                  "legacyId": "com.ibm.bi.contentApps.MostRecent",
                  "name": "Most Recent",
                  "label": "Most Recent",
                  "stateId": "MostRecentView",
                  "weight": 1,
                  "properties": {
                    "url": "v1/users/~/mrus",
                    "toolbar": [
                      "filter",
                      "sort",
                      "details",
                      "refresh",
                      "settings"
                    ],
                    "listOptions": true
                  }
                }
              ]
            }
          ]
        }
      ]
    }



    ------------------------------
    Rajesh Kumar Vanam
    ------------------------------



  • 3.  RE: Add Recent as a Tab on 11.2.4 Content View

    Posted Thu October 19, 2023 08:06 AM

    Thank you, Rajesh.  Works great!



    ------------------------------
    Todd Schuman
    ------------------------------