DBA Data[Home] [Help]

APPS.WIP_OPERATIONS_PKG dependencies on FND_MESSAGE

Line 190: fnd_message.set_name(

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

Line 193: fnd_message.raise_error;

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

Line 463: fnd_message.raise_error;

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

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

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

Line 777: fnd_message.raise_error;

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

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

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

Line 876: fnd_message.raise_error;

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

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

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

Line 882: fnd_message.raise_error;

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