DBA Data[Home] [Help]

APPS.HR_FR_UTILITY dependencies on HR_UTILITY

Line 169: -- hr_utility.trace_on(null,'ACCVAL');

165: ,p_iban_acc varchar2 default null) return number IS
166:
167: l_ret NUMBER ;
168: BEGIN
169: -- hr_utility.trace_on(null,'ACCVAL');
170: l_ret :=0;
171:
172: hr_utility.set_location('p_account_number ' || p_account_number,1);
173: hr_utility.set_location('p_acc_type ' || p_acc_type,1);

Line 172: hr_utility.set_location('p_account_number ' || p_account_number,1);

168: BEGIN
169: -- hr_utility.trace_on(null,'ACCVAL');
170: l_ret :=0;
171:
172: hr_utility.set_location('p_account_number ' || p_account_number,1);
173: hr_utility.set_location('p_acc_type ' || p_acc_type,1);
174: hr_utility.set_location('p_iban_acc ' || p_iban_acc,1);
175: hr_utility.set_location('p_bank_code ' || p_bank_code,1);
176: hr_utility.set_location('p_branch_code ' || p_branch_code,1);

Line 173: hr_utility.set_location('p_acc_type ' || p_acc_type,1);

169: -- hr_utility.trace_on(null,'ACCVAL');
170: l_ret :=0;
171:
172: hr_utility.set_location('p_account_number ' || p_account_number,1);
173: hr_utility.set_location('p_acc_type ' || p_acc_type,1);
174: hr_utility.set_location('p_iban_acc ' || p_iban_acc,1);
175: hr_utility.set_location('p_bank_code ' || p_bank_code,1);
176: hr_utility.set_location('p_branch_code ' || p_branch_code,1);
177:

Line 174: hr_utility.set_location('p_iban_acc ' || p_iban_acc,1);

170: l_ret :=0;
171:
172: hr_utility.set_location('p_account_number ' || p_account_number,1);
173: hr_utility.set_location('p_acc_type ' || p_acc_type,1);
174: hr_utility.set_location('p_iban_acc ' || p_iban_acc,1);
175: hr_utility.set_location('p_bank_code ' || p_bank_code,1);
176: hr_utility.set_location('p_branch_code ' || p_branch_code,1);
177:
178: --------------------------------------------------------------------------------

Line 175: hr_utility.set_location('p_bank_code ' || p_bank_code,1);

171:
172: hr_utility.set_location('p_account_number ' || p_account_number,1);
173: hr_utility.set_location('p_acc_type ' || p_acc_type,1);
174: hr_utility.set_location('p_iban_acc ' || p_iban_acc,1);
175: hr_utility.set_location('p_bank_code ' || p_bank_code,1);
176: hr_utility.set_location('p_branch_code ' || p_branch_code,1);
177:
178: --------------------------------------------------------------------------------
179: -- If account type is normal (N) call the validate_account_number

Line 176: hr_utility.set_location('p_branch_code ' || p_branch_code,1);

172: hr_utility.set_location('p_account_number ' || p_account_number,1);
173: hr_utility.set_location('p_acc_type ' || p_acc_type,1);
174: hr_utility.set_location('p_iban_acc ' || p_iban_acc,1);
175: hr_utility.set_location('p_bank_code ' || p_bank_code,1);
176: hr_utility.set_location('p_branch_code ' || p_branch_code,1);
177:
178: --------------------------------------------------------------------------------
179: -- If account type is normal (N) call the validate_account_number
180: --------------------------------------------------------------------------------

Line 219: hr_utility.set_location(' inside first if',1);

215: --------------------------------------------------------------------------------
216:
217: IF p_acc_type = 'C' and (p_account_number is not null
218: or p_iban_acc is not null) then
219: hr_utility.set_location(' inside first if',1);
220: return l_ret;
221: end if;
222: l_ret := 3;
223: return l_ret;