Projects Are Missing from the Project List

Description

When viewing the list of projects in SAS Model Studio, a shared project does not show up consistently in the list. The initial view does not show the project. When the screen is refreshed repeatedly, the project might appear in the list intermittently. However, even when the project appears in the list, attempts to open the project can result in an error.

This issue has been observed for these releases.

The fix is available in subsequent releases.

Solution

The SAS administrator must follow these steps.

  1. Update the deployment to obtain the fix for this issue.
  2. Run the following command to obtain the access token for the user.
    curl --location '<host-machine>:443/SASLogon/oauth/token' \
    --header 'Authorization: Basic c2FzLmVjOg==' \
    --header 'Content-Type: application/x-www-form-urlencoded' \
    --header 'Origin: <host-machine>:443' \
    --data 'grant_type=password&username=<username>&password=<password>'
    
  3. Re-index the SAS Model Studio projects, specifying the access token from the previous command.
    curl --location --request POST '<host-machine>/searchIndex/index/typeJobs/ModelStudioProject' \
    --header 'Authorization: Bearer <access-token>' \
    --header 'Accept: application/vnd.sas.search.index.feed+json' \
    --header 'Origin: <host-machine>:443'  
Last updated: March 16, 2026