New features available in Pimics
In Pimics we use the similiar aproach as Microsoft uses in Business Central. Several funcionalities are available under preview mode, so existing customers can enable it. Later on all customers will get the funcionality. This helps us with onboarding these new funcions in customers who use a customizations or specific processes in Pimics.
Open available features and enable it
- Choose the Search icon, enter Allium Feature Management and then choose the related link.
- See field State to identfiy if the feature is turn on or off
- Select a line to enable and run action Enabled
- Say Yes to confirm "Run data upgrade on enabled feature Name of the feature?"
- State is now Enabled
Flexible categories
Allows users to skip a certain levels and still keep the inheritacne approach.
Technical changes
Fields like Standard Item Group on Items, Standard Product Group on Product Groups, etc. are obsolete. TODO: Write new fields
Customizations of Pimics or Business Central
If you have a customizations you can use this code to identify if the feature is enabled:
var
afm: Codeunit "PIMXAC Feature Management";
begin
...
if afm.IsEnabled('FEATUREID') then
...
end;