Cognos Analytics

Cognos Analytics

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

 View Only
  • 1.  How to remove "Send report to mobile device" in v11.2.4?

    Posted Thu September 26, 2024 06:33 AM

    Hi,

    I've disabled the mobile service in Cognos Configuration.

    I believe I've tried to remove all Capabilities for Mobile:

    Then this option is still available in Delivery when I use "Run as" / "Run in background" (enabled): 

    Is there any advanced option to disable this feature?

    Best regards,



    ------------------------------
    Patrick Neveu
    Collaboration Betters The World (CBTW)
    IBM Champion
    ------------------------------


  • 2.  RE: How to remove "Send report to mobile device" in v11.2.4?
    Best Answer

    Posted Thu September 26, 2024 09:43 AM
      |   view attached

    As much as I hate using CSS to do stuff like this, I'm not seeing any way to remove the row directly. Instead we could use an extension to embed CSS with the following:

    Call this style.css

    .ba-common-container.ba-common-flexLayout-item.opt_section:has([data-tid="TOGGLE_SUBOPT_mobile"]) {display:none}

    The following spec.json 

    {
      "name": "customCSS",
      "extensions": [
        {
          "perspective": "common",
          "features": [{"id": "customCSS","cssStyles": ["v1/ext/customCSS/style.css"]}]
        }
      ]
    }

    Zip it and upload as an extension. The row will be invisible to the user.


    I've also attached the zip to the post.



    ------------------------------
    Paul Mendelson Product Manager
    Product Manager
    PMsquare
    ------------------------------

    Attachment(s)

    zip
    customCSS.zip   692 B 1 version


  • 3.  RE: How to remove "Send report to mobile device" in v11.2.4?

    Posted Thu September 26, 2024 12:13 PM

    Thank you Paul, you are my hero... Again!

    Best regards,



    ------------------------------
    Patrick Neveu
    Collaboration Betters The World (CBTW)
    IBM Champion
    ------------------------------