Technology Blogs by SAP
Learn how to extend and personalize SAP applications. Follow the SAP technology blog for insights into SAP BTP, ABAP, SAP Analytics Cloud, SAP HANA, and more.
cancel
Showing results for 
Search instead for 
Did you mean: 
There are situations, when a Cloud Foundry Org is left without at active Org Manager. In such situations an active SubAccount Administrator can add a new Org Manager via the following process

  1. Subaccount Admin navigates to “BTP Cockpit -> Instances and Subscriptions -> Environments” – this is the table on the bottom of the screen

  2. There should be one “Cloud Foundry Runtime” Environment entry in the table

  3. Select “Update” from the “…” menu

  4. Press “Next >” to go to the next screen, where a JSON can be provided.

  5. Use the following format to provide the user details:


    1. For adding users with the default sap.ids origin use this format (no need to specify origin):















      {

          "usersToAdd": [

             {

             "email""john.do@sap.com",

             "id""I999999"

          }

        ]

      }







    2. For adding users with customIdp origin use this format:
      (This is only valid if you know the custom IDP value of the user, and the idp is registered under the CF framework)


















    3. {

          "usersToAdd": [

             {

             "email""john.do@sap.com",

             "id""I999999"

             "origin": "{{custom.idp.value}}"

          }

        ]

      }







    4. You can also add multiple users with and without origin:















      {

          "usersToAdd": [

             {

             "email""john.do@sap.com",

             "id""I999999"

          },

          {

             "email""john.do@sap.com",

             "id""I999999"

             "origin": "{{custom.idp.value}}"

          }

        ]

      }







    5. To remove users as org admin just change the name of the json struct to "usersToRemove" like so:















      {

          "usersToRemove": [

             {

             "email""john.do@sap.com",

             "id""I999999"

          }

        ]

      }








  6.  Press “Update Instance” to complete the process

  7. The Update takes a few seconds to complete, and once done, the chosen user will become Org Manager. To complete the process, this configuration has to be removed, else there will be errors like “User is already Org Manager”. To remove the configuration – follow the steps above, but replace the text from 5.) with “{}” and update the instance again

10 Comments