public ICFBamClearTopDepObj createClearTopDep(ICFBamClearTopDepObj Obj) {
   ICFBamClearTopDepObj obj = Obj;
   CFBamClearTopDepBuff buff = obj.getClearTopDepBuff();
   schema
       .getBackingStore()
       .getTableClearTopDep()
       .createClearTopDep(schema.getAuthorization(), buff);
   obj.copyBuffToPKey();
   if (obj.getPKey().getClassCode().equals("CLRT")) {
     obj = (ICFBamClearTopDepObj) (obj.realize());
   }
   return (obj);
 }