Is there a way you can dynamically change the logo and the header background colour based on the organisation that is logging into the apex application
I am using the LDAP directory authentication scheme to allow users into the application. I also have a users table but this is not being used for login purposes, it is mainly for showing/hiding buttons based on their access level (user,super user,admin)
However in this user table I now want to introduce a company column, so if an employee from company A logs in they see their logo and colour background as defined in the CSS and when another employee from company B logs in they see their logo and colour background as defined in the CSS
<a href="#HOME_LINK#" id="uLogo">#LOGO#</a>
I have come across this article How to change the logo in oracle apex based on user logged into the application - Stack Overflow but can't understand how the PL/SQL shown in their source, I have created an application item called 'company' but can't work out how it all fits together? and more importantly show logo A to employees of company A, logo B to employees of company B etc