You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Check if record can be deleted.
strName = "PSLMST"
strKey  = "EMPNO"
IF NOT LceSetFieldValue(iSession, strKey , "12345")
         return error 
ENDIF
IF LceDelete(iSession, strName, strKey, TRUE)
          delete of the record can be performed 
ELSE
          cannot delete the record 
          display error messages 
ENDIF

  • No labels