DeallocateUtility( ITenant, ITable )
DeallocateUtility( ITenantGroup ) |
define variable util as IDataAdminUtility no-undo.
define variable tbl as ITable no-undo. define variable tnt as ITenant no-undo. tbl = service:GetTable("Customer"). tnt = service:GetTenant("ABC"). util = new DeallocateUtility(tnt,tbl). service:ExecuteUtility(util). |
define variable util as IDataAdminUtility no-undo.
define variable grp as ITenantGroup no-undo. grp = service:GetTenantGroup("Customer"). util = new DeallocateUtility(grp). service:ExecuteUtility(util). |