Skip to content

Clear_Dirty

Changes the record attribute dirty flag to False on all record attributes and changes the record state to Queried_Record.

PROCEDURE Clear_Dirty ( record_ IN OUT type_record_ )

Parameters

record_
Foundation1 record.

Example

DECLARE  
   AM Plsqlap_Record_API.type_record_;  
BEGIN  
   ...  
   Plsqlap_Record_API.Clear_Dirty(AM);  
   ...  
END;