public void deleteSecApp(ICFSecuritySecAppObj Obj) {
   ICFSecuritySecAppObj obj = Obj;
   ((ICFCrmSchema) schema.getBackingStore())
       .getTableSecApp()
       .deleteSecApp(schema.getAuthorization(), obj.getSecAppBuff());
   obj.forget(true);
 }
 public ICFSecuritySecAppObj updateSecApp(ICFSecuritySecAppObj Obj) {
   ICFSecuritySecAppObj obj = Obj;
   ((ICFCrmSchema) schema.getBackingStore())
       .getTableSecApp()
       .updateSecApp(schema.getAuthorization(), Obj.getSecAppBuff());
   obj = (ICFSecuritySecAppObj) Obj.realize();
   return (obj);
 }
 public ICFSecuritySecAppObj createSecApp(ICFSecuritySecAppObj Obj) {
   ICFSecuritySecAppObj obj = Obj;
   CFSecuritySecAppBuff buff = obj.getSecAppBuff();
   ((ICFCrmSchema) schema.getBackingStore())
       .getTableSecApp()
       .createSecApp(schema.getAuthorization(), buff);
   obj.copyBuffToPKey();
   obj = obj.realize();
   return (obj);
 }