DBA Data[Home] [Help]

APPS.CSM_MAIL_RECIPIENTS_PKG dependencies on WF_NOTIFICATION

Line 70: wf_notification.respond(nid=>p_record.NOTIFICATION_ID,responder=>p_record.clid$$cs);

66: CSM_UTIL_PKG.LOG ( 'Delete flag set for notification '|| p_record.notification_id
67: ,'CSM_MAIL_RECIPIENTS_PKG.APPLY_CLIENT_CHANGES',FND_LOG.LEVEL_PROCEDURE);
68:
69: begin
70: wf_notification.respond(nid=>p_record.NOTIFICATION_ID,responder=>p_record.clid$$cs);
71: exception
72: when others then
73: null;
74: end;

Line 88: from wf_notification_attributes wna

84: CSM_UTIL_PKG.LOG ( 'Read flag is being set for notification '|| p_record.notification_id
85: ,'CSM_MAIL_RECIPIENTS_PKG.APPLY_CLIENT_CHANGES',FND_LOG.LEVEL_PROCEDURE);
86: begin
87: select 1 into l_dummy
88: from wf_notification_attributes wna
89: where wna.notification_id = p_record.notification_id
90: and wna.name = 'READ_FLAG';
91: exception
92: when others then

Line 93: wf_notification.AddAttr( p_record.notification_id, 'READ_FLAG');

89: where wna.notification_id = p_record.notification_id
90: and wna.name = 'READ_FLAG';
91: exception
92: when others then
93: wf_notification.AddAttr( p_record.notification_id, 'READ_FLAG');
94: end;
95: wf_notification.SetAttrText( p_record.notification_id, 'READ_FLAG', NVL(substr(p_record.read_flag,1,1),'T'));
96: end if;
97:

Line 95: wf_notification.SetAttrText( p_record.notification_id, 'READ_FLAG', NVL(substr(p_record.read_flag,1,1),'T'));

91: exception
92: when others then
93: wf_notification.AddAttr( p_record.notification_id, 'READ_FLAG');
94: end;
95: wf_notification.SetAttrText( p_record.notification_id, 'READ_FLAG', NVL(substr(p_record.read_flag,1,1),'T'));
96: end if;
97:
98:
99: x_return_status := FND_API.G_RET_STS_SUCCESS;