DBA Data[Home] [Help]

APPS.CSL_CS_INCIDENTS_ALL_ACC_PKG dependencies on CSL_CSI_ITEM_INSTANCES_ACC_PKG

Line 174: l_return := CSL_CSI_ITEM_INSTANCES_ACC_PKG.PRE_INSERT_CHILD(

170: -- ITEM INSTANCES
171: -- ER 3168446 - View ib at a location. Pass the Install Site Id
172: -- 11510 3430663. Pass incident_location_id and not install_site_id anymore
173: IF r_incident.CUSTOMER_PRODUCT_ID IS NOT NULL THEN
174: l_return := CSL_CSI_ITEM_INSTANCES_ACC_PKG.PRE_INSERT_CHILD(
175: p_instance_id => r_incident.CUSTOMER_PRODUCT_ID
176: , p_resource_id => p_resource_id
177: , p_flow_type => p_flow_type
178: , p_party_site_id => r_incident.incident_location_id);

Line 358: CSL_CSI_ITEM_INSTANCES_ACC_PKG.POST_DELETE_CHILD(

354: IF r_incident.CUSTOMER_PRODUCT_ID IS NOT NULL THEN
355: -- ER 3168446 - View ib at a location. Pass the Install Site Id
356: -- 11510 Changes 3430663. Use incident_location_id instead of
357: -- install_site_id
358: CSL_CSI_ITEM_INSTANCES_ACC_PKG.POST_DELETE_CHILD(
359: p_instance_id => r_incident.CUSTOMER_PRODUCT_ID
360: , p_resource_id => p_resource_id
361: , p_flow_type => p_flow_type
362: , p_party_site_id => r_incident.incident_location_id);

Line 852: CSL_CSI_ITEM_INSTANCES_ACC_PKG.POST_DELETE_CHILD(

848: /* First delete old customer product */
849: IF g_cached_rec.customer_product_id IS NOT NULL THEN
850: -- ER 3168446 - View ib at a location. Pass the Install Site Id
851: -- 11510 Changes 3430663. Pass incident_location_id now
852: CSL_CSI_ITEM_INSTANCES_ACC_PKG.POST_DELETE_CHILD(
853: g_cached_rec.customer_product_id
854: , l_tab_resource_id(i)
855: , p_party_site_id => r_incident.incident_location_id);
856: END IF;

Line 861: l_dummy := CSL_CSI_ITEM_INSTANCES_ACC_PKG.Pre_Insert_Child(

857: /* Then create the new customer product */
858: IF r_incident.customer_product_id IS NOT NULL THEN
859: -- ER 3168446 - View ib at a location. Pass the Install Site Id
860: -- 11510 Changes 3430663. Pass incident_location_id now
861: l_dummy := CSL_CSI_ITEM_INSTANCES_ACC_PKG.Pre_Insert_Child(
862: r_incident.customer_product_id
863: , l_tab_resource_id(i)
864: , p_party_site_id => r_incident.incident_location_id);
865: END IF;