DBA Data[Home] [Help]

APPS.BEN_CHECK_ORGANIZATION dependencies on HR_API

Line 45: -- of hr_api.g_date gets passed, due to which the below validation fails. Bypassing the below

41: -- Bug 10383109: When we update an organization from the form, the parameters are passed to
42: -- hr_organization_api.update_organization. So, the validation works correctly.
43: -- But in Financials, when we try to update Balancing Segment Values, p_date_from and p_date_to
44: -- is not passed to hr_organization_api.update_organization call, due to which default value
45: -- of hr_api.g_date gets passed, due to which the below validation fails. Bypassing the below
46: -- validations when p_date_from and p_date_to is passed as hr_api.g_date, since the validation
47: -- is not required while updating the organization record.
48:
49: if p_date_from = hr_api.g_date and p_date_to = hr_api.g_date then

Line 46: -- validations when p_date_from and p_date_to is passed as hr_api.g_date, since the validation

42: -- hr_organization_api.update_organization. So, the validation works correctly.
43: -- But in Financials, when we try to update Balancing Segment Values, p_date_from and p_date_to
44: -- is not passed to hr_organization_api.update_organization call, due to which default value
45: -- of hr_api.g_date gets passed, due to which the below validation fails. Bypassing the below
46: -- validations when p_date_from and p_date_to is passed as hr_api.g_date, since the validation
47: -- is not required while updating the organization record.
48:
49: if p_date_from = hr_api.g_date and p_date_to = hr_api.g_date then
50: hr_utility.set_location('returning to bypass the validation ',11);

Line 49: if p_date_from = hr_api.g_date and p_date_to = hr_api.g_date then

45: -- of hr_api.g_date gets passed, due to which the below validation fails. Bypassing the below
46: -- validations when p_date_from and p_date_to is passed as hr_api.g_date, since the validation
47: -- is not required while updating the organization record.
48:
49: if p_date_from = hr_api.g_date and p_date_to = hr_api.g_date then
50: hr_utility.set_location('returning to bypass the validation ',11);
51: return;
52: else
53: if (fnd_installation.get(appl_id => 805