DBA Data[Home] [Help]

APPS.CS_SERVICEREQUEST_UTIL dependencies on CS_SR_STATUS_TRANSITIONS

Line 1485: FROM cs_sr_status_transitions

1481:
1482: -- Check Whether transitions are defined for the Group.
1483: CURSOR status_Transitions_csr IS
1484: SELECT status_Transition_id
1485: FROM cs_sr_status_transitions
1486: WHERE status_Group_id = l_status_group_id
1487: AND TRUNC(SYSDATE) BETWEEN TRUNC(NVL(start_date, SYSDATE))
1488: AND TRUNC(NVL(end_date, SYSDATE));
1489: /** This above should later be moved to use transition IND**/

Line 1494: FROM cs_sr_status_transitions

1490:
1491: -- Check Whether Current update is a Valid transitions for the Group.
1492: CURSOR valid_status_Transitions_csr IS
1493: SELECT status_Transition_id
1494: FROM cs_sr_status_transitions
1495: WHERE status_Group_id = l_status_group_id
1496: AND FROM_Incident_status_id = p_old_status_id
1497: AND TO_Incident_status_id = p_new_status_id
1498: AND TRUNC(SYSDATE) BETWEEN TRUNC(NVL(start_date, SYSDATE))