DBA Data[Home] [Help]

APPS.CS_INCIDENTLINKS_PUB dependencies on CS_INCIDENT_LINKS_EXT

Line 1135: From cs_incident_links_ext

1131: -- Now query the external link table to retrieve the external link ID based on the retrieved attributes
1132: Begin
1133: Select link_id
1134: Into lx_link_id
1135: From cs_incident_links_ext
1136: Where from_incident_id = l_from_incident_id
1137: And to_object_id = l_to_object_id
1138: And to_object_number = l_to_object_number;
1139: Exception

Line 1216: from cs_incident_links_ext

1212:
1213: -- Cursor to fetch details of the external link to be updated
1214: cursor c_ext_link is
1215: select *
1216: from cs_incident_links_ext
1217: where link_id = p_link_id;
1218:
1219: -- Cursor variable to store data fetched from the cursor
1220: l_ext_link_rec c_ext_link%ROWTYPE;

Line 1487: select * from cs_incident_links_ext

1483: l_derived_internal_link_id NUMBER;
1484:
1485: -- Cursor to fetch the details of the external link to be deleted
1486: cursor c_ext_link is
1487: select * from cs_incident_links_ext
1488: where link_id = p_link_id;
1489:
1490: -- Cursor variable to store the external link details
1491: l_ext_link_rec c_ext_link%ROWTYPE;