Count_Attributes¶
Count number of attributes in a record.
FUNCTION Count_Attributes (
record_ IN type_record_ ) RETURN NUMBER
Parameters¶
record_
Foundation1 record.
Return¶
Number of attributes in the record.
Example¶
DECLARE
count_ NUMBER;
BEGIN
...
count_ := Plsqlap_Record_API.Count_Attributes(AM);
...
END;