DBA Data[Home] [Help]

APPS.CSM_MAIL_MESSAGES_PKG dependencies on ASG_BASE

Line 147: SELECT 1 INTO l_num_grp FROM CSM_NOTIFICATIONS_ACC WHERE NOTIFICATION_ID=l_notification_id AND USER_ID=asg_base.get_user_id(l_sender);

143:
144: CSM_NOTIFICATION_EVENT_PKG.DOWNLOAD_NOTIFICATION(l_notification_id,l_return_status); --return_status doesn't matter here
145:
146: BEGIN -- since FROM_ROLE column is filled only when mailer parses it.
147: SELECT 1 INTO l_num_grp FROM CSM_NOTIFICATIONS_ACC WHERE NOTIFICATION_ID=l_notification_id AND USER_ID=asg_base.get_user_id(l_sender);
148: EXCEPTION
149: WHEN OTHERS THEN
150: CSM_NOTIFICATION_EVENT_PKG.INSERT_NOTIFICATIONS_ACC(l_notification_id,asg_base.get_user_id(l_sender));
151: END;

Line 150: CSM_NOTIFICATION_EVENT_PKG.INSERT_NOTIFICATIONS_ACC(l_notification_id,asg_base.get_user_id(l_sender));

146: BEGIN -- since FROM_ROLE column is filled only when mailer parses it.
147: SELECT 1 INTO l_num_grp FROM CSM_NOTIFICATIONS_ACC WHERE NOTIFICATION_ID=l_notification_id AND USER_ID=asg_base.get_user_id(l_sender);
148: EXCEPTION
149: WHEN OTHERS THEN
150: CSM_NOTIFICATION_EVENT_PKG.INSERT_NOTIFICATIONS_ACC(l_notification_id,asg_base.get_user_id(l_sender));
151: END;
152:
153: x_return_status := FND_API.G_RET_STS_SUCCESS;
154: end if;