DBA Data[Home] [Help]

APPS.CSD_LOGISTICS_PVT dependencies on CSD_PROCESS_UTIL

Line 293: l_Product_Txn_Rec.organization_id := csd_process_util.get_org_id(l_Product_Txn_Rec.incident_id);

289: CLOSE ProdTxn_Cur_Type;
290: debug('object version number fetched ['||l_Product_Txn_Rec.Object_Version_NUMBER||']');
291:
292: --bug#9503748
293: l_Product_Txn_Rec.organization_id := csd_process_util.get_org_id(l_Product_Txn_Rec.incident_id);
294: --bug#9503748
295:
296: -- Validate Product_Transaction_Id is null
297: CSD_PROCESS_UTIL.Check_Reqd_Param(p_param_value => p_Upd_ProdTxn_Rec.Product_Transaction_id,

Line 297: CSD_PROCESS_UTIL.Check_Reqd_Param(p_param_value => p_Upd_ProdTxn_Rec.Product_Transaction_id,

293: l_Product_Txn_Rec.organization_id := csd_process_util.get_org_id(l_Product_Txn_Rec.incident_id);
294: --bug#9503748
295:
296: -- Validate Product_Transaction_Id is null
297: CSD_PROCESS_UTIL.Check_Reqd_Param(p_param_value => p_Upd_ProdTxn_Rec.Product_Transaction_id,
298: p_param_name => 'Product Transaction ID',
299: p_api_name => C_API_Name);
300:
301: debug('Validating the prod txn id');

Line 304: (CSD_PROCESS_UTIL.Validate_prod_txn_id(p_prod_txn_id => p_Upd_ProdTxn_Rec.Product_Transaction_id))

300:
301: debug('Validating the prod txn id');
302: -- Validate the Product_Transaction_Id exists in csd_product_transactions
303: IF NOT
304: (CSD_PROCESS_UTIL.Validate_prod_txn_id(p_prod_txn_id => p_Upd_ProdTxn_Rec.Product_Transaction_id))
305: THEN
306: RAISE FND_API.G_EXC_ERROR;
307: END IF;
308: