DBA Data[Home] [Help]

APPS.FUN_GLINT_WF dependencies on FND_MSG_PUB

Line 213: fnd_msg_pub.initialize;

209: FROM fun_trx_headers
210: WHERE trx_id = l_trx_id;
211: END IF;
212:
213: fnd_msg_pub.initialize;
214:
215: -- Check GL period.
216: l_period_status := fun_gl_transfer.get_period_status(101, l_gl_date, l_ledger_id);
217: IF (l_period_status NOT IN ('O', 'F')) THEN

Line 219: fnd_msg_pub.add;

215: -- Check GL period.
216: l_period_status := fun_gl_transfer.get_period_status(101, l_gl_date, l_ledger_id);
217: IF (l_period_status NOT IN ('O', 'F')) THEN
218: fnd_message.set_name('FUN', 'GL_PERIOD_NOT_OPEN');
219: fnd_msg_pub.add;
220: l_success := FALSE;
221: END IF;
222:
223: -- Check GL currency conversion.

Line 232: fnd_msg_pub.add;

228: l_rate := fun_gl_transfer.has_conversion_rate(l_trx_currency, l_gl_currency,
229: l_conv_type, l_conv_date);
230: IF l_rate = -1 THEN
231: fnd_message.set_name('FUN', 'FUN_API_CONV_RATE_NOT_FOUND');
232: fnd_msg_pub.add;
233: l_success := FALSE;
234: ELSIF l_rate = -2 THEN
235: fnd_message.set_name('FUN', 'FUN_API_INVALID_CURRENCY');
236: fnd_msg_pub.add;

Line 236: fnd_msg_pub.add;

232: fnd_msg_pub.add;
233: l_success := FALSE;
234: ELSIF l_rate = -2 THEN
235: fnd_message.set_name('FUN', 'FUN_API_INVALID_CURRENCY');
236: fnd_msg_pub.add;
237: l_success := FALSE;
238: END IF;
239:
240:

Line 245: fun_wf_common.concat_msg_stack(fnd_msg_pub.count_msg));

241: IF (l_success) THEN
242: resultout := wf_engine.eng_completed||':T';
243: ELSE
244: wf_engine.SetItemAttrText(itemtype, itemkey, 'ERROR',
245: fun_wf_common.concat_msg_stack(fnd_msg_pub.count_msg));
246: resultout := wf_engine.eng_completed||':F';
247: END IF;
248: RETURN;
249: END IF;