DBA Data[Home] [Help]

APPS.PER_PL_ORG_INFO dependencies on HR_API

Line 38: if p_org_information1 is not null and p_org_information1 <> hr_api.g_varchar2 then

34: Begin
35:
36: account_name := NULL;
37:
38: if p_org_information1 is not null and p_org_information1 <> hr_api.g_varchar2 then
39: account_name := 'CIT';
40: check_digit(p_org_information1,account_name);
41: end if;
42:

Line 43: if p_org_information2 is not null and p_org_information2 <> hr_api.g_varchar2 then

39: account_name := 'CIT';
40: check_digit(p_org_information1,account_name);
41: end if;
42:
43: if p_org_information2 is not null and p_org_information2 <> hr_api.g_varchar2 then
44: account_name := 'PIT';
45: check_digit(p_org_information2,account_name);
46: end if;
47:

Line 48: if p_org_information3 is not null and p_org_information3 <> hr_api.g_varchar2 then

44: account_name := 'PIT';
45: check_digit(p_org_information2,account_name);
46: end if;
47:
48: if p_org_information3 is not null and p_org_information3 <> hr_api.g_varchar2 then
49: account_name := 'VAT';
50: check_digit(p_org_information3,account_name);
51: end if;
52:

Line 53: if p_org_information4 is not null and p_org_information4 <> hr_api.g_varchar2 then

49: account_name := 'VAT';
50: check_digit(p_org_information3,account_name);
51: end if;
52:
53: if p_org_information4 is not null and p_org_information4 <> hr_api.g_varchar2 then
54: account_name := 'BUDGET_INCOME';
55: check_digit(p_org_information4,account_name);
56: end if;
57:

Line 58: if p_org_information5 is not null and p_org_information5 <> hr_api.g_varchar2 then

54: account_name := 'BUDGET_INCOME';
55: check_digit(p_org_information4,account_name);
56: end if;
57:
58: if p_org_information5 is not null and p_org_information5 <> hr_api.g_varchar2 then
59: account_name := 'OTHER_INCOME';
60: check_digit(p_org_information5,account_name);
61: end if;
62: