DBA Data[Home] [Help]

APPS.HR_DM_UTILITY dependencies on BEN_BATCH_PARAMETER

Line 26: -- to use by looking at ben_batch_parameters which is striped by business

22: -- start
23:
24: -- ------------------------- number_of_threads ------------------------
25: -- Description: Finds the number of threads for the concurrent manager
26: -- to use by looking at ben_batch_parameters which is striped by business
27: -- group id.
28: --
29: --
30: -- Input Parameters

Line 53: FROM ben_batch_parameter

49:
50:
51: CURSOR csr_threads IS
52: SELECT thread_cnt_num
53: FROM ben_batch_parameter
54: WHERE (business_group_id = p_business_group_id)
55: AND (batch_exe_cd = 'HRDM');
56:
57:

Line 77: 'ben_batch_parameters - using default value', 12);

73: -- set default value if no entry exists for the current business group
74: IF (l_threads IS NULL) THEN
75: l_threads := 3;
76: message('INFO','No value for the number of threads found in ' ||
77: 'ben_batch_parameters - using default value', 12);
78: END IF;
79:
80: -- make sure that we have at least one thread
81: IF (l_threads <1) THEN

Line 109: -- to use by looking at ben_batch_parameters which is striped by business

105:
106:
107: -- ------------------------- chunk_size -----------------------------------
108: -- Description: Finds the chunk size to use for the DP, UP and D phases
109: -- to use by looking at ben_batch_parameters which is striped by business
110: -- group id.
111: --
112: --
113: -- Input Parameters

Line 137: FROM ben_batch_parameter

133:
134:
135: CURSOR csr_chunk_size IS
136: SELECT chunk_size
137: FROM ben_batch_parameter
138: WHERE (business_group_id = p_business_group_id)
139: AND (batch_exe_cd = 'HRDM');
140:
141: --

Line 160: 'ben_batch_parameters - using default value', 15);

156: -- set default value if no entry exists for the current business group
157: IF (l_chunk_size IS NULL) THEN
158: l_chunk_size := 10;
159: message('INFO','No value for the number of chunk size found in ' ||
160: 'ben_batch_parameters - using default value', 15);
161: END IF;
162:
163: message('INFO','Found chunk size', 15);
164: message('SUMM','Found chunk size', 20);