DBA Data[Home] [Help]

APPS.PSA_MFAR_VAL_PKG dependencies on FND_MSG_PUB

Line 44: FND_MSG_PUB.Initialize;

40: -- ========================= FND LOG ===========================
41: l_full_path VARCHAR2(100) := g_path || 'AR_MFAR_VALIDATE_TRX_HEADER';
42: -- ========================= FND LOG ===========================
43: BEGIN
44: FND_MSG_PUB.Initialize;
45:
46: if (arp_global.sysparam.accounting_method <> 'ACCRUAL' ) then
47: return;
48: end if;

Line 77: fnd_msg_pub.add;

73: -- ========================= FND LOG ===========================
74: psa_utils.debug_other_msg(g_error_level,l_full_path,FALSE);
75: -- ========================= FND LOG ===========================
76: APP_EXCEPTION.RAISE_EXCEPTION;
77: fnd_msg_pub.add;
78: RAISE FND_API.G_EXC_ERROR;
79:
80: elsif
81: X_TRANSACTION_CLASS = 'CM' then

Line 87: fnd_msg_pub.add;

83: -- ========================= FND LOG ===========================
84: psa_utils.debug_other_msg(g_error_level,l_full_path,FALSE);
85: -- ========================= FND LOG ===========================
86: APP_EXCEPTION.RAISE_EXCEPTION;
87: fnd_msg_pub.add;
88: RAISE FND_API.G_EXC_ERROR;
89:
90: elsif
91: X_TRANSACTION_CLASS = 'CB' then

Line 97: fnd_msg_pub.add;

93: -- ========================= FND LOG ===========================
94: psa_utils.debug_other_msg(g_error_level,l_full_path,FALSE);
95: -- ========================= FND LOG ===========================
96: APP_EXCEPTION.RAISE_EXCEPTION;
97: fnd_msg_pub.add;
98: RAISE FND_API.G_EXC_ERROR;
99: end if;
100:
101: /* ------------------------------------------------------------------------+

Line 120: fnd_msg_pub.add;

116: -- ========================= FND LOG ===========================
117: psa_utils.debug_other_msg(g_error_level,l_full_path,FALSE);
118: -- ========================= FND LOG ===========================
119: APP_EXCEPTION.RAISE_EXCEPTION;
120: fnd_msg_pub.add;
121: RAISE FND_API.G_EXC_ERROR;
122: end if;
123:
124:

Line 140: fnd_msg_pub.add;

136:
137: if (l_payment_method = 'AUTOMATIC') then
138: FND_MESSAGE.SET_NAME('PSA','PSA_INVALID_PAYMENT_METHOD');
139: APP_EXCEPTION.RAISE_EXCEPTION;
140: fnd_msg_pub.add;
141: RAISE FND_API.G_EXC_ERROR;
142: end if;
143: end if;
144: */

Line 157: fnd_msg_pub.add;

153: -- ========================= FND LOG ===========================
154: psa_utils.debug_other_msg(g_error_level,l_full_path,FALSE);
155: -- ========================= FND LOG ===========================
156: APP_EXCEPTION.RAISE_EXCEPTION;
157: fnd_msg_pub.add;
158: RAISE FND_API.G_EXC_ERROR;
159: end if;
160:
161: /* ------------------------------------------------------------------------+

Line 172: fnd_msg_pub.add;

168: -- ========================= FND LOG ===========================
169: psa_utils.debug_other_msg(g_error_level,l_full_path,FALSE);
170: -- ========================= FND LOG ===========================
171: APP_EXCEPTION.RAISE_EXCEPTION;
172: fnd_msg_pub.add;
173: RAISE FND_API.G_EXC_ERROR;
174: end if;
175:
176: return;

Line 215: FND_MSG_PUB.Initialize;

211: -- ========================= FND LOG ===========================
212:
213: BEGIN
214:
215: FND_MSG_PUB.Initialize;
216:
217: if (arp_global.sysparam.accounting_method <> 'ACCRUAL' )
218: then
219: return;

Line 233: -- fnd_msg_pub.add;

229: -- open validate_trx_number_csr;
230: -- fetch validate_trx_number_csr into l_trx_number_validate ;
231: -- if validate_trx_number_csr%NOTFOUND then
232: -- FND_MESSAGE.SET_NAME('PSA','PSA_INVALID_RECORD');
233: -- fnd_msg_pub.add;
234: -- close validate_trx_number_csr;
235: -- return;
236:
237: select sob.currency_code

Line 249: fnd_msg_pub.add;

245: FND_MESSAGE.SET_NAME('PSA','PSA_INVALID_CURRENCY_CODE');
246: -- ========================= FND LOG ===========================
247: psa_utils.debug_other_msg(g_error_level,l_full_path,FALSE);
248: -- ========================= FND LOG ===========================
249: fnd_msg_pub.add;
250: RAISE FND_API.G_EXC_ERROR;
251: end if;
252:
253: l_profile_val := fnd_profile.value('AR_USE_INV_ACCT_FOR_CM_FLAG');

Line 260: fnd_msg_pub.add;

256: /* Bug Fix 1534215
257: -- modified by SIS
258: if (l_profile_val <> 'Y' ) then
259: FND_MESSAGE.SET_NAME('PSA','PSA_INVALID_PROFILE_VAL');
260: fnd_msg_pub.add;
261: RAISE FND_API.G_UNEXPECTED_EXC_ERROR
262: end if;
263: */
264:

Line 271: fnd_msg_pub.add;

267: -- ========================= FND LOG ===========================
268: psa_utils.debug_other_msg(g_error_level,l_full_path,FALSE);
269: -- ========================= FND LOG ===========================
270: APP_EXCEPTION.RAISE_EXCEPTION;
271: fnd_msg_pub.add;
272: RAISE FND_API.G_EXC_ERROR;
273: end if;
274: -- else
275: return;

Line 308: FND_MSG_PUB.Initialize;

304: -- ========================= FND LOG ===========================
305: Begin
306:
307: l_return_status := 'N' ;
308: FND_MSG_PUB.Initialize;
309:
310: -- Commented for enabling cash basis accounting
311: --
312: -- if (arp_global.sysparam.accounting_method <> 'ACCRUAL' )

Line 397: FND_MSG_PUB.Initialize;

393: begin
394:
395: l_return_status := 'N';
396:
397: FND_MSG_PUB.Initialize;
398: -- Get the org_id -- Bug 2374853
399:
400: fnd_profile.get('ORG_ID',l_org_id);
401:

Line 418: -- fnd_msg_pub.add;

414: --
415: -- if (arp_global.sysparam.accounting_method <> 'ACCRUAL' )
416: -- then
417: -- FND_MESSAGE.SET_NAME('PSA','PSA_INVALID_ACCOUNTING_METHOD');
418: -- fnd_msg_pub.add;
419: -- APP_EXCEPTION.RAISE_EXCEPTION;
420: -- RAISE FND_API.G_EXC_ERROR;
421: -- end if;
422:

Line 443: fnd_msg_pub.add;

439: psa_utils.debug_other_msg(g_error_level,l_full_path,FALSE);
440: -- ========================= FND LOG ===========================
441: -- FND_MESSAGE.SHOW ;
442: APP_EXCEPTION.RAISE_EXCEPTION;
443: fnd_msg_pub.add;
444: RAISE FND_API.G_EXC_ERROR;
445: end if;
446:
447: select a.REMIT_FLAG,a.confirm_flag into

Line 459: fnd_msg_pub.add;

455: -- ========================= FND LOG ===========================
456: psa_utils.debug_other_msg(g_error_level,l_full_path,FALSE);
457: -- ========================= FND LOG ===========================
458: APP_EXCEPTION.RAISE_EXCEPTION;
459: fnd_msg_pub.add;
460: RAISE FND_API.G_EXC_ERROR;
461: elsif l_remit_flag = 'N' then
462: if l_confirm_flag = 'Y' then
463: FND_MESSAGE.SET_NAME('PSA','PSA_INVALID_CONFIRM_CODE');

Line 468: fnd_msg_pub.add;

464: -- ========================= FND LOG ===========================
465: psa_utils.debug_other_msg(g_error_level,l_full_path,FALSE);
466: -- ========================= FND LOG ===========================
467: APP_EXCEPTION.RAISE_EXCEPTION;
468: fnd_msg_pub.add;
469: RAISE FND_API.G_EXC_ERROR;
470: elsif l_confirm_flag = 'N' then
471: l_return_status := 'Y' ;
472: return(l_return_status);

Line 501: FND_MSG_PUB.Initialize;

497: -- ========================= FND LOG ===========================
498: l_full_path VARCHAR2(100) := g_path || 'ar_mfar_quickcash';
499: -- ========================= FND LOG ===========================
500: begin
501: FND_MSG_PUB.Initialize;
502: SELECT
503: a.REMIT_FLAG,
504: a.confirm_flag
505: INTO

Line 521: fnd_msg_pub.add;

517: -- ========================= FND LOG ===========================
518: psa_utils.debug_other_msg(g_error_level,l_full_path,FALSE);
519: -- ========================= FND LOG ===========================
520: APP_EXCEPTION.RAISE_EXCEPTION;
521: fnd_msg_pub.add;
522: RAISE FND_API.G_EXC_ERROR;
523: elsif l_remit_flag = 'N' then
524: if l_confirm_flag = 'Y' then
525: FND_MESSAGE.SET_NAME('PSA','PSA_INVALID_CONFIRM_CODE');

Line 530: fnd_msg_pub.add;

526: -- ========================= FND LOG ===========================
527: psa_utils.debug_other_msg(g_error_level,l_full_path,FALSE);
528: -- ========================= FND LOG ===========================
529: APP_EXCEPTION.RAISE_EXCEPTION;
530: fnd_msg_pub.add;
531: RAISE FND_API.G_EXC_ERROR;
532: elsif l_confirm_flag = 'N' then
533: null; -- l_return_status := 'Y' ;
534: -- return(l_return_status);

Line 867: FND_MSG_PUB.Initialize;

863: -- ========================= FND LOG ===========================
864:
865: BEGIN
866:
867: FND_MSG_PUB.Initialize;
868:
869:
870: IF NOT c_rec_activity%isopen THEN
871: OPEN c_rec_activity;

Line 897: fnd_msg_pub.add;

893: -- ========================= FND LOG ===========================
894: psa_utils.debug_other_msg(g_excep_level,l_full_path,FALSE);
895: -- ========================= FND LOG ===========================
896: APP_EXCEPTION.RAISE_EXCEPTION;
897: fnd_msg_pub.add;
898: RAISE FND_API.G_EXC_ERROR;
899:
900: WHEN OTHERS THEN
901: -- ========================= FND LOG ===========================