DBA Data[Home] [Help]

APPS.CS_INCIDENTLINKS_PVT dependencies on CS_SR_CHILD_AUDIT_PKG

Line 739: CS_SR_CHILD_AUDIT_PKG.CS_SR_AUDIT_CHILD

735: l_link_type, l_to_incident_id, l_to_incident_number)
736: RETURNING link_id,object_version_number into x_link_id,x_object_version_number ;
737:
738: --Added call to SR Child Audit API for auditing creation of SR Link --anmukher --09/12/03
739: CS_SR_CHILD_AUDIT_PKG.CS_SR_AUDIT_CHILD
740: (P_incident_id => p_link_rec.subject_id,
741: P_updated_entity_code => 'SR_LINK',
742: p_updated_entity_id => x_link_id,
743: p_entity_update_date => sysdate,

Line 842: CS_SR_CHILD_AUDIT_PKG.CS_SR_AUDIT_CHILD

838:
839: --Added call to SR Child Audit API for auditing creation of SR Link --anmukher --09/12/03
840: -- Create audit record only if object entity is a service request
841: IF (p_link_rec.object_type = 'SR') THEN
842: CS_SR_CHILD_AUDIT_PKG.CS_SR_AUDIT_CHILD
843: (P_incident_id => p_link_rec.object_id,
844: P_updated_entity_code => 'SR_LINK',
845: p_updated_entity_id => x_reciprocal_link_id,
846: p_entity_update_date => sysdate,

Line 1511: CS_SR_CHILD_AUDIT_PKG.CS_SR_AUDIT_CHILD

1507: -- an existing updated incident link and creates a new link. Hence if we return the object_version_number from
1508: -- the update statement as above it would be wrong object_version_number.
1509:
1510: --Added call to SR Child Audit API for auditing end-dating of SR Link --anmukher --09/12/03
1511: CS_SR_CHILD_AUDIT_PKG.CS_SR_AUDIT_CHILD
1512: (P_incident_id => l_old_values_rec.subject_id,
1513: P_updated_entity_code => 'SR_LINK',
1514: p_updated_entity_id => p_link_id,
1515: p_entity_update_date => sysdate,

Line 1538: CS_SR_CHILD_AUDIT_PKG.CS_SR_AUDIT_CHILD

1534:
1535: --Added call to SR Child Audit API for auditing end-dating of SR Link --anmukher --09/12/03
1536: -- audit to be created only for Service requests
1537: IF (l_old_values_rec.object_type = 'SR') THEN
1538: CS_SR_CHILD_AUDIT_PKG.CS_SR_AUDIT_CHILD
1539: (P_incident_id => l_old_values_rec.object_id,
1540: P_updated_entity_code => 'SR_LINK',
1541: p_updated_entity_id => l_old_values_rec.reciprocal_link_id,
1542: p_entity_update_date => sysdate,