DBA Data[Home] [Help]

TYPE BODY: APPS.PO_HEADERS_VAL_TYPE

Source


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