DBA Data[Home] [Help]

APPS.ARPT_SQL_FUNC_UTIL dependencies on HZ_CONTACT_POINTS

Line 185: (phone_number hz_contact_points.phone_number%TYPE,

181: FUNCTION get_address_details (p_address_id IN NUMBER,
182: p_detail_type IN VARCHAR2)
183: RETURN VARCHAR2;
184: TYPE phone_rec_type IS RECORD
185: (phone_number hz_contact_points.phone_number%TYPE,
186: area_code hz_contact_points.phone_area_code%TYPE,
187: extension hz_contact_points.phone_extension%TYPE);
188:
189: TYPE t_phone_table IS TABLE OF phone_rec_type

Line 186: area_code hz_contact_points.phone_area_code%TYPE,

182: p_detail_type IN VARCHAR2)
183: RETURN VARCHAR2;
184: TYPE phone_rec_type IS RECORD
185: (phone_number hz_contact_points.phone_number%TYPE,
186: area_code hz_contact_points.phone_area_code%TYPE,
187: extension hz_contact_points.phone_extension%TYPE);
188:
189: TYPE t_phone_table IS TABLE OF phone_rec_type
190: INDEX BY BINARY_INTEGER;

Line 187: extension hz_contact_points.phone_extension%TYPE);

183: RETURN VARCHAR2;
184: TYPE phone_rec_type IS RECORD
185: (phone_number hz_contact_points.phone_number%TYPE,
186: area_code hz_contact_points.phone_area_code%TYPE,
187: extension hz_contact_points.phone_extension%TYPE);
188:
189: TYPE t_phone_table IS TABLE OF phone_rec_type
190: INDEX BY BINARY_INTEGER;
191: