DBA Data[Home] [Help]

APPS.CN_NOTIFICATION_PUB dependencies on CN_NOTIFICATION_PUB

Line 1: PACKAGE BODY CN_NOTIFICATION_PUB AS

1: PACKAGE BODY CN_NOTIFICATION_PUB AS
2: --$Header: cnpntxb.pls 120.1 2005/10/10 21:42:17 apink noship $
3:
4: --Global Variables
5: G_PKG_NAME CONSTANT VARCHAR2(30) := 'CN_Notification_PUB';

Line 5: G_PKG_NAME CONSTANT VARCHAR2(30) := 'CN_Notification_PUB';

1: PACKAGE BODY CN_NOTIFICATION_PUB AS
2: --$Header: cnpntxb.pls 120.1 2005/10/10 21:42:17 apink noship $
3:
4: --Global Variables
5: G_PKG_NAME CONSTANT VARCHAR2(30) := 'CN_Notification_PUB';
6: G_LAST_UPDATE_DATE DATE := Sysdate;
7: G_LAST_UPDATED_BY NUMBER := fnd_global.user_id;
8: G_CREATION_DATE DATE := Sysdate;
9: G_CREATED_BY NUMBER := fnd_global.user_id;

Line 174: IF JTF_USR_HKS.Ok_to_Execute('CN_NOTIFICATION_PUB',

170: -- User hooks
171: --+
172:
173: -- customer pre-processing section
174: IF JTF_USR_HKS.Ok_to_Execute('CN_NOTIFICATION_PUB',
175: 'CREATE_NOTIFICATION',
176: 'B',
177: 'C')
178: THEN

Line 179: cn_notification_pub_cuhk.create_notification_pre

175: 'CREATE_NOTIFICATION',
176: 'B',
177: 'C')
178: THEN
179: cn_notification_pub_cuhk.create_notification_pre
180: (p_api_version => p_api_version,
181: p_init_msg_list => p_init_msg_list,
182: p_commit => p_commit,
183: p_validation_level => p_validation_level,

Line 202: IF JTF_USR_HKS.Ok_to_Execute('CN_NOTIFICATION_PUB',

198: END IF;
199: END IF;
200:
201: -- vertical industry pre-processing section
202: IF JTF_USR_HKS.Ok_to_Execute('CN_NOTIFICATION_PUB',
203: 'CREATE_NOTIFICATION',
204: 'B',
205: 'V')
206: THEN

Line 207: cn_notification_pub_vuhk.create_notification_pre

203: 'CREATE_NOTIFICATION',
204: 'B',
205: 'V')
206: THEN
207: cn_notification_pub_vuhk.create_notification_pre
208: (p_api_version => p_api_version,
209: p_init_msg_list => p_init_msg_list,
210: p_commit => p_commit,
211: p_validation_level => p_validation_level,

Line 329: IF JTF_USR_HKS.Ok_to_Execute('CN_NOTIFICATION_PUB',

325:
326: -- SK Start of post processing hooks
327:
328: -- vertical post processing section
329: IF JTF_USR_HKS.Ok_to_Execute('CN_NOTIFICATION_PUB',
330: 'CREATE_NOTIFICATION',
331: 'A',
332: 'V')
333: THEN

Line 334: cn_notification_pub_vuhk.create_notification_post

330: 'CREATE_NOTIFICATION',
331: 'A',
332: 'V')
333: THEN
334: cn_notification_pub_vuhk.create_notification_post
335: (p_api_version => p_api_version,
336: p_init_msg_list => p_init_msg_list,
337: p_commit => p_commit,
338: p_validation_level => p_validation_level,

Line 357: IF JTF_USR_HKS.Ok_to_Execute('CN_NOTIFICATION_PUB',

353: END IF;
354: END IF;
355:
356: -- customer post processing section
357: IF JTF_USR_HKS.Ok_to_Execute('CN_NOTIFICATION_PUB',
358: 'CREATE_NOTIFICATION',
359: 'A',
360: 'C')
361: THEN

Line 362: cn_notification_pub_cuhk.create_notification_post

358: 'CREATE_NOTIFICATION',
359: 'A',
360: 'C')
361: THEN
362: cn_notification_pub_cuhk.create_notification_post
363: (p_api_version => p_api_version,
364: p_init_msg_list => p_init_msg_list,
365: p_commit => p_commit,
366: p_validation_level => p_validation_level,

Line 387: IF JTF_USR_HKS.Ok_to_execute('CN_NOTIFICATION_PUB',

383: -- SK End of post processing hooks
384:
385:
386: -- Message generation section.
387: IF JTF_USR_HKS.Ok_to_execute('CN_NOTIFICATION_PUB',
388: 'CREATE_NOTIFICATION',
389: 'M',
390: 'M') THEN
391: IF cn_notification_pub_cuhk.ok_to_generate_msg

Line 391: IF cn_notification_pub_cuhk.ok_to_generate_msg

387: IF JTF_USR_HKS.Ok_to_execute('CN_NOTIFICATION_PUB',
388: 'CREATE_NOTIFICATION',
389: 'M',
390: 'M') THEN
391: IF cn_notification_pub_cuhk.ok_to_generate_msg
392: (p_not_trx_id => l_not_trx_id) THEN
393: -- Clear bind variables
394: -- XMLGEN.clearBindValues;
395:

Line 494: END CN_Notification_PUB;

490: p_encoded => fnd_api.g_false
491: );
492: END Create_Notification;
493:
494: END CN_Notification_PUB;