DBA Data[Home] [Help]

APPS.PAY_PL_PERSONAL_PAY_METHOD dependencies on HR_PL_UTILITY

Line 19: p_var:=hr_pl_utility.validate_bank_id(p_segment2);

15: IF NOT hr_utility.chk_product_install('Oracle Payroll', 'PL') THEN
16: hr_utility.trace('PL not installed.Leaving CREATE_PL_PERSONAL_PAY_METHOD');
17: return;
18: END IF;
19: p_var:=hr_pl_utility.validate_bank_id(p_segment2);
20:
21: if p_var=0 then
22: fnd_message.set_name('PAY','HR_PL_INVALID_BANK_ID');
23: fnd_message.raise_error;

Line 27: p_var:=hr_pl_utility.validate_account_no(p_segment1,p_segment2,p_segment3);

23: fnd_message.raise_error;
24: end if;
25:
26: IF p_segment3 is NOT NULL THEN -- 9226630
27: p_var:=hr_pl_utility.validate_account_no(p_segment1,p_segment2,p_segment3);
28: if p_var=0 then
29: fnd_message.set_name('PAY','HR_PL_INVALID_ACC_NO');
30: fnd_message.raise_error;
31: end if;

Line 36: p_var:=hr_pl_utility.validate_iban_acc(p_segment12);

32: end if;
33:
34: /* 9226630 */
35: IF p_segment12 is NOT NULL THEN -- 9226630
36: p_var:=hr_pl_utility.validate_iban_acc(p_segment12);
37: hr_utility.set_location('p_var :'|| p_var,1);
38: --hr_utility.trace_off;
39: if p_var=1 then
40: hr_utility.set_location('p_var :'|| p_var,2);

Line 84: p_var:=hr_pl_utility.validate_bank_id(p_segment2);

80: l_var3:=p_segment3;
81: l_var12:=p_segment12; --9226630
82:
83: if p_segment2 <> hr_api.g_varchar2 then
84: p_var:=hr_pl_utility.validate_bank_id(p_segment2);
85: end if;
86:
87: if p_var=0 then
88: fnd_message.set_name('PAY','HR_PL_INVALID_BANK_ID');

Line 116: p_var:=hr_pl_utility.validate_account_no(l_var1,l_var2,l_var3);

112: end if;
113: /* end */
114:
115: if l_var3 is NOT NULL then --9226630
116: p_var:=hr_pl_utility.validate_account_no(l_var1,l_var2,l_var3);
117: if p_var=0 then
118: fnd_message.set_name('PAY','HR_PL_INVALID_ACC_NO');
119: fnd_message.raise_error;
120: end if;

Line 125: p_var:=hr_pl_utility.validate_iban_acc(l_var12);

121: end if;
122:
123: /* 9226630 */
124: if l_var12 is NOT NULL then
125: p_var:=hr_pl_utility.validate_iban_acc(l_var12);
126:
127: if p_var=1 then
128: fnd_message.set_name('PAY','HR_PL_INVALID_IBAN_NO');
129: fnd_message.raise_error;