Restore deleted Sales order from the void salesorder
class TECRestoreDeletedSOBatch extends RunBaseBatch { // User Input fields DialogField fieldSalesid; DialogField fieldName; // Variables to store user input SalesTable salesTable; Name salesID; // pack() and unpack() methods are used to load the last value from user // for our simple example we are not going to use them. public container pack() { return conNull(); } public boolean unpack(container packedClass) { return true; } // Dialog method to capture runtime user inputs for customer details public Object dialog() { Dialog dialog = super(); // Set...