i am working on BC version 16.0, as in BC 16.0 option field is replaced with enum, as you can see here (
) that i am extending a "Sales Line Type" enum and adding a new value to it. But when i inspect the "Sale Line" table it is showing that the field Type is option and not an enum (
). So the value i have added to enum is not displayed.
How can i extend "Sales Line Type"? am i doing something wrong?
Answers
If per tenant use 50000 instead of 6.
Think what happens if MS add a new value with number 6 😉
But it doesn't work like that, i have added multiple values in the range >=50000 but no success.
If you can't make it work with an additional table relationship, I would submit an issue in GitHub
RIS Plus, LLC
i have already added additional table relationship
but for now i have found a workaround, by going through the standard code i have found this
the tooltip text i was looking at was not of the field Type but of the field FilteredTypeField, so this inspired me do the following changes in the pageextension
and boom, it worked out
You can report the issue yourself here: https://github.com/microsoft/AL/issues
RIS Plus, LLC