DBA Data[Home] [Help]

APPS.CSM_DEBRIEF_LABOR_PKG dependencies on FND_MSG_PUB

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

260: when others then
261: CSM_UTIL_PKG.log( 'Exception in ' || g_object_name || '.APPLY_INSERT:'
262: || ' for PK ' || p_record.DEBRIEF_LINE_ID ,'CSM_DEBRIEF_LABOR_PKG.APPLY_INSERT',FND_LOG.LEVEL_EXCEPTION);
263:
264: fnd_msg_pub.Add_Exc_Msg( g_object_name, 'APPLY_INSERT', sqlerrm);
265: p_error_msg := CSM_UTIL_PKG.GET_ERROR_MESSAGE_TEXT
266: (
267: p_api_error => TRUE
268: );

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

391: END IF;
392:
393: EXCEPTION
394: WHEN OTHERS THEN
395: fnd_msg_pub.Add_Exc_Msg( g_object_name, 'APPLY_UPDATE', sqlerrm);
396: p_error_msg := CSM_UTIL_PKG.GET_ERROR_MESSAGE_TEXT
397: ( p_api_error => TRUE );
398:
399: CSM_UTIL_PKG.log( 'Exception in ' || g_object_name || '.APPLY_UPDATE:'

Line 418: FND_MSG_PUB.INITIALIZE;

414: ) IS
415: BEGIN
416: /*** initialize return status and message list ***/
417: x_return_status := FND_API.G_RET_STS_SUCCESS;
418: FND_MSG_PUB.INITIALIZE;
419:
420: IF p_record.dmltype$$='I' THEN
421: -- Process insert
422: APPLY_INSERT

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

454: CSM_UTIL_PKG.LOG
455: ( 'Exception occurred in CSM_DEBRIEF_labor_PKG.APPLY_RECORD:' || ' ' || sqlerrm
456: || ' for PK ' || p_record.debrief_line_id ,'CSM_DEBRIEF_LABOR_PKG.APPLY_RECORD',FND_LOG.LEVEL_EXCEPTION);
457:
458: fnd_msg_pub.Add_Exc_Msg( g_object_name, 'APPLY_RECORD', sqlerrm);
459: p_error_msg := CSM_UTIL_PKG.GET_ERROR_MESSAGE_TEXT
460: (
461: p_api_error => TRUE
462: );