DBA Data[Home] [Help]

APPS.HR_QSA_BUS dependencies on HR_API

Line 44: hr_api.mandatory_arg_error(p_api_name => l_proc,

40: hr_utility.set_location('Entering:'|| l_proc, 10);
41: --
42: -- Ensure that all the mandatory parameter are not null
43: --
44: hr_api.mandatory_arg_error(p_api_name => l_proc,
45: p_argument => 'questionnaire_answer_id',
46: p_argument_value => p_questionnaire_answer_id);
47: --
48: open csr_sec_grp;

Line 62: hr_api.set_security_group_id

58: close csr_sec_grp;
59: --
60: -- Set the security_group_id in CLIENT_INFO
61: --
62: hr_api.set_security_group_id
63: (p_security_group_id => l_security_group_id
64: );
65: --
66: hr_utility.set_location(' Leaving:'|| l_proc, 20);

Line 228: if hr_api.not_exists_in_hr_lookups

224: hr_utility.set_location('Entering: '||l_proc,10);
225: --
226: if p_type is not null then
227: -- Check that p_type exists in lookup
228: if hr_api.not_exists_in_hr_lookups
229: (p_effective_date => p_effective_date
230: ,p_lookup_type => 'QUEST_OBJECT_TYPE'
231: ,p_lookup_code => p_type
232: ) then

Line 405: hr_api.mandatory_arg_error

401: begin
402: --
403: hr_utility.set_location('Entering: '||l_proc,10);
404: --
405: hr_api.mandatory_arg_error
406: (p_api_name => l_proc
407: ,p_argument => 'questionnaire_answer_id'
408: ,p_argument_value => p_questionnaire_answer_id
409: );

Line 440: hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate Bus Grp

436: hr_utility.set_location('Entering:'||l_proc, 5);
437: --
438: -- Call all supporting business operations
439: --
440: hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate Bus Grp
441: --
442: chk_type(p_type => p_rec.type
443: ,p_effective_date => p_effective_date
444: );

Line 474: hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate Bus Grp

470: hr_utility.set_location('Entering:'||l_proc, 5);
471: --
472: -- Call all supporting business operations
473: --
474: hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate Bus Grp
475: --
476: hr_utility.set_location(' Leaving:'||l_proc, 10);
477: End update_validate;
478: --

Line 521: hr_api.mandatory_arg_error(p_api_name => l_proc

517: l_proc varchar2(72) := 'return_legislation_code';
518: begin
519: hr_utility.set_location('Entering: '|| l_proc, 10);
520: --
521: hr_api.mandatory_arg_error(p_api_name => l_proc
522: ,p_argument => 'questionnaire_answer_id'
523: ,p_argument_value => p_questionnaire_answer_id
524: );
525: --

Line 526: if nvl(g_questionnaire_answer_id, hr_api.g_number)

522: ,p_argument => 'questionnaire_answer_id'
523: ,p_argument_value => p_questionnaire_answer_id
524: );
525: --
526: if nvl(g_questionnaire_answer_id, hr_api.g_number)
527: = p_questionnaire_answer_id then
528: --
529: -- The legislation code has already been found with a previous call
530: -- to this function Just return the value in the global variable.