DBA Data[Home] [Help]

APPS.HRI_OLTP_CONC_PARAM dependencies on HRI_BPL_CONC_ADMIN

Line 8: l_page_list hri_bpl_conc_admin.page_list_tab_type;

4: -- Sets the full refresh value for a concurrent process
5: FUNCTION get_full_refresh_value(p_process_table_name IN VARCHAR2)
6: RETURN VARCHAR2 IS
7:
8: l_page_list hri_bpl_conc_admin.page_list_tab_type;
9: l_refresh_mode VARCHAR2(240);
10: l_request_set_id NUMBER;
11: l_application_id NUMBER;
12: l_full_refresh VARCHAR2(30);

Line 18: hri_bpl_conc_admin.get_request_set_details

14:
15: BEGIN
16:
17: -- Get request set information
18: hri_bpl_conc_admin.get_request_set_details
19: (p_request_set_id => l_request_set_id,
20: p_application_id => l_application_id,
21: p_refresh_mode => l_refresh_mode,
22: p_page_list => l_page_list);

Line 47: l_table_is_empty := hri_bpl_conc_admin.get_full_refresh_code

43:
44: ELSE
45:
46: -- Check whether the table is empty
47: l_table_is_empty := hri_bpl_conc_admin.get_full_refresh_code
48: (p_table_name => p_process_table_name);
49:
50: -- If the table is empty then full refresh
51: IF (l_table_is_empty = 'Y') THEN

Line 93: l_hri_start_date := hri_bpl_conc_admin.get_hri_global_start_date;

89: -- If the program is also a non-dbi process check the HRI start date
90: IF (hri_mtdt_conc_request.is_core_hri_process
91: (p_table_name => p_process_table_name) = 'Y') THEN
92:
93: l_hri_start_date := hri_bpl_conc_admin.get_hri_global_start_date;
94:
95: -- Pick the earlier date
96: IF (l_hri_start_date < l_dbi_start_date) THEN
97: l_dbi_start_date := l_hri_start_date;