Announcements
Hi, I'm trying to see the base enum values for the salesstatus. I tried looking at the properties of the elements but it does not seem to be there.
can someone help?
Thx in advance
Hi,
UseEnumvalue property is disabled for SalesStatus. So, you will not be able to see the enum values.
Check SalesStatus enum properties from application explorer.
Uday
I did but the value is not displayed on the property sheet.
See the property of the salesstaus enum from application explorer.
You will find "UseEnumValue = No"
Alright, so are you saying there is no way to see the enum vaules except in code?
Perfect, you cannot see it and use it.
hmm....it must be stored somewhere in a table or something but thanks for answering the question.
The information above is not correct. It's not related to UseEnumValue - it's caused by the fact that the enum is extensible (IsExtensible=True).
It means that additional elements can be added in extensions and if everybody had to pick a numeric value, there would be a huge risk of conflicts. Therefore extensible enums don't let you set values - values are assigned automatically by the system.
If you want to see numeric values used in your particular environment, look into ElementValueTable (directly in the SQL database). Like this:
select EnumValueTable.* from EnumValueTable join EnumIdTable on (EnumIdTable.Id = EnumValueTable.EnumId) where EnumIdTable.Name = 'SalesStatus'
Just don't forget that other environments may use different values.
I missed telling the fact that isextensible property. The enum values are non deterministic when isextensinle property is true whereas db synchronization generate automatic values.
What Martin said!
He implicitly says it but let me state it explicitly. That means the values CAN be different between your environments! So do not ever use the numeric values. EVER.
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Jump in, show your community spirit, and win prizes!
Expanding mentorship, skilling, and AI innovation
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Abhilash Warrier 658 Super User 2026 Season 1
André Arnaud de Cal... 632 Super User 2026 Season 1
Giorgio Bonacorsi 570