DBA Data[Home] [Help]

APPS.HR_BATCH_MESSAGE_LINE_API dependencies on HR_API_BATCH_MESSAGE_LINES

Line 25: l_line_id hr_api_batch_message_lines.line_id%type;

21: ,p_source_row_information in varchar2 default null
22: ,p_line_id out nocopy number) is
23: --
24: l_proc varchar2(72) := g_package||'create_message_line';
25: l_line_id hr_api_batch_message_lines.line_id%type;
26: --
27: begin
28: g_debug := hr_utility.debug_enabled; -- get debug status
29: IF g_debug THEN

Line 175: from hr_api_batch_message_lines abm

171: -- select all the lines to be deleted for the specified batch run number
172: --
173: cursor csr_get_line_id is
174: select abm.line_id
175: from hr_api_batch_message_lines abm
176: where abm.batch_run_number = p_batch_run_number
177: order by 1;
178: --
179: begin