JAL Variable naming new feature and feature reminder
Jalmaraz
667
Introduction
About extension JAL Variable Naming - Visual Studio Marketplace
In this post I want to tell what the value and use of my naming extension is, in current extension ecosystem, where there are other naming and variable editing extensions in Marketplace.
Most of my extensions are focused to help convert old C/SIDE projects to extensions. For this purpose, the main naming feature in my extension is selection renaming:
In this post I want to tell what the value and use of my naming extension is, in current extension ecosystem, where there are other naming and variable editing extensions in Marketplace.
Most of my extensions are focused to help convert old C/SIDE projects to extensions. For this purpose, the main naming feature in my extension is selection renaming:
New rename duplicate feature
The new feature for selection renaming is detect duplicate variable subtypes in scope and rename them this way, from:
LinVta: Record "Sales Line";
LinVta2: Record "Sales Line";
To:
Multiple_SalesLine_Old_LinVta: Record "Sales Line";
Multiple_SalesLine_Old_LinVta2: Record "Sales Line";
This behavior must be configurated in the setting:
Later, we can detect them easily in the file, and give them a definitive name.
Other old naming feature
For old native language code conversion too, we have the setting “Chars From” and “Chars To”:So, if we have this old native language table:
table 69001 "Mov. posición detallado"
When we rename an instance of it, we can see how chars with accents will be replace by chars without accents, and the first letter of every word become capital despite was lowercase in the object name:
MovPosicionDetallado: Record "Mov. posición detallado";
*This post is locked for comments