DBA Data[Home] [Help]

TYPE BODY: APPS.HZ_PERSON_INTEREST_OBJ

Source


1 TYPE BODY hz_person_interest_obj AS
2 
3   STATIC FUNCTION create_object(
4     p_person_interest_id                   IN NUMBER := NULL,
5     p_level_of_interest                    IN VARCHAR2 := NULL,
6     p_level_of_participation               IN VARCHAR2 := NULL,
7     p_interest_type_code                   IN VARCHAR2 := NULL,
8     p_comments                             IN VARCHAR2 := NULL,
9     p_sport_indicator                      IN VARCHAR2 := NULL,
10     p_sub_interest_type_code               IN VARCHAR2 := NULL,
11     p_interest_name                        IN VARCHAR2 := NULL,
12     p_team                                 IN VARCHAR2 := NULL,
13     p_since                                IN DATE := NULL,
14     p_status                               IN VARCHAR2 := NULL
15   ) RETURN hz_person_interest_obj AS
16   BEGIN
17     RETURN hz_person_interest_obj(
18       action_type => NULL,
19       common_obj_id => NULL,
20       person_interest_id => p_person_interest_id,
21       level_of_interest => p_level_of_interest,
22       person_id => NULL,
23       level_of_participation => p_level_of_participation,
24       interest_type_code => p_interest_type_code,
25       comments => p_comments,
26       sport_indicator => p_sport_indicator,
27       sub_interest_type_code => p_sub_interest_type_code,
28       interest_name => p_interest_name,
29       team => p_team,
30       since => p_since,
31       status => p_status,
32       program_update_date => NULL,
33       created_by_module => NULL,
34       created_by_name => NULL,
35       creation_date => NULL,
36       last_update_date => NULL,
37       last_updated_by_name => NULL
38     );
39   END create_object;
40 END;