DBA Data[Home] [Help]

APPS.ARP_CRM_PKG dependencies on APP_EXCEPTION

Line 30: app_exception.raise_exception;

26: );
27: --
28: if (overlap_count >= 1) then
29: fnd_message.set_name('AR','AR_CUST_PAYMETH_OVERLAP');
30: app_exception.raise_exception;
31: end if;
32: elsif (x_meth_type = 'SITE') then
33: --
34: SELECT count(1)

Line 48: app_exception.raise_exception;

44: );
45: --
46: if (overlap_count >= 1) then
47: fnd_message.set_name('AR','AR_CUST_PAYMETH_OVERLAP');
48: app_exception.raise_exception;
49: end if;
50: else
51: app_exception.invalid_argument('arp_cust_receipt_methods_pkg.check_unique','meth_type',x_meth_type);
52: end if;

Line 51: app_exception.invalid_argument('arp_cust_receipt_methods_pkg.check_unique','meth_type',x_meth_type);

47: fnd_message.set_name('AR','AR_CUST_PAYMETH_OVERLAP');
48: app_exception.raise_exception;
49: end if;
50: else
51: app_exception.invalid_argument('arp_cust_receipt_methods_pkg.check_unique','meth_type',x_meth_type);
52: end if;
53: --
54: end check_unique;
55:

Line 81: app_exception.raise_exception;

77:
78:
79: if (primary_count >= 1 ) then
80: fnd_message.set_name('AR','AR_CUST_PAYMETH_PRIM_OVERLAP');
81: app_exception.raise_exception;
82: end if;
83:
84: elsif( x_meth_type = 'SITE' ) then
85: SELECT count(1)

Line 98: app_exception.raise_exception;

94: cpm.start_date between x_start_date and nvl(x_end_date,cpm.start_date)
95: );
96: if (primary_count >= 1 ) then
97: fnd_message.set_name('AR','AR_CUST_PAYMETH_PRIM_OVERLAP');
98: app_exception.raise_exception;
99: end if;
100:
101: else
102: app_exception.invalid_argument('arp_cust_receipt_methods_pkg.check_primary','meth_type',x_meth_type);

Line 102: app_exception.invalid_argument('arp_cust_receipt_methods_pkg.check_primary','meth_type',x_meth_type);

98: app_exception.raise_exception;
99: end if;
100:
101: else
102: app_exception.invalid_argument('arp_cust_receipt_methods_pkg.check_primary','meth_type',x_meth_type);
103: end if;
104: --
105: end check_primary;
106:

Line 271: APP_EXCEPTION.Raise_Exception;

267: FETCH C INTO Recinfo;
268: if (C%NOTFOUND) then
269: CLOSE C;
270: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_DELETED');
271: APP_EXCEPTION.Raise_Exception;
272: end if;
273: CLOSE C;
274: if (
275:

Line 336: APP_EXCEPTION.Raise_Exception;

332: ) then
333: return;
334: else
335: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_CHANGED');
336: APP_EXCEPTION.Raise_Exception;
337: end if;
338: END Lock_Row;
339:
340: