DBA Data[Home] [Help]

APPS.PAY_CN_ELEMENT_TEMPLATE_PKG dependencies on HR_CN_API

Line 217: hr_cn_api.set_location(g_debug,'Entering : '||l_procedure,10);

213: IS
214: l_procedure CONSTANT VARCHAR2(100):= g_package||'get_results_setup';
215:
216: BEGIN
217: hr_cn_api.set_location(g_debug,'Entering : '||l_procedure,10);
218:
219: init_code;
220:
221: hr_cn_api.set_location(g_debug,l_procedure,20);

Line 221: hr_cn_api.set_location(g_debug,l_procedure,20);

217: hr_cn_api.set_location(g_debug,'Entering : '||l_procedure,10);
218:
219: init_code;
220:
221: hr_cn_api.set_location(g_debug,l_procedure,20);
222:
223: FOR i IN 1..g_count
224: LOOP
225:

Line 228: hr_cn_api.set_location(g_debug,'CHINA: Found match '||i||' for Template '||p_template_name,25);

224: LOOP
225:
226: IF (g_templates_setup(i).template_name = p_template_name) THEN
227:
228: hr_cn_api.set_location(g_debug,'CHINA: Found match '||i||' for Template '||p_template_name,25);
229:
230: p_results_setup.template_name := g_templates_setup(i).template_name;
231: p_results_setup.category := g_templates_setup(i).category;
232: p_results_setup.formula_name := g_templates_setup(i).formula_name;

Line 248: hr_cn_api.set_location(g_debug,'Leaving : '||l_procedure,30);

244: END IF ;
245: END IF;
246: END LOOP;
247:
248: hr_cn_api.set_location(g_debug,'Leaving : '||l_procedure,30);
249:
250: END get_results_setup;
251:
252: --------------------------------------------------------------------------

Line 424: hr_cn_api.set_location(g_debug,'Entering : '||l_procedure,10);

420: g_debug := hr_utility.debug_enabled;
421: l_procedure := g_package ||'element_template_post_process';
422:
423:
424: hr_cn_api.set_location(g_debug,'Entering : '||l_procedure,10);
425: OPEN csr_template;
426: FETCH csr_template
427: INTO l_template_name;
428: CLOSE csr_template;

Line 430: hr_cn_api.set_location(g_debug,l_procedure,20);

426: FETCH csr_template
427: INTO l_template_name;
428: CLOSE csr_template;
429:
430: hr_cn_api.set_location(g_debug,l_procedure,20);
431: IF g_debug THEN
432: hr_utility.trace ('CHINA: Template Name : '||l_template_name);
433: END IF ;
434:

Line 441: hr_cn_api.set_location(g_debug,l_procedure,30);

437: ,p_results_setup => l_results_setup
438: );
439:
440:
441: hr_cn_api.set_location(g_debug,l_procedure,30);
442: OPEN csr_set;
443: FETCH csr_set
444: INTO l_element_type_id
445: ,l_business_group_id

Line 450: hr_cn_api.set_location(g_debug,l_procedure,40);

446: ,l_effective_date
447: ,l_element_ovn;
448: CLOSE csr_set;
449:
450: hr_cn_api.set_location(g_debug,l_procedure,40);
451:
452: pay_status_processing_rule_api.create_status_process_rule
453: (
454: p_effective_date => l_effective_date

Line 465: hr_cn_api.set_location(g_debug,l_procedure,50);

461: ,p_object_version_number => l_st_ovn
462: ,p_formula_mismatch_warning => l_st_warn
463: );
464:
465: hr_cn_api.set_location(g_debug,l_procedure,50);
466:
467: FOR i IN 1..l_results_setup.fr_count
468: LOOP
469:

Line 470: hr_cn_api.set_location(g_debug,l_procedure||'--'||i,55);

466:
467: FOR i IN 1..l_results_setup.fr_count
468: LOOP
469:
470: hr_cn_api.set_location(g_debug,l_procedure||'--'||i,55);
471:
472: j := l_results_setup.fr_set_index+i-1;
473: hr_utility.trace('CHINA: Value of i is '||i);
474: hr_utility.trace('CHINA: Value of j is '||j);

Line 505: hr_cn_api.set_location(g_debug,'Leaving : '||l_procedure,60);

501: );
502:
503: END LOOP;
504:
505: hr_cn_api.set_location(g_debug,'Leaving : '||l_procedure,60);
506:
507: END element_template_post_process;
508:
509: END pay_cn_element_template_pkg;