[ExtensionOf(classStr(NumberSeqModuleProduction))]final class NumberSeqModuleProductionClassTCI_Extension{ protected void loadModule() { NumberSeqDatatype datatype = NumberSeqDatatype::construct(); //Setup Outside Service Packing Slip ID datatype.parmDatatypeId(extendedTypeNum(TCI_OutsideServicePackingSlipId)); datatype.parmReferenceHelp(literalStr(/Outside Service Packing Slip Id/)); datatype.parmWizardIsContinuous(false); datatype.parmWizardIsManual(NoYes::No); datatype.parmWizardIsChangeDownAllowed(NoYes::No); datatype.parmWizardIsChangeUpAllowed(NoYes::No); datatype.parmWizardLowest(00001); datatype.parmWizardHighest(99999); datatype.parmSortField(6); this.create(datatype); next loadModule(); }}
internal final class TCI_OutsideServiceNumSeqRunClass{ /// <summary> /// Class entry point. The system will call this method when a designated menu /// is selected or when execution starts and this class is set as the startup class. /// </summary> /// <param name = /_args/>The specified arguments.</param> public static void main(Args _args) { NumberSeqModuleProduction numSeqMod = new NumberSeqModuleProduction(); numSeqMod.load(); }}
If anyone could point me in the direction of what I might be missing, that would be super helpful.