DBA Data[Home] [Help]

APPS.OE_PC_RSET_SEL_COLS_PKG dependencies on APP_EXCEPTION

Line 84: APP_EXCEPTION.Raise_Exception;

80: Fetch C into Recinfo;
81: if (C%NOTFOUND) then
82: Close C;
83: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_DELETED');
84: APP_EXCEPTION.Raise_Exception;
85: end if;
86: Close C;
87: if (
88: (Recinfo.record_set_id = x_record_set_id)

Line 101: APP_EXCEPTION.Raise_Exception;

97: ) then
98: return;
99: else
100: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_CHANGED');
101: APP_EXCEPTION.Raise_Exception;
102: end if;
103: End Lock_Row;
104:
105: --------------------------------------------------------------------

Line 169: app_exception.raise_exception;

165: AND ((x_rowid IS null) OR (rowid <> x_rowid));
166:
167: if (dummy >= 1) then
168: fnd_message.set_name('ONT', 'OE_PC_RS_DUP_COLUMN_NAME');
169: app_exception.raise_exception;
170: end if;
171: End Check_Unique;
172: -----------------------------------------------------------------------
173: END OE_PC_RSET_SEL_COLS_PKG;