09/21/2023 08:30 AM
We have deployed v23.9 to Development and are seeing the great new feature that shows the application icon on ARS when the application was onboarded with Application Onboarding feature. It looks great!
However, we have many applications that are not part of AOB, or that had an issue with AOB so we deployed using classic method. Is there a way to update the application icons in v23.9 for this scenario?
Sample screenshots:
09/21/2023 08:46 AM
Follow below steps
1. Image size should be 400*400
2. Upload image from User Interface Branding Configuration -- Images Section
3. Run Update query on Endpoints (not available on UI now)
update endpoints set image_id='AWS_RV.png' where endpointname='AWS' limit 1;
4. Run Microservices Job
09/21/2023 08:52 AM
How do I run update query? Custom query job is deprecated.
09/21/2023 09:11 AM - edited 09/21/2023 09:11 AM
SELECT 'AWS_RV.png' as IMAGE_ID,ENDPOINTNAME FROM ENDPOINTS WHERE ENDPOINTNAME='AWS'
09/21/2023 11:28 AM
Query you suggested does not work, but this one does:
SELECT 'imagename.png' as ENDPOINTS__IMAGE_ID,ep.endpointkey as ENDPOINTS__PRIMARYKEY FROM ENDPOINTS ep WHERE ep.endpointname='The_Endpoint_Name'
Query ran successfully, but image is not updated. It may be due to step 2. What is the right method to upload the image at the UIBC page? There are specific sections for each type of image to be uploaded and where it will be used. I do not see a generic "upload image to the Saviynt EIC" option.
09/21/2023 06:57 PM
Upload image from branding navigation .
09/22/2023 07:57 AM
Do you have a screenshot and know that this will work? I believe that is what I did and although the execution query worked, the image is not updated.