DBA Data[Home] [Help]

APPS.CS_EXTENSIBLE_ATTRIBUTES_PKG SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 8

PROCEDURE Delete_Row(
    p_incident_id  NUMBER)
 IS
 BEGIN
   DELETE FROM CS_INCIDENTS_EXT
    WHERE incident_id = p_incident_id
    and context <> -1;
Line: 20

 END Delete_Row;