DBA Data[Home] [Help]

APPS.WIP_OPERATIONS_PKG dependencies on FND_MESSAGE

Line 192: fnd_message.set_name(

188: and wo1.operation_seq_num(+) = x_prev_op_seq_num;
189:
190: exception
191: when DUP_VAL_ON_INDEX then
192: fnd_message.set_name(
193: application => 'WIP',
194: name => 'WIP_SAME_OP_EXISTS');
195: fnd_message.raise_error;
196: end;

Line 195: fnd_message.raise_error;

191: when DUP_VAL_ON_INDEX then
192: fnd_message.set_name(
193: application => 'WIP',
194: name => 'WIP_SAME_OP_EXISTS');
195: fnd_message.raise_error;
196: end;
197:
198: -- if standard operation, add resources and instructions
199: if (adding_standard_op) then

Line 465: fnd_message.raise_error;

461: when others then
462: wip_constants.get_ora_error(
463: application => 'WIP',
464: proc_name => 'WIP_OPERATIONS_PKG.ADD');
465: fnd_message.raise_error;
466:
467: end add;
468:
469:

Line 778: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_DELETED');

774: OPEN C;
775: FETCH C INTO Recinfo;
776: if (C%NOTFOUND) then
777: CLOSE C;
778: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_DELETED');
779: fnd_message.raise_error;
780: app_exception.raise_exception;
781: end if;
782: CLOSE C;

Line 779: fnd_message.raise_error;

775: FETCH C INTO Recinfo;
776: if (C%NOTFOUND) then
777: CLOSE C;
778: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_DELETED');
779: fnd_message.raise_error;
780: app_exception.raise_exception;
781: end if;
782: CLOSE C;
783:

Line 877: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_CHANGED');

873: )
874: then
875: return;
876: else
877: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_CHANGED');
878: fnd_message.raise_error;
879:
880: app_exception.raise_exception;
881: end if;

Line 878: fnd_message.raise_error;

874: then
875: return;
876: else
877: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_CHANGED');
878: fnd_message.raise_error;
879:
880: app_exception.raise_exception;
881: end if;
882: else

Line 883: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_CHANGED');

879:
880: app_exception.raise_exception;
881: end if;
882: else
883: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_CHANGED');
884: fnd_message.raise_error;
885: app_exception.raise_exception;
886: end if;
887:

Line 884: fnd_message.raise_error;

880: app_exception.raise_exception;
881: end if;
882: else
883: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_CHANGED');
884: fnd_message.raise_error;
885: app_exception.raise_exception;
886: end if;
887:
888: END Lock_Row;

Line 1395: FND_MESSAGE.set_name('WIP','WIP_PENDING_CLOCKS');

1391: X_Return_Status := fnd_api.g_ret_sts_success;
1392:
1393: l_pending_clocks := WIP_WS_TIME_ENTRY.IS_CLOCK_PENDING(P_Wip_Entity_Id,P_Operation_Seq_Num);
1394: IF (l_pending_clocks <> 'N') THEN
1395: FND_MESSAGE.set_name('WIP','WIP_PENDING_CLOCKS');
1396: X_Error_Message := fnd_message.get;
1397: X_Return_Status := fnd_api.g_ret_sts_error;
1398: return;
1399: END IF;

Line 1396: X_Error_Message := fnd_message.get;

1392:
1393: l_pending_clocks := WIP_WS_TIME_ENTRY.IS_CLOCK_PENDING(P_Wip_Entity_Id,P_Operation_Seq_Num);
1394: IF (l_pending_clocks <> 'N') THEN
1395: FND_MESSAGE.set_name('WIP','WIP_PENDING_CLOCKS');
1396: X_Error_Message := fnd_message.get;
1397: X_Return_Status := fnd_api.g_ret_sts_error;
1398: return;
1399: END IF;
1400:

Line 1423: FND_MESSAGE.SET_NAME('WIP','WIP_DELETE_OPERATION');

1419: l_quantity_scrapped <> 0 OR
1420: l_quantity_completed <> 0 OR
1421: wip_operations_utilities.pending_op_txns(P_Wip_Entity_Id,P_Organization_Id,P_Operation_Seq_Num,null,null) = TRUE
1422: THEN
1423: FND_MESSAGE.SET_NAME('WIP','WIP_DELETE_OPERATION');
1424: X_Error_Message := fnd_message.get;
1425: X_Return_Status := fnd_api.g_ret_sts_error;
1426: return;
1427: END IF;

Line 1424: X_Error_Message := fnd_message.get;

1420: l_quantity_completed <> 0 OR
1421: wip_operations_utilities.pending_op_txns(P_Wip_Entity_Id,P_Organization_Id,P_Operation_Seq_Num,null,null) = TRUE
1422: THEN
1423: FND_MESSAGE.SET_NAME('WIP','WIP_DELETE_OPERATION');
1424: X_Error_Message := fnd_message.get;
1425: X_Return_Status := fnd_api.g_ret_sts_error;
1426: return;
1427: END IF;
1428: EXCEPTION