We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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)'; } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:
Example Output
The text was updated successfully, but these errors were encountered: