By using this website, you agree to our Terms of Use (click here)
Normally, on the Acumatica login screen, you have the option to choose a Tenant (formerly called a "Company" prior to Acumatica 2017 R2).
But you might want to hide the option in a Production environment in case you have some Testing tenants out there that you don't want people to see.
Normally it looks like this:
But you can hide the drop-down selector.
When you install the instance, you can choose the Secure Tenant on Login Form option like this:
Or, you can just do it manually. Find the following line in the Web.config file:
<add name="PXSqlDatabaseProvider" type="PX.Data.PXSqlDatabaseProvider, PX.Data" connectionStringName="ProjectX" companyID="" secureCompanyID="False" />
And change "False" to "True" so it reads like this:
<add name="PXSqlDatabaseProvider" type="PX.Data.PXSqlDatabaseProvider, PX.Data" connectionStringName="ProjectX" companyID="" secureCompanyID="True" />
Once you do that, the login screen won't display the drop-down:
When you login, it will take you right into Acumatica if you only have access to one Tenant. But if you have access to more than one Tenant, it will then show you the Tenants you have access to after you login since now the system knows who you are and what you have access to:
It looks like post is from 7 years ago. Is this still possible to do in the web app version after the instance has already been set up (we have been on Acumatica for about 15 months)?