DBA Data[Home] [Help]

APPS.ARP_CRM_PKG dependencies on FND_MESSAGE

Line 29: fnd_message.set_name('AR','AR_CUST_PAYMETH_OVERLAP');

25: cpm.start_date between x_start_date and nvl(x_end_date,cpm.start_date)
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: --

Line 47: fnd_message.set_name('AR','AR_CUST_PAYMETH_OVERLAP');

43: cpm.start_date between x_start_date and nvl(x_end_date,cpm.start_date)
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);

Line 80: fnd_message.set_name('AR','AR_CUST_PAYMETH_PRIM_OVERLAP');

76: );
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

Line 97: fnd_message.set_name('AR','AR_CUST_PAYMETH_PRIM_OVERLAP');

93: OR
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

Line 270: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_DELETED');

266: OPEN C;
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 (

Line 335: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_CHANGED');

331: AND (X_Attribute15 IS NULL)))
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: