DBA Data[Home] [Help]

APPS.WIP_JSI_PROCESSOR dependencies on FND_MESSAGE

Line 647: FND_MESSAGE.set_name('WIP','WIP_QTY_REQ_CHANGE_WARNING');

643:
644: if (x_load_type in (WIP_CONSTANTS.RESCHED_JOB, WIP_CONSTANTS.RESCHED_LOT_JOB) and
645: wip_picking_pub.is_job_pick_released(x_entity_id, x_rep_sched_id, x_org_id) and
646: x_old_start_quantity <> x_new_start_quantity) then
647: FND_MESSAGE.set_name('WIP','WIP_QTY_REQ_CHANGE_WARNING');
648: wip_jsi_utils.record_current_error(TRUE);
649:
650: wip_picking_pub.Update_Job_BackOrdQty (p_wip_entity_id => x_entity_id,
651: p_repetitive_schedule_id => x_rep_sched_id,

Line 657: fnd_message.set_name('WIP', 'WIP_UNEXPECTED_ERROR');

653: x_return_status => l_status,
654: x_msg_data => l_msg_data);
655:
656: if(l_status <> FND_API.G_RET_STS_SUCCESS) then
657: fnd_message.set_name('WIP', 'WIP_UNEXPECTED_ERROR');
658: fnd_message.set_token('ERROR_TEXT', 'WIP_JSI_Processor.update_parent_table calling => ' ||
659: 'wip_picking_pub.Update_Job_BackOrdQty: ' || SQLERRM);
660: wip_jsi_utils.record_current_error;
661: end if;

Line 658: fnd_message.set_token('ERROR_TEXT', 'WIP_JSI_Processor.update_parent_table calling => ' ||

654: x_msg_data => l_msg_data);
655:
656: if(l_status <> FND_API.G_RET_STS_SUCCESS) then
657: fnd_message.set_name('WIP', 'WIP_UNEXPECTED_ERROR');
658: fnd_message.set_token('ERROR_TEXT', 'WIP_JSI_Processor.update_parent_table calling => ' ||
659: 'wip_picking_pub.Update_Job_BackOrdQty: ' || SQLERRM);
660: wip_jsi_utils.record_current_error;
661: end if;
662: end if;

Line 672: fnd_message.set_name('WIP', 'WIP_UNEXPECTED_ERROR');

668: p_wip_entity_type => wip_constants.discrete,
669: x_return_status => l_status,
670: x_msg_data => l_msg_data);
671: if(l_status <> FND_API.G_RET_STS_SUCCESS) then
672: fnd_message.set_name('WIP', 'WIP_UNEXPECTED_ERROR');
673: fnd_message.set_token('ERROR_TEXT', 'WIP_JSI_Processor.update_parent_table calling => ' ||
674: 'wip_picking_pub.Update_Job_BackOrdQty: ' || SQLERRM);
675: wip_jsi_utils.record_current_error;
676: end if;

Line 673: fnd_message.set_token('ERROR_TEXT', 'WIP_JSI_Processor.update_parent_table calling => ' ||

669: x_return_status => l_status,
670: x_msg_data => l_msg_data);
671: if(l_status <> FND_API.G_RET_STS_SUCCESS) then
672: fnd_message.set_name('WIP', 'WIP_UNEXPECTED_ERROR');
673: fnd_message.set_token('ERROR_TEXT', 'WIP_JSI_Processor.update_parent_table calling => ' ||
674: 'wip_picking_pub.Update_Job_BackOrdQty: ' || SQLERRM);
675: wip_jsi_utils.record_current_error;
676: end if;
677: end if;

Line 931: P_Error_Msg := SUBSTR(FND_MESSAGE.get,1,500);

927: P_Success_Flag := 1;
928: EXCEPTION
929: WHEN OTHERS THEN
930: P_Success_Flag := 0;
931: P_Error_Msg := SUBSTR(FND_MESSAGE.get,1,500);
932: END ML_Release;
933:
934: PROCEDURE ML_Status_Change(P_Wip_Entity_Id IN NUMBER,
935: P_Organization_Id IN NUMBER,

Line 963: P_Error_Msg := SUBSTR(FND_MESSAGE.get,1,500);

959:
960: EXCEPTION
961: WHEN OTHERS THEN
962: P_Success_Flag := 0;
963: P_Error_Msg := SUBSTR(FND_MESSAGE.get,1,500);
964: END;
965:
966:
967: END WIP_JSI_Processor ;