DBA Data[Home] [Help]

APPS.CSI_UTL_PKG dependencies on STANDARD

Line 2294: FUNCTION check_standard_bom(

2290: RETURN l_config_exists;
2291:
2292: END wip_config_exists;
2293:
2294: FUNCTION check_standard_bom(
2295: p_order_line_rec IN csi_order_ship_pub.order_line_rec)
2296: RETURN BOOLEAN
2297: IS
2298:

Line 2310: api_log('check_standard_bom');

2306: no_explosion exception;
2307:
2308: BEGIN
2309:
2310: api_log('check_standard_bom');
2311:
2312: l_explode_flag := nvl(fnd_profile.value('CSI_EXPLODE_BOM'),'N');
2313: debug(' profile_explode_bom : '||l_explode_flag);
2314: debug(' inv_item_id : '||p_order_line_rec.inv_item_id);

Line 2323: debug(' bom item type in item master is not standard. no explosion');

2319: raise no_explosion;
2320: END IF;
2321:
2322: IF p_order_line_rec.bom_item_type <> 4 THEN
2323: debug(' bom item type in item master is not standard. no explosion');
2324: RAISE no_explosion;
2325: END IF;
2326:
2327:

Line 2389: debug(' check_standard_bom : TRUE');

2385: debug(' config item shipment. no explosion');
2386: RAISE no_explosion;
2387: END IF;
2388:
2389: debug(' check_standard_bom : TRUE');
2390: RETURN TRUE;
2391:
2392: EXCEPTION
2393: WHEN no_explosion THEN

Line 2394: debug(' check_standard_bom : FALSE');

2390: RETURN TRUE;
2391:
2392: EXCEPTION
2393: WHEN no_explosion THEN
2394: debug(' check_standard_bom : FALSE');
2395: RETURN FALSE;
2396: WHEN fnd_api.g_exc_error THEN
2397: RETURN FALSE;
2398: END check_standard_bom;

Line 2398: END check_standard_bom;

2394: debug(' check_standard_bom : FALSE');
2395: RETURN FALSE;
2396: WHEN fnd_api.g_exc_error THEN
2397: RETURN FALSE;
2398: END check_standard_bom;
2399:
2400: PROCEDURE get_parties_and_accounts(
2401: p_instance_id IN number,
2402: p_tld_rec IN csi_t_datastructures_grp.txn_line_detail_rec,