DBA Data[Home] [Help]

APPS.CSM_SR_EVENT_PKG dependencies on CSM_HZ_LOCATIONS_EVENT_PKG

Line 981: CSM_HZ_LOCATIONS_EVENT_PKG.insert_location(p_location_id => l_sr_rec.incident_location_id,

977: p_user_id=>l_owner_id,
978: p_flowtype=>NULL);
979: IF l_sr_rec.incident_location_type = 'HZ_LOCATION' THEN --R12 Assest
980: --insert location for the sr
981: CSM_HZ_LOCATIONS_EVENT_PKG.insert_location(p_location_id => l_sr_rec.incident_location_id,
982: p_user_id => l_owner_id);
983: ELSE
984: -- get party site
985: IF l_sr_rec.incident_location_id IS NOT NULL THEN

Line 1212: csm_hz_locations_event_pkg.delete_location(p_location_id => l_sr_rec.incident_location_id,

1208: p_user_id=>l_owner_id,
1209: p_flowtype=>NULL);
1210: IF l_sr_rec.incident_location_type = 'HZ_LOCATION' THEN --R12 Assest
1211: --insert location for the sr
1212: csm_hz_locations_event_pkg.delete_location(p_location_id => l_sr_rec.incident_location_id,
1213: p_user_id => l_owner_id);
1214: ELSE
1215: -- spawn party site del
1216: IF l_sr_rec.incident_location_id IS NOT NULL THEN

Line 1405: csm_hz_locations_event_pkg.delete_location(p_location_id => l_sr_rec.incident_location_id,

1401: IF l_sr_rec.incident_location_type = 'HZ_LOCATION' THEN --R12 Assest
1402: --Delete old location
1403: IF p_old_incident_location_id IS NOT NULL THEN
1404:
1405: csm_hz_locations_event_pkg.delete_location(p_location_id => l_sr_rec.incident_location_id,
1406: p_user_id => r_csm_task_assg_rec.user_id);
1407: END IF;
1408:
1409: IF l_sr_rec.incident_location_id IS NOT NULL THEN

Line 1411: csm_hz_locations_event_pkg.insert_location(p_location_id => l_sr_rec.incident_location_id,

1407: END IF;
1408:
1409: IF l_sr_rec.incident_location_id IS NOT NULL THEN
1410: -- insert new location
1411: csm_hz_locations_event_pkg.insert_location(p_location_id => l_sr_rec.incident_location_id,
1412: p_user_id => r_csm_task_assg_rec.user_id);
1413: END IF;
1414:
1415: ELSE