DBA Data[Home] [Help]

TYPE BODY: APPS.HZ_ORG_CONTACT_ROLE_OBJ

Source


1 TYPE BODY hz_org_contact_role_obj AS
2 
3   STATIC FUNCTION create_object(
4     p_org_contact_role_id           IN  NUMBER := NULL,
5     p_orig_system                   IN  VARCHAR2 := NULL,
6     p_orig_system_reference         IN  VARCHAR2 := NULL,
7     p_role_type                     IN  VARCHAR2 := NULL,
8     p_primary_flag                  IN  VARCHAR2 := NULL,
9     p_role_level                    IN  VARCHAR2 := NULL,
10     p_pri_contact_per_role_type     IN  VARCHAR2 := NULL,
11     p_status                        IN  VARCHAR2 := NULL
12   ) RETURN hz_org_contact_role_obj AS
13   BEGIN
14     RETURN hz_org_contact_role_obj(
15       action_type => NULL,
16       common_obj_id => NULL,
17       org_contact_role_id => p_org_contact_role_id,
18       orig_system => p_orig_system,
19       orig_system_reference => p_orig_system_reference,
20       role_type => p_role_type,
21       primary_flag => p_primary_flag,
22       org_contact_id => NULL,
23       role_level => p_role_level,
24       primary_contact_per_role_type => p_pri_contact_per_role_type,
25       status => p_status,
26       program_update_date => NULL,
27       created_by_module => NULL,
28       created_by_name => NULL,
29       creation_date => NULL,
30       last_update_date => NULL,
31       last_updated_by_name => NULL,
32       orig_sys_objs => HZ_ORIG_SYS_REF_OBJ_TBL()
33     );
34   END create_object;
35 END;