DBA Data[Home] [Help]

APPS.CSM_DEBRIEF_PARTS_PKG dependencies on FND_MSG_PUB

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

525: CLOSE c_chk_task_status;
526:
527: exception
528: when others then
529: fnd_msg_pub.Add_Exc_Msg( g_object_name, 'APPLY_INSERT', sqlerrm);
530: p_error_msg := CSM_UTIL_PKG.GET_ERROR_MESSAGE_TEXT
531: (
532: p_api_error => TRUE
533: );

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

861: CLOSE c_chk_task_status;
862:
863: EXCEPTION
864: WHEN OTHERS THEN
865: fnd_msg_pub.Add_Exc_Msg( g_object_name, 'APPLY_UPDATE', sqlerrm);
866: p_error_msg := CSM_UTIL_PKG.GET_ERROR_MESSAGE_TEXT(p_api_error => TRUE);
867: CSM_UTIL_PKG.log( 'Exception in ' || g_object_name || '.APPLY_UPDATE:'
868: || ' for PK ' || p_record.DEBRIEF_LINE_ID,'CSM_DEBRIEF_PARTS_PKG.APPLY_UPDATE',FND_LOG.LEVEL_EXCEPTION );
869: x_return_status := FND_API.G_RET_STS_ERROR;

Line 885: FND_MSG_PUB.INITIALIZE;

881: ) IS
882: BEGIN
883: /*** initialize return status and message list ***/
884: x_return_status := FND_API.G_RET_STS_SUCCESS;
885: FND_MSG_PUB.INITIALIZE;
886:
887: IF p_record.dmltype$$='I' THEN
888: -- Process insert
889: APPLY_INSERT

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

921: CSM_UTIL_PKG.LOG
922: ( 'Exception occurred in CSM_DEBRIEF_parts_PKG.APPLY_RECORD:' || ' ' || sqlerrm
923: || ' for PK ' || p_record.debrief_line_id,'CSM_DEBRIEF_PARTS_PKG.APPLY_RECORD',FND_LOG.LEVEL_EXCEPTION );
924:
925: fnd_msg_pub.Add_Exc_Msg( g_object_name, 'APPLY_RECORD', sqlerrm);
926: p_error_msg := CSM_UTIL_PKG.GET_ERROR_MESSAGE_TEXT
927: (
928: p_api_error => TRUE
929: );