Skip to content

Instantly share code, notes, and snippets.

@hasokeric
Last active July 11, 2020 21:10
Show Gist options
  • Save hasokeric/225577b9890b01b0275206ddf6a73731 to your computer and use it in GitHub Desktop.
Save hasokeric/225577b9890b01b0275206ddf6a73731 to your computer and use it in GitHub Desktop.
Epicor Feature Flags
FeatureFlags.InAppNotifications = new Guid("79479C59-021B-40C4-A8D3-2F859FD8CD6B");
FeatureFlags.CdcConfigureDeleteProcessedLogs = new Guid("380B0652-1C47-477F-B25F-C4937EB44185");
FeatureFlags.EnableReportTaskRetry = new Guid("2B53219E-16E6-49ED-9195-66449046371F");
FeatureFlags.EnforeceProcessCallingRules = new Guid("056D0F09-7058-4FED-A7D9-5B969D57FE6D");
FeatureFlags.IdentityProvider = new Guid("8FA3AF1A-89B8-4978-8812-7245A02ACFF2");
FeatureFlags.KineticUI = new Guid("1E17815F-1381-4D9E-B1BA-E57FC86625EE");
FeatureFlags.ApiV2 = new Guid("4A9BF629-F65E-415C-BF18-8C10683C56DF");
Add to your .sysconfig
<featureFlag>
<!-- Path to the system configuration (.sysconfig) file. -->
<SysConfigPath>Config\E10_Migrated102300.sysconfig</SysConfigPath>
<!-- AppServer user ID. -->
<UserID>manager</UserID>
<!-- AppServer password. -->
<Password>manager</Password>
</featureFlag>
Example Command Line:
# Enables In-App Notification aka Push Notifications, once you logout, login you will be prompted to register
FeatureFlag.exe /Enable /ConfigFile=Config\E10_Migrated102300.sysconfig /FeatureID=79479C59-021B-40C4-A8D3-2F859FD8CD6B /Level=System
# Enables Fill By Query, and another widget in In-Trans BPM Builder
FeatureFlag.exe /Enable /ConfigFile=Config\E10_Migrated102300.sysconfig /FeatureID=86A27AF6-DFDF-4C48-88E2-9D13933DAEDE /Level=System
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment