DBA Data[Home] [Help]

APPS.PAY_KR_SEP_FORM_PKG dependencies on FND_MESSAGE

Line 164: fnd_message.retrieve(l_errbuf);

160: argument11 => p_payout_date,
161: argument12 => l_payout_date); -- Bug # 5559330
162: if p_req_id = 0 then
163: p_success := false;
164: fnd_message.retrieve(l_errbuf);
165: hr_utility.trace('Error when submitting request: ' || SQLERRM || ' ' || SQLCODE);
166: raise zero_req_id;
167: else
168: --

Line 240: fnd_message.retrieve(l_errbuf);

236: argument10 => p_payroll_id,
237: argument11 => p_payroll_id_hd);
238: if p_req_id = 0 then
239: p_success := false;
240: fnd_message.retrieve(l_errbuf);
241: hr_utility.trace('Error when submitting request: ' || SQLERRM || ' ' || SQLCODE);
242: raise zero_req_id;
243: else
244: --

Line 1149: -- with fnd_message.warn procedure.

1145: end if;
1146: --
1147: -- If warning_or_error = 'E'(Error) and l_min_max_status = 'F'(Fatal),
1148: -- then raise error. In case of 'W'(Warning), Forms should warn to user
1149: -- with fnd_message.warn procedure.
1150: --
1151: if l_min_max_status = 'F' and l_rec.warning_or_error = 'E' then
1152: hr_utility.set_message(801,'PAY_6303_INPUT_VALUE_OUT_RANGE');
1153: hr_utility.raise_error;

Line 1171: -- with fnd_message.warn procedure.

1167: end if;
1168: --
1169: -- If warning_or_error = 'E'(Error) and l_formula_status = 'E'(Error),
1170: -- then raise error. In case of 'W'(Warning), Forms should warn to user
1171: -- with fnd_message.warn procedure.
1172: --
1173: if l_formula_status = 'E' and l_rec.warning_or_error = 'E' then
1174: hr_utility.set_message(801,'HR_ELE_ENTRY_FORMULA_HINT');
1175: hr_utility.set_message_token('FORMULA_TEXT',p_formula_message);