Created
March 21, 2023 17:25
-
-
Save patrick711/9d75d1c8c7c24f665febc8d0d4085daf to your computer and use it in GitHub Desktop.
An example of a page that has been secured against use by unauthorized users
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#region Constructor | |
public ISPSOut846SendProcess() | |
{ | |
Customers.SetProcessAllCaption("Send All"); | |
Customers.SetProcessCaption("Send"); | |
Customers.SetProcessDelegate(SendData); | |
ISPSCustomerSettings settings = CustomerSettings.Current; | |
if (!(settings.OutboundInventoryAdviceEnabled ?? false)) | |
{ | |
throw new PXSetupNotEnteredException(ISPSMessages.FeatureNotEnbabled, typeof(ISPSCustomerSettings), "Outbound 846"); | |
} | |
} | |
#endregion |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment