Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Automatic Prefix / Suffix for new Enum Values in EnumExtensions #262

Open
pri-kise opened this issue Sep 2, 2022 · 0 comments
Open

Comments

@pri-kise
Copy link
Contributor

pri-kise commented Sep 2, 2022

If create an enum extension that adds new values, I would love a feature, that automatically adds a Prefix to the new Enum Values.

Example Input:

enumextension 50000"XXX Report Selection Usage" extends "Report Selection Usage"
{
    value(50000; "Sales Special Document")
    {
        Caption = 'Sales Special Document';
    }
    value(50001; "Purch.Special Doc. (Excel)")
    {
        Caption = 'Purch.Special Doc. (Excel)';
    }
}

Example Output

enumextension 50000"XXX Report Selection Usage" extends "Report Selection Usage"
{
    value(50000; "XXX Sales Special Document")
    {
        Caption = 'Sales Special Document';
    }
    value(50001; "XXX Purch.Special Doc. (Excel)")
    {
        Caption = 'Purch.Special Doc. (Excel)';
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant