Is_Dirty

Returns the record attribute state.

FUNCTION Is_Dirty (
   record_    IN OUT type_record_,
   attribute_ IN     type_name_ ) RETURN BOOLEAN

Parameters

record_
   
Foundation1 record.

attribute_
    Record attribute name.

Return

    True or False .

Example

DECLARE
BEGIN
   IF ( Plsqlap_Record_API.Is_Dirty(AM,'APPLICATION_MESSAGE_ID') ) THEN
      -- record attribute value has been changed
   ELSE
      -- record attribute value has not been changed
   END IF;
END;