DBA Data[Home] [Help]

TYPE BODY: APPS.CHV_AUTHORIZATIONS_REC

Source


1 TYPE BODY CHV_AUTHORIZATIONS_REC
2 AS
3 
4 --  Start of Comments
5 -- Function:
6 --   Creates an empty instance of this type, with all attributes set to NULL.
7 -- Returns:
8 --   An empty instance of this type.
9 -- End of Comments
10 
11 CONSTRUCTOR FUNCTION CHV_AUTHORIZATIONS_REC  RETURN SELF AS RESULT
12 IS
13 BEGIN
14 RETURN;
15 END;
16 
17 END;