DBA Data[Home] [Help]

APPS.CSM_DEBRIEF_EXPENSES_PKG dependencies on FND_MSG_PUB

Line 259: fnd_msg_pub.Add_Exc_Msg( g_object_name, 'APPLY_INSERT', sqlerrm);

255: CLOSE c_chk_task_status;
256:
257: exception
258: when others then
259: fnd_msg_pub.Add_Exc_Msg( g_object_name, 'APPLY_INSERT', sqlerrm);
260: p_error_msg := CSM_UTIL_PKG.GET_ERROR_MESSAGE_TEXT
261: (
262: p_api_error => TRUE
263: );

Line 402: fnd_msg_pub.Add_Exc_Msg( g_object_name, 'APPLY_UPDATE', sqlerrm);

398: end if;
399:
400: exception
401: when others then
402: fnd_msg_pub.Add_Exc_Msg( g_object_name, 'APPLY_UPDATE', sqlerrm);
403: p_error_msg := CSM_UTIL_PKG.GET_ERROR_MESSAGE_TEXT
404: (
405: p_api_error => TRUE
406: );

Line 427: FND_MSG_PUB.INITIALIZE;

423: ) IS
424: BEGIN
425: /*** initialize return status and message list ***/
426: x_return_status := FND_API.G_RET_STS_SUCCESS;
427: FND_MSG_PUB.INITIALIZE;
428:
429: IF p_record.dmltype$$='I' THEN
430: -- Process insert
431: APPLY_INSERT

Line 467: fnd_msg_pub.Add_Exc_Msg( g_object_name, 'APPLY_RECORD', sqlerrm);

463: CSM_UTIL_PKG.LOG
464: ( 'Exception occurred in CSM_DEBRIEF_EXPENSES_PKG.APPLY_RECORD:' || ' ' || sqlerrm
465: || ' for PK ' || p_record.debrief_line_id ,'CSM_DEBRIEF_EXPENSES_PKG.APPLY_RECORD',FND_LOG.LEVEL_EXCEPTION );
466:
467: fnd_msg_pub.Add_Exc_Msg( g_object_name, 'APPLY_RECORD', sqlerrm);
468: p_error_msg := CSM_UTIL_PKG.GET_ERROR_MESSAGE_TEXT
469: (
470: p_api_error => TRUE
471: );