RunBase Class [AX 2012]

The RunBase class is a framework for classes that need a dialog for user interaction and that need the dialog values to be saved per user.

Syntax

class RunBase extends Object implements SysSaveable, SysRunable

Run On

Called

Methods

  Method Description
Gg822570.pubmethod(en-us,AX.60).gif cancelTimeOut Cancels a previous method call to the setTimeOut method. (Inherited from Object.)
Gg822570.pubmethod(en-us,AX.60).gif canGoBatch Returns false in this class.
Gg822570.protmethod(en-us,AX.60).gif canSwapBetweenCS Controls whether a calledFrom class that is instantiated on the server should have its prompt executed on the client.
Gg822570.privmethod(en-us,AX.60).gif canSwapBetweenCSPrim Indicates whether it is possible to pack the class, reinstantiate a new class on the client or server, and then unpack the packed class into the new class.
Gg822570.pubmethod(en-us,AX.60).gif caption Returns the description from the current class by calling the static description method on the class if there is one.
Gg822570.pubmethod(en-us,AX.60).gif checkCloseDialog Must be called in the CloseOk method of a RunBase dialog box.
Gg822570.protmethod(en-us,AX.60).gif cleanupDialog Provides a way to clean up after a dialog box has been canceled.
Gg822570.protmethod(en-us,AX.60).gif dialog Returns a class that contains the methods that are described by the RunBaseDialogable interface.
Gg822570.pubmethod(en-us,AX.60).gif dialogClear Clears the contents of the dialog box.
Gg822570.pubmethod(en-us,AX.60).gif dialogInit Initializes the dialog box.
Gg822570.protmethod(en-us,AX.60).gif dialogInternal
Gg822570.pubmethod(en-us,AX.60).gif dialogMake Obtains the dialog from a RunBase class.
Gg822570.protmethod(en-us,AX.60).gif dialogPost Makes it possible to add controls after the main dialog method has been run because this method is called after the dialog method is called.
Gg822570.protmethod(en-us,AX.60).gif dialogPostInit Called right after the RunBase.dialogInit Method method.
Gg822570.pubmethod(en-us,AX.60).gif dialogPostRun Called after the Dialog.run Method class.
Gg822570.protmethod(en-us,AX.60).gif dialogReInit Reinitializes the dialog box.
Gg822570.pubmethod(en-us,AX.60).gif dialogSelectCtrl When using the dialog class for dialog, this method is called whenever a control is selected.
Gg822570.pubmethod(en-us,AX.60).gif dialogTask When using the Dialog Class class for dialog, this method is called from the task method in the dialog form.
Gg822570.pubmethod(en-us,AX.60).gif dialogUpdate Updates the dialog, for example after reinitializing the query.
Gg822570.pubmethod(en-us,AX.60).gif dialogUpdateQuery Updates the query in the dialog box.
Gg822570.pubmethod(en-us,AX.60).gif equal Determines whether the specified object is equal to the current one. (Inherited from Object.)
Gg822570.pubmethod(en-us,AX.60).gif getFromDialog Assigns the dialog values to the internal variables.
Gg822570.pubmethod(en-us,AX.60).gif getLast Gets the last choice that is stored in the last value table.
Gg822570.pubmethod(en-us,AX.60).gif getRunBase
Gg822570.pubmethod(en-us,AX.60).gif getTimeOutTimerHandle Returns the timer handle for the object. (Inherited from Object.)
Gg822570.pubmethod(en-us,AX.60).gif handle Retrieves the handle of the class of the object. (Inherited from Object.)
Gg822570.protmethod(en-us,AX.60).gif inGetSaveLast Returns true when the GetLast or SaveLast method is executed.
Gg822570.pubmethod(en-us,AX.60).gif init Gives RunBase the same profile as, for example, a FormRun class. This method is not used in the standard application.
Gg822570.pubmethod(en-us,AX.60).gif initParmDefault Initializes the internal variables.
Gg822570.pubmethod(en-us,AX.60).gif isSwappingPrompt Checks if the program is currently swapping from server to client.
Gg822570.pubmethod(en-us,AX.60).gif lastValueDataAreaId
Gg822570.pubmethod(en-us,AX.60).gif lastValueDesignName
Gg822570.pubmethod(en-us,AX.60).gif lastValueElementName
Gg822570.pubmethod(en-us,AX.60).gif lastValueType
Gg822570.pubmethod(en-us,AX.60).gif lastValueUserId
Gg822570.pubmethod(en-us,AX.60).gif mustLoadSaveQuery Determines whether the last query must be loaded and saved when you leave the form. Called from the SysQueryForm.
Gg822570.pubmethod(en-us,AX.60).gif name Returns the name of the RunBase class.
Gg822570.pubmethod(en-us,AX.60).gif new Initializes a new instance of the RunBase class. (Overrides the new Method.)
Gg822570.pubmethod(en-us,AX.60).gif notify Releases the hold on an object that has called the wait method on this object. (Inherited from Object.)
Gg822570.pubmethod(en-us,AX.60).gif notifyAll Releases a lock on the object that was issued by the wait method on this object. (Inherited from Object.)
Gg822570.pubmethod(en-us,AX.60).gif objectOnServer Determines whether the object is on a server. (Inherited from Object.)
Gg822570.pubmethod(en-us,AX.60).gif owner Returns the instance that owns the object. (Inherited from Object.)
Gg822570.pubmethod(en-us,AX.60).gif pack Serializes the current instance of the RunBase class.
Gg822570.pubmethod(en-us,AX.60).gif parmProgress Gets or sets the Progress parameter.
Gg822570.protmethod(en-us,AX.60).gif prepareForRun Allows subclasses to process the dialog box immediately before the dialog box.Run method.
Gg822570.pubmethod(en-us,AX.60).gif progressHide Hides the Progress form.
Gg822570.pubmethod(en-us,AX.60).gif progressInit Initializes the Progress object in RunBase.
Gg822570.pubmethod(en-us,AX.60).gif progressKill Kills the Progress object in RunBase.
Gg822570.pubmethod(en-us,AX.60).gif prompt
Gg822570.protmethod(en-us,AX.60).gif promptPack Wraps a call to the RunBase.pack Method method when packing in the RunBase.promptPrim Method method.
Gg822570.privmethod(en-us,AX.60).gif promptPrim Contains the code for the prompt functionality. The RunBase.prompt Method method just wraps this method.
Gg822570.protmethod(en-us,AX.60).gif promptUnpack Unpacks what the promptPack method has packed.
Gg822570.protmethod(en-us,AX.60).gif putToDialog Enables setting the fields that were just added in the RunBase.dialog Method method. This method is called from the RunBase.promptPrim Method method directly following the RunBase.dialogMake Method method.
Gg822570.pubmethod(en-us,AX.60).gif queryRun Returns the QueryRun object, which is used by the QueryPrompt class.
Gg822570.pubmethod(en-us,AX.60).gif reset Resets the class to its default state.
Gg822570.pubmethod(en-us,AX.60).gif run Contains the code that does the actual job of the class.
Gg822570.pubmethod(en-us,AX.60).gif runBase Returns the RunBase itself.
Gg822570.pubmethod(en-us,AX.60).gif runBaseDialogModifyType_RU
Gg822570.pubmethod(en-us,AX.60).gif saveLast Saves the last choice by using the RunBase.pack Method method.
Gg822570.privmethod(en-us,AX.60).gif setGetLastCalled Sets the internal inGetSaveLast variable.
Gg822570.privmethod(en-us,AX.60).gif setInPrompt Sets the internal inPrompt variable.
Gg822570.privmethod(en-us,AX.60).gif setIsSwappedFromServer Sets the internal isSwappedFromServer variable.
Gg822570.pubmethod(en-us,AX.60).gif setTimeOut Sets up the scheduled execution of a specified method. (Inherited from Object.)
Gg822570.protmethod(en-us,AX.60).gif showClearButton Determines whether to add a Clear button to the dialog box. If you change the return value to true it will add the button.
Gg822570.pubmethod(en-us,AX.60).gif showDefaultButton Determines whether a Default button is to be added to the dialog box. If you change the return value to true, it will add the button.
Gg822570.pubmethod(en-us,AX.60).gif showDialog
Gg822570.pubmethod(en-us,AX.60).gif showIndexFields If this method returns true, it will look for the first enabled index when you are adding query range fields to the dialog and if a data source does not have any ranges specified. It will also show the visible fields from that index.
Gg822570.pubmethod(en-us,AX.60).gif showQuerySelectButton
Gg822570.pubmethod(en-us,AX.60).gif showQueryValues Determines whether a Select button is to be added to the dialog box. If you change the return value to true, the button will be added.
Gg822570.pubmethod(en-us,AX.60).gif toString Returns a string that represents the current object. (Inherited from Object.)
Gg822570.pubmethod(en-us,AX.60).gif unpack Deserializes the packedClass parameter value to an instance of the RunBase class.
Gg822570.pubmethod(en-us,AX.60).gif usageCount Returns the current number of references, that is, the value of the reference counter, that the object has. (Inherited from Object.)
Gg822570.pubmethod(en-us,AX.60).gif validate Validates the state of the internal variables.
Gg822570.pubmethod(en-us,AX.60).gif wait Pauses a process. (Inherited from Object.)
Gg822570.pubmethod(en-us,AX.60).gif xml Returns an XML string that represents the current object. (Inherited from Object.)
Gg822570.pubmethod(en-us,AX.60).gif Gg822570.static(en-us,AX.60).gif ::description Gets the description of the class.
Gg822570.pubmethod(en-us,AX.60).gif Gg822570.static(en-us,AX.60).gif ::getDescription Returns a description of the specified class.
Gg822570.pubmethod(en-us,AX.60).gif Gg822570.static(en-us,AX.60).gif ::getHelpText Returns the Help text from the class that has the specified classId value.
Gg822570.pubmethod(en-us,AX.60).gif Gg822570.static(en-us,AX.60).gif ::getVersion Returns the version number from a container with a packed class.
Gg822570.pubmethod(en-us,AX.60).gif Gg822570.static(en-us,AX.60).gif ::makeObject Instantiates a RunBase class that has the specified class ID.
Gg822570.pubmethod(en-us,AX.60).gif Gg822570.static(en-us,AX.60).gif ::makeObjectOnClient Instantiates a RunBase class on the client.
Gg822570.pubmethod(en-us,AX.60).gif Gg822570.static(en-us,AX.60).gif ::makeObjectOnServer Instantiates the RunBase class on the server.
Gg822570.protmethod(en-us,AX.60).gif Gg822570.static(en-us,AX.60).gif ::promptOnClient Creates a RunBase on the client, unpacks the packed container, runs prompt, and returns the status from prompt in addition to the packed client RunBase.

Top

Remarks

All major update jobs must inherit from this class or from one of its closest inheritances.

This class contains a dialog method that returns an object that must have the methods that are described by the RunBaseDialogable Interface.

To get or set parameters in the class, create methods that are named by the variable name prefixed with parm, for example parmTransDate. Methods that set other variables in the class are prefixed with initParm.

These methods are used, for example, when the dialog box is a form that is created in the tree. In this case, each edit method can make a callback to the Parm class or to the initParm methods.

When the Dialog class is used, the variables are set in the dialog method, and are retrieved in the getFromDialog method.

If a job must be able to run in batch, use the RunBaseBatch Class class.

Be aware of what is packed and what is not, especially when a class is swapped from server to client. For more information, see the RunBase.pack Method and RunBase.canSwapBetweenCS Method methods.

Examples

The following code examples demonstrate the use of the RunBase class. However, they will not compile because the MyRunBase class has not been created.

static void main(args a) 
{ 
    MyRunBase my; 
 
    my = new MyRunBase(); 
    if (my.prompt()) 
    { 
        my.run(); 
    } 
}

Inheritance Hierarchy

Object Class
  RunBase Class
    AccountantLogistics_BR Class
    ACOChooseMonth_BR Class
    AddressCountryRegionInitializationBLWI Class
    AdvancedLedgerEntryCopy Class
    AdvancedLedgerEntryPerformBudgetCheck Class
    AdvancedLedgerEntryPost Class
    AgreementGenerateReleaseOrder Class
    AifEndpointActionValueMapCopy Class
    AlcoholDeclarationCalc_RU Class
    AssetBudgetUpdate Class
    AssetCancelDepSuspension_CZ Class
    AssetChangeGroup Class
    AssetComponentAddToDisassembleAction_JP Class
    AssetConsumptionCreateProposal Class
    AssetConsumptionProposalDelete Class
    AssetConsumptionProposalToJournal Class
    AssetCopy Class
    AssetCreateDepSuspension_CZ Class
    AssetDepBookCheckPost Class
    AssetDepBookConsumptionProposalCreate Class
    AssetDepBookConsumptionProposalToJournal Class
    AssetDepBookDeleteJournalLines Class
    AssetDepBookLVPTransfer Class
    AssetDepBookProposal Class
    AssetDepBookSplit Class
    AssetLVPTransfer Class
    AssetReasonCode Class
    AssetRebuildTables Class
    AssetReclassification Class
    AssetReductionEntryMassUpdate_JP Class
    AssetSplit Class
    AssetWarehouseTransferQuery Class
    AuditPolicyRuleRunBase Class
    AxdSend Class
    BankAccountReconcile Class
    BankAccountTransDateChange_RU Class
    BankBillOfExchangeDocumentCancel Class
    BankBorderoCancel_BR Class
    BankChequeCancel Class
    BankClientAutoReconciliation_RU Class
    BankClientCopyFormat_RU Class
    BankClientExport_RU Class
    BankClientPosting_RU Class
    BankCodaImport Class
    BankCodaImportBase Class
    BankCodaProcessing Class
    BankCodaTransfer Class
    BankCustPaymIdUpdate_NO Class
    BankDepositSlip Class
    BankIBSArchive_BE Class
    BankIBSDownload_BE Class
    BankIBSUpload_BE Class
    BankMarkChequeReconcile Class
    BankNegInstCreate Class
    BankNegInstDelete Class
    BankPaymBalanceXML Class
    BankPaymCancel Class
    BankPositivePayConfirmation Class
    BankPositivePayExport Class
    BankPositivePayFileRecall Class
    BankPrintTestCheque Class
    BankPromissoryNoteDocumentCancel Class
    BatchChangeStatus Class
    BatchDelete Class
    BatchDialog Class
    BatchHistoryDelete Class
    BatchRun Class
    BlackListApplyThreshold_IT Class
    BlackListExport_IT Class
    BlackListTransfer_IT Class
    BOMChangeItem Class
    BOMDesignerCtrl Class
    BOMRouteApprove Class
    BOMRouteCopyJob Class
    BOMRouteVersionApprove Class
    BOMSorting Class
    BudgetManipulation Class
    CaseMakeDependentDialog Class
    CCHTMLSave Class
    ChangeDependences_LT Class
    ChangeStatus_LT Class
    ConceptMainAccount_MX Class
    COSAccountReconcile Class
    COSClsCostBudgetCopy Class
    COSLineStructureCopy Class
    COSReportCopy Class
    CostingVersionCopy Class
    COSVersionCopy Class
    CountingListInTransitPrint_RU Class
    CreditCardCVVEntry Class
    CustAutoCreate Class
    CustBillOfExchangeCancel Class
    CustBillOfExchangeClose Class
    CustBillOfExchangeMarkSentDate Class
    CustCustomFieldInputDialog Class
    CustEinvoiceIntegrationSetStatus Class
    CustEntryCertifChangeReceiptStatus_W Class
    CustEntryCertificateChangeStatus_W Class
    CustInPaym Class
    CustomCorrectionCreate_RU Class
    CustomJournalChargeCalc_RU Class
    CustomJournalGTDBase_RU Class
    CustomJournalGTDFactureCreate_RU Class
    CustomJournalPost_RU Class
    CustomJournalShowTotals_RU Class
    CustomJournalTransCreate_RU Class
    CustPaymManChangeBankAccount Class
    CustPaymManFileChangeDueDate Class
    CustPaymManFileChangePaymentMethod Class
    CustPaymManFileOpen Class
    CustPaymManOutputFile Class
    CustPrepaymentFactureCreate_RU Class
    CustSettleChangePolicy_RU Class
    CustVend_ChangePackingSlipStatus_LT Class
    CustVendConsInvoiceSettleQuery_JP Class
    CustVendCreatePaymJournal Class
    CustVendOutPaym Class
    CustVendPaymFileAnalyze Class
    CustVendPaymProposalModifyPaymAttributes Class
    CustVendPaymProposalTransferToJournal Class
    CustVendSumForPaym Class
    CustWriteOff Class
    CzAdvanceInvoiceCreate Class
    CzAdvanceInvoiceStatusChange Class
    CzAdvancePaymentProposal Class
    CzCustPostAdvanceInvoice Class
    CzCustVendTransOpenFilter Class
    CzTaxCreditMemoCreate Class
    CzTaxDocumentCreate Class
    DirPartyContactInfoAction Class
    DirPartyPostalAddressAction Class
    DMFStagingExecutionParameters Class
    DMFWriteExecutionParameters Class
    DMFWriteExportData Class
    DocuOptionView Class
    DocuToolbarButtonCheck Class
    EcoResProductDimensionRename Class
    EcoResProductVariantCreationMgr Class
    EeCustPaymentReference Class
    EFDocContingencyDialog_BR Class
    EUSalesListCheck Class
    EUSalesListCopyLines Class
    EUSalesListEvat_NL Class
    EUSalesListMark Class
    EUSalesListTransfer Class
    EventBuildValidEventTypeList Class
    EventCreateRule Class
    EventFormQuerySummaryControl Class
    EximApplyDutyDrawback_IN Class
    EximAuthorization_Merge_IN Class
    EximAuthorization_Split_IN Class
    EximBankCertificate_IN Class
    EximDEPBSchedulesCopy_IN Class
    EximSionCopying_IN Class
    FactureDelete_RU Class
    FactureTransDetail_RU Class
    FBCIAPAssetTransCreateFromFiscalDoc_BR Class
    FBICMSAdjustmentCreateFromFiscalDoc_BR Class
    FEACCIndicativePriceUpdate_RU Class
    FiscalReferenceCreationFromInvoices_BR Class
    GanttClient Class
    GanttColor Class
    GanttDialog Class
    GanttSetup Class
    GanttView Class
    GanttVisualization Class
    GIFICodesToFinancialStatementTemplate Class
    GoodsInRouteEngine_RU Class
    Graphics Class
    HcmDepartmentHierarchy Class
    HcmDiscussion2Outlook Class
    HcmDiscussionMultiCreate Class
    HcmEPOpenCourseRegister Class
    HcmJobCopy Class
    HcmLoanItemCreate Class
    HcmPositionActionReactivate Class
    HcmSkillChart Class
    HcmSkillGapByJobSkill Class
    HcmSkillGapJob Class
    HcmSkillGapWorker Class
    HcmSkillMappingReport Class
    HcmSkillMappingSearch Class
    HcmWorkerActionReactivate Class
    HRMAbsenceAdministrationCreate Class
    HRMAbsenceApprove Class
    HRMAbsenceCancel Class
    HRMAbsenceEnter Class
    HRMAbsenceReject Class
    HRMAbsenceRequestAction Class
    HRMAbsenceRequestMultiCreate Class
    HRMAbsenceTransClose Class
    HRMAbsenceTransMarkOpen Class
    HRMAbsenceTransMultiCreate Class
    HRMApplicationCorrespondanceActionUpdate Class
    HRMApplicationEmail Class
    HRMApplicationStatusChange Class
    HRMApplicationWord Class
    HRMCompCreateGrid Class
    HRMCompEventEmplCreate Class
    HRMCompEventEmplStatusChange Class
    HRMCompFixedEmplAction Class
    HRMCourseAttendeeStatusChange Class
    HRMCourseTableStatusChange Class
    HRMInjuryCaseStatusUpdate Class
    HRMMassHireLineCreate Class
    HRMMassHireStatusChange Class
    InfAdjReverse_MX Class
    IntrastatCheck Class
    IntrastatCompression Class
    IntrastatCreateSeqNum Class
    IntrastatDisk Class
    IntrastatTransfer Class
    IntrastatUpdateThreshold Class
    InventAdjSelect Class
    InventCostStop Class
    InventCountStatisticsCreate Class
    InventDimRenameDimValue Class
    InventDimTracking Class
    InventJournalTag_CheckMissing Class
    InventNonConformanceChangeType Class
    InventNonConformanceMakeRelated Class
    InventNonConformanceUpdate Class
    InventProdCom Class
    InventProdComLoadData Class
    InventProdComLoadIntrastatToProdcom Class
    InventQualityOrderValidate Class
    InventQuarantineOrder_Scrap Class
    InventQuarantineOrder_Split Class
    InventReport_TORG29_RU Class
    InventStdCostConvItemTransfer Class
    InventTestChangeType Class
    InventTestCorrectionUpdate Class
    InventTrackingDimExport Class
    InventTransSplit Class
    InventTransSumUp Class
    InventTurnoverReportDetail_RU Class
    JmgAdjustFlexBalance Class
    JmgCancelTransferTimecard Class
    JmgCheckEmployeeForgotClockOut Class
    JmgComposeEventCtrl Class
    JmgComposeScheduledLoan Class
    JmgFlex Class
    JmgIpcLedgerEnterConfirmRepost Class
    jmgMESClientSelection Class
    JmgPayAgreementCopy Class
    JmgPayCount Class
    JmgPayEventsExport Class
    JmgPayStatAddAdjustment Class
    JmgPayStatCalculate Class
    JmgPayTableCreateNewDateInterval Class
    JmgProdCancelFinished Class
    JmgProdReportAsFinished Class
    JmgProfileCalendarCopy Class
    JmgProfileCalendarCopyInterval Class
    JmgProfileCopy Class
    JmgResetParametersToDefault Class
    JmgResetProdFinishedParametersToDefault Class
    JmgResetProdStartupParametersToDefault Class
    JmgRestoreJournalLines Class
    JmgSetOpeningFlexBalance Class
    JmgTimecardChangeEmployee Class
    JmgTransferTimecard Class
    JmgValidateTimecard Class
    KanbanCreate Class
    KanbanCreateJobs Class
    KanbanJobPickingListCreateBase Class
    KMKnowledgeCollectorPlanningCopy Class
    KMKnowledgeCollectorPlanningFinish Class
    KMKnowledgeCollectorPlanningStart Class
    KMKnowledgeCollectorPlanningTableDelete Class
    KMKnowledgeCollectorPlanningTableEmail Class
    KMQuestionFeedback Class
    KMQuestionFeedbackTmpData Class
    KMQuestionMediaInsert Class
    KMQuestionnaireCorrectAnswerReportForm Class
    KMQuestionResultGroupCalculatePoints Class
    LedgerAccountRenameInit_RU Class
    LedgerAccountRenameProcess_RU Class
    LedgerAcctsFinancialStmtImport Class
    LedgerAllocationCopy Class
    LedgerBalanceDimFormLastValue Class
    LedgerBalanceFormLastValue Class
    LedgerEliminationProposal Class
    LedgerGenerateGIFTFile_CA Class
    LedgerInAccountStatement Class
    LedgerJournalApproval_CN Class
    LedgerJournalCheckPost Class
    LedgerJournalDeleteTransaction Class
    LedgerJournalDistribute Class
    LedgerJournalGetAssetTrans Class
    LedgerJournalGetTrans Class
    LedgerJournalSave Class
    LedgerJournalTransChangePaymMode Class
    LedgerJournalTransCreate_RU Class
    LedgerPeriodReopen_CN Class
    LedgerPostingJournalCreate Class
    LedgerRowDefExport Class
    LedgerRowDefImport Class
    LedgerRRGECopySection_W Class
    LedgerRRGECopyTemplate_W Class
    LedgerRRGECreateCorrection_W Class
    LedgerRRGECreateReportLines_W Class
    LedgerRRGEDataExport_W Class
    LedgerRRGEDataImport_W Class
    LedgerRRGEDocumentExport_W Class
    LedgerRRGELoadBase_W Class
    LedgerRRGEPropertiesImport_W Class
    LedgerTransPreviewReport_RU Class
    LedgerTransQueryDialog_CN Class
    LedgerXBRLReporter Class
    LedgerXBRLSaveProperties Class
    LedgerYearEndCorrection Class
    LogisticsLocationFormHandler Class
    LtChangeDocAuthor Class
    LtChangeDocStatus Class
    LvCashStateTransfer Class
    LvPaymentOrder Class
    ManagementReporterHandler Class
    MarkupAllocation Class
    MCRContinuityScheduleCopy Class
    MCRCRMImport_Prospects Class
    MCRPriceDiscAdmCopy Class
    MCRPriceDiscAdmCreate Class
    MCRRoyaltyContractValidate Class
    OverdueVATJournalPost_W Class
    PaymentOrderCancel_LV Class
    PayrollPayStatementBudgetCheck Class
    PayrollPayStatementDeleteSelectedRecords Class
    PayrollPayStatementReversal Class
    PBACopy Class
    PBAFormGenerate Class
    PBARuleCopy Class
    PBAWizardOption Class
    PCActiveVersionOpenOrdersProdTable Class
    PCActiveVersionOpenOrdersQuotation Class
    PCActiveVersionOpenOrdersSalesTable Class
    PCExport Class
    PDSBatchBalanceConfirm Class
    PdsCheckandCalcExpDate Class
    PdsComdPricingRunCopy Class
    PdsComdPricingTemplateCopy Class
    PdsRebateAgreementValidate Class
    PdsResetBestBeforeDate Class
    PdsResetShelfAdviceDate Class
    PlAssetCreateDisposalTemplate Class
    PlInventExtJournalCheckPost Class
    PlPurchCreateForExternal Class
    PlSalesDeposit_Return Class
    PMFSeqAcceptChanges Class
    PowerViewReporting Class
    PriceDiscAdmAdjustment Class
    PriceDiscAdmCopy Class
    PriceDiscAdmDelete Class
    PriceDiscAdmSearch Class
    PriceDiscAdmSmartRound Class
    PriceDiscAdmTransExcel Class
    PriceDiscCreateJournal Class
    PriceDiscPolicyDialog Class
    PRLW2File Class
    ProdJournalCreate Class
    ProdJournalCreateFromInventByProduct_RU Class
    ProdJournalCreateReleaseCancel_RU Class
    ProdParmSchedulingSort Class
    ProdReport_Balance Class
    ProdReport_JournalTrans Class
    prodTableChangeQtySched Class
    ProjAdjustmentSelect Class
    ProjAdjustmentSplit Class
    ProjAvailabilityView Class
    ProjBudgetManager Class
    ProjCashFlow Class
    ProjCostControl Class
    ProjEditInMSProj Class
    ProjEstimateProjectCreate Class
    ProjGrantCopy Class
    ProjGroupChange Class
    ProjInvoiceCancel Class
    ProjInvoiceControl Class
    ProjInvoiceProposalInsertLines Class
    ProjJournalCopy Class
    ProjPeriodCreate Class
    ProjPeriodPostingLedger Class
    ProjPeriodPostingSelect Class
    ProjPeriodSplit Class
    ProjScheduling Class
    ProjServerRefresh Class
    ProjServerSetting Class
    ProjStatistic Class
    ProjStatusRename Class
    ProjTableEditSubProjPrompt Class
    ProjUpdateSubProjStagePrompt Class
    PSAProjOnAccOffsetSplit Class
    PurchAgreementChildCreator_PSN Class
    PurchaseOrderFromSalesOrder Class
    PurchCancel Class
    PurchCommitment_ConfirmBudget_PSN Class
    PurchCreateFromSalesOrder Class
    PurchEditLinesChangeDate Class
    PurchEditSetup Class
    PurchPrepayRemove Class
    PurchReqConsolidationMultiEdit Class
    PurchReqPreEncumber Class
    PurchReqTable2LineUpdatePrompt Class
    PurchRFQTableMap2LineParametersForm Class
    PurchRFQTableMap2LineUpdatePrompt Class
    RassetComponentAddFromPurchLine Class
    RAssetJournalAdd Class
    RAssetLedgerBudgetUpdate Class
    RAssetTransactionReversal Class
    RCSalesListCheck_UK Class
    RCSalesListCSV_UK Class
    RCSalesListDelete_UK Class
    RCSalesListMark_UK Class
    RCSalesListTransfer_UK Class
    RDeferralsCopy Class
    RDeferralsCreateReceiptTrans Class
    RDeferralsJournalAdd Class
    RDeferralsTransactionReversal Class
    RegisterVAT_W Class
    ReqActionApply Class
    ReqEventProcessKanbanSalesTable Class
    ReqPlannedOrderLeveling Class
    ReqTransPoSelect Class
    RetailAssortmentCopyDetails Class
    RetailAssortmentEditConfirmation Class
    RetailAutoNumberGenerator Class
    RetailCDXDataUploadRerun Class
    RetailCDXDownloadSessionCancel Class
    RetailCDXScheduleRerun Class
    RetailChangeTransactionShift Class
    RetailConcessionContractUnmark Class
    RetailConcessionJournalCreate Class
    RetailConfirmItemBarcode Class
    RetailConnCreateUploadTempDBTable Class
    RetailConnDefaultDataGenerator Class
    RetailConnSCMonMessageUpdate Class
    RetailConnSCMonSendConfiguration Class
    RetailConnSCTestConnection Class
    RetailConnSeedDataGenerator Class
    RetailConnSeedDataGenerator_OC Class
    RetailHardwareProfileCopier Class
    RetailKeyCommandCopier Class
    RetailLoyaltyCustUpdate Class
    RetailMandatoryCheckManagement Class
    RetailOnlineChannelActionHandler Class
    RetailOnlineStoreSetupChecklistAction Class
    RetailPurchCreate Class
    RetailReplenishment Class
    RetailSitesSolutionDiscovery Class
    RetailSMBSeedGenerator Class
    RetailStatementCalcAndPostLogs Class
    RetailStoreActionHandler Class
    RetailStorePicker Class
    RetailStoreSetupChecklistAction Class
    RHRMGradeScaleCopy Class
    RHRMPersonalAccountReport Class
    RouteUpdate Class
    RPayAverageEarnEngine Class
    RPayCalculateEngine Class
    RPayCalendarCopy Class
    RPayCalendarCreate Class
    RPayCivilContractActReport Class
    RPayCivilContractReport Class
    RPayController Class
    RPayGroupMemberInsertPeriod Class
    RPayHRMPivotTableTemplateEngine Class
    RPayPFReport Class
    RPayRecalcFundPeriod Class
    RPayRecalcStandardDeduction Class
    RPayReport4SIF_2012 Class
    RPayReport4SIF_2013 Class
    RPayReverse Class
    RPayTblEmplSum Class
    RPayTblTransFormCreate Class
    RPayTimeCopy Class
    RPayTimeCopyDay Class
    RPSExport_BR Class
    RPSImport_BR Class
    RTax25InventoryAct Class
    RTSLLedgerTransRuleInit Class
    RTSLRuleForm Class
    RunBaseBatch Class
    RunBaseBatchPrintableDialog Class
    RunBaseDialog_Clear Class
    RunBaseQueryDialog Class
    RunBaseReportDialog Class
    RunBaseSetDefault Class
    SalesBookPrepayment_RU Class
    SalesCalcAvailableDlvDates Class
    SalesPurchTableToLineParametersForm Class
    SalesPurchTableToLineUpdatePrompt Class
    SalesQuotationChangeReasonCode Class
    SalesTable2LineParametersForm Class
    SalesTable2LineUpdatePrompt Class
    SIGPassphraseCreateDialog Class
    SIGPassphraseDialog Class
    SitesSvc_ActivateSolutions Class
    SitesSvc_AddSolution Class
    SitesSvc_AddUsers Class
    SitesSvc_OperationLog Class
    SitesSvc_SetupAccount Class
    SitesSvc_SetupUrl Class
    SitesSvcCheckList_Launch Class
    SitesSvcCreatePage Class
    SitesSvcSolutionList Class
    SitesSvcSolutionMarketplace Class
    SMABOMCopy Class
    SMABOMDesignerCtrl Class
    SMACopyAgreementLines Class
    SMACopyServiceOrderLines Class
    SMAMoveServiceOrderLine Class
    SMAServiceBOMManager Class
    SMAServiceFunction Class
    SMAServiceLevelAgreementLogEngine Class
    SMAServiceLevelAgreementLogEngineCommon Class
    SMAStageEngine Class
    smmActivityUpdateResponsible Class
    smmCreateMailing Class
    SmmEntityCopy Class
    SmmEntityDelete Class
    smmLeadUpdate Class
    smmMailingGenerate Class
    smmProjConnectDialog Class
    smmRepairDocuRef Class
    smmSalesManagementCopyVersion Class
    SrsReportPrintPreviewRun Class
    SuppItemCreate Class
    SysChecklistItemHelper Class
    SysCodeProfilerAnalysisSetup Class
    SysCodeProfilerCleanUp Class
    SysCodeProfilerSum Class
    SysCompileAll Class
    SysCompileForward Class
    SysCompileIL Class
    SysDatabaseTransDelete Class
    SysDebugger Class
    SysDeleteSelectedRecords Class
    SysEmailBroadcast Class
    SysFileDeployer Class
    SysHelpTopicId Class
    SysLicenseCodeReadFile Class
    SysModelCreateModel Class
    SysModelCreateProject Class
    SysProjectFilterRunBase Class
    SysRecordTemplatePromptOnCreate Class
    SysSecRolesRunAutoAssignment Class
    SysServersDrain Class
    SysSQLDBALogin Class
    SysSQLRestoreCompanyDialog Class
    SysUpgradeAlignStringEdtSize Class
    SysUsersTerminate Class
    SysUtilElementsTraverse Class
    SysVersionControlCreateProject Class
    SysVersionControlCreateRepository Class
    SysVersionControlSynchronization Class
    SysXmlDocumentationCreateFile Class
    TAMVendRebateAgreementValidate Class
    Tax1099Report2Disc Class
    TaxAifPortSetupTaxIntegration_CN Class
    TaxBapiCertificate_NL Class
    TaxBapiImport_NL Class
    TaxBapiReceive_NL Class
    TaxBapiSend_NL Class
    TaxBookSectionCreate Class
    TaxBookStatusChangePage Class
    TaxCalcReportFields_JP Class
    TaxCertificateSearchString_NL Class
    TaxFiscalDocumentReport_BR Class
    TaxOBExport_NL Class
    TaxReport_ReportAT Class
    TaxReport770Export_IT Class
    TaxReport770TransHandler_IT Class
    TaxReport770Validate_IT Class
    TaxReportDomesticExport_IT Class
    TaxReportDomesticFunctions_IT Class
    TaxReportExport Class
    TaxReportExtraFieldsCreateXML Class
    TaxReportToAscii Class
    TaxReportYearlyAT Class
    TaxThaiGovCertificationWorkflowHandler Class
    TaxWithholdCertificateCreate_IN Class
    TaxWithholdCertificateDelete_IN Class
    TaxWithholdComponentCopy_IN Class
    TaxYearlyComCreate_IT Class
    TaxYearlyComExport_IT Class
    TMSApptCheckOutTime Class
    TMSFreightBillFilter Class
    TMSTransportTenderConfirmation Class
    TradeBLWIChangeCode Class
    TradeBLWILineTransfer Class
    TradeCurrencyConversionPrompt Class
    TradeNonStockedRegisterSplit Class
    TradeOrderLineRegister Class
    TransactionReversal Class
    tutorial_LookupMultiSelectDialog Class
    VendApproveChangeDate Class
    VendApproveChangeDocumentDate Class
    VendNotificationTemplateRunbase Class
    VendOverdueCITPITJournalApproval_W Class
    VendPostDatedCheckInstallments Class
    VendPromissoryNoteCancel Class
    VendPromissoryNoteClose Class
    VendPromissoryNoteMarkSentDate Class
    vendTax1099Update Class
    WHSReverseSalesWork Class
    WMSCreateIntransport Class
    WMSJobTicketReport_RU Class
    WMSJournalTransSplit Class
    WMSLocationChangeLocationTypeService Class
    WMSLocationTreeBase Class
    WMSLocationWarehouseMandatoryUpdate Class
    WMSOnlineCounting Class
    WMSOrderCreate Class
    WMSOrderTransChangeQty Class
    WMSOrderTransSplit Class
    WMSPickingLineCancel Class
    WMSPickingLineUnReserveManager Class
    WMSPickingLocationRefill Class
    WMSPickingRouteCancel Class
    WMSPickingRouteFinish Class
    WMSPickingRouteStart Class
    WMSPickPalletNew Class
    WMSShipmentLinesMove Class
    WMSShipmentOption Class
    WMSShipmentReservation Class
    WMSShipmentShip Class
    WMSTransportCancel Class
    WMSTransportChangeToLocation Class
    WMSTransportFinish Class
    WMSTransportPalletSwitch Class
    WMSTransportStart Class
    WorkCalendarCopy Class
    WorkTimeCopy Class
    WorkTimeCopyDay Class
    xRefUpdateTmpReferences Class

See Also

RunBaseBatch Class

RunBaseReport Class

Dialog Class

Dialog.run Method