DBA Data[Home] [Help]

APPS.AMW_LOAD_CONSTRAINT_DATA dependencies on AMW_UTILITY_PVT

Line 875: v_err_msg := AMW_UTILITY_PVT.get_message_text('AMW_CONSTRAINT_UPL_NUM_ERROR');

871: -- ptulasi : 10/11/2007
872: -- bug : 6494262 : Modified the below code to display different messages for set type
873: -- and me type constraint
874: IF c_inv_func_rec.cst_type_code = 'ME' THEN
875: v_err_msg := AMW_UTILITY_PVT.get_message_text('AMW_CONSTRAINT_UPL_NUM_ERROR');
876: ELSE
877: v_err_msg := AMW_UTILITY_PVT.get_message_text('AMW_CST_FUNCSET_NUM_ERROR');
878: END IF;
879: FND_FILE.PUT_LINE(FND_FILE.LOG, 'c_check_inv_func*** '||v_err_msg||' for interface_id: '||L_INTERFACE_ID);

Line 877: v_err_msg := AMW_UTILITY_PVT.get_message_text('AMW_CST_FUNCSET_NUM_ERROR');

873: -- and me type constraint
874: IF c_inv_func_rec.cst_type_code = 'ME' THEN
875: v_err_msg := AMW_UTILITY_PVT.get_message_text('AMW_CONSTRAINT_UPL_NUM_ERROR');
876: ELSE
877: v_err_msg := AMW_UTILITY_PVT.get_message_text('AMW_CST_FUNCSET_NUM_ERROR');
878: END IF;
879: FND_FILE.PUT_LINE(FND_FILE.LOG, 'c_check_inv_func*** '||v_err_msg||' for interface_id: '||L_INTERFACE_ID);
880: update_interface_with_error(
881: p_ERR_MSG => v_err_msg

Line 908: v_err_msg := AMW_UTILITY_PVT.get_message_text('AMW_CONSTRAINT_UPL_NUM_ERROR');

904: -- ptulasi : 10/11/2007
905: -- bug : 6494262 : Modified the below code to display different messages for respset
906: -- type and respme type constraint
907: IF c_inv_resp_rec.cst_type_code = 'RESPME' THEN
908: v_err_msg := AMW_UTILITY_PVT.get_message_text('AMW_CONSTRAINT_UPL_NUM_ERROR');
909: ELSE
910: v_err_msg := AMW_UTILITY_PVT.get_message_text('AMW_CST_RESPSET_NUM_ERROR');
911: END IF;
912: FND_FILE.PUT_LINE(FND_FILE.LOG, 'c_check_inv_resp*** '||v_err_msg||' for interface_id: '||L_INTERFACE_ID);

Line 910: v_err_msg := AMW_UTILITY_PVT.get_message_text('AMW_CST_RESPSET_NUM_ERROR');

906: -- type and respme type constraint
907: IF c_inv_resp_rec.cst_type_code = 'RESPME' THEN
908: v_err_msg := AMW_UTILITY_PVT.get_message_text('AMW_CONSTRAINT_UPL_NUM_ERROR');
909: ELSE
910: v_err_msg := AMW_UTILITY_PVT.get_message_text('AMW_CST_RESPSET_NUM_ERROR');
911: END IF;
912: FND_FILE.PUT_LINE(FND_FILE.LOG, 'c_check_inv_resp*** '||v_err_msg||' for interface_id: '||L_INTERFACE_ID);
913: update_interface_with_error(
914: p_ERR_MSG => v_err_msg

Line 939: v_err_msg := AMW_UTILITY_PVT.get_message_text('AMW_CONSTRAINT_UPL_INCONSIST');

935: -- found there is not sufficient constraint entries for the same constraint name
936: WHEN E_INCONSIST_CST_UPL THEN
937: BEGIN
938: FND_FILE.PUT_LINE(FND_FILE.LOG, 'INCONSISTENT CST UPLOAD FOUND' );
939: v_err_msg := AMW_UTILITY_PVT.get_message_text('AMW_CONSTRAINT_UPL_INCONSIST');
940: FND_FILE.PUT_LINE(FND_FILE.LOG, 'c_chk_dup_csts*** '||v_err_msg||' for interface_id: '||L_INTERFACE_ID);
941: update_interface_with_error(
942: p_ERR_MSG => v_err_msg
943: ,p_table_name => 'AMW_CONSTRAINTS_B'