DBA Data[Home] [Help]

APPS.JAI_OM_UTILS_PKG dependencies on FND_FILE

Line 258: fnd_file.put_line(fnd_file.log, 'v_address_id -> '||v_address_id);

254: CLOSE address_cur;
255:
256:
257: IF v_debug = 'Y' THEN
258: fnd_file.put_line(fnd_file.log, 'v_address_id -> '||v_address_id);
259: END IF;
260:
261:
262: ----------------------------------------------------------------------------------------------------------

Line 303: fnd_file.put_line(fnd_file.log,' Inside IF OF v_assessable_value IS NULL ');

299:
300: IF v_assessable_value IS NULL THEN
301:
302: IF v_debug = 'Y' THEN
303: fnd_file.put_line(fnd_file.log,' Inside IF OF v_assessable_value IS NULL ');
304: END IF;
305:
306: -- Fetch Assessable Price List Value for the
307: -- given Customer and NULL LOCATION Combination

Line 315: fnd_file.put_line(fnd_file.log, '2 v_assessable_value -> '||v_assessable_value||', v_price_list_uom_code -> '||v_price_list_uom_code);

311:
312: END IF;
313:
314: IF v_debug = 'Y' THEN
315: fnd_file.put_line(fnd_file.log, '2 v_assessable_value -> '||v_assessable_value||', v_price_list_uom_code -> '||v_price_list_uom_code);
316: END IF;
317:
318: /********************************************* Part 4 ****************************************/
319:

Line 406: fnd_file.put_line(fnd_file.log,' BEFORE Calling Inv_Convert.inv_um_conversion 1');

402: -- If still the Assessable Value is available
403: IF v_price_list_uom_code IS NOT NULL THEN
404:
405: IF v_debug = 'Y' THEN
406: fnd_file.put_line(fnd_file.log,' BEFORE Calling Inv_Convert.inv_um_conversion 1');
407: END IF;
408:
409: Inv_Convert.inv_um_conversion ( v_uom_code, v_price_list_uom_code, v_inventory_item_id, v_conversion_rate );
410: IF NVL(v_conversion_rate, 0) <= 0 THEN

Line 413: fnd_file.put_line(fnd_file.log,' BEFORE Calling Inv_Convert.inv_um_conversion 2');

409: Inv_Convert.inv_um_conversion ( v_uom_code, v_price_list_uom_code, v_inventory_item_id, v_conversion_rate );
410: IF NVL(v_conversion_rate, 0) <= 0 THEN
411:
412: IF v_debug = 'Y' THEN
413: fnd_file.put_line(fnd_file.log,' BEFORE Calling Inv_Convert.inv_um_conversion 2');
414: END IF;
415:
416: Inv_Convert.inv_um_conversion(v_uom_code, v_price_list_uom_code, 0, v_conversion_rate);
417: IF NVL(v_conversion_rate, 0) <= 0 THEN

Line 432: fnd_file.put_line(fnd_file.log,' inside ELSE OF v_assessable_value IS NULL ');

428:
429: ELSE
430:
431: IF v_debug = 'Y' THEN
432: fnd_file.put_line(fnd_file.log,' inside ELSE OF v_assessable_value IS NULL ');
433: END IF;
434:
435: -- If the assessable value is not available
436: -- then pick up the Line price for Tax Calculation

Line 445: fnd_file.put_line(fnd_file.log,' No Assessable value is defined, so default price is returning back ');

441: */
442:
443: IF nvl(v_assessable_value,0) =0 THEN
444: IF v_debug = 'Y' THEN
445: fnd_file.put_line(fnd_file.log,' No Assessable value is defined, so default price is returning back ');
446: END IF;
447:
448: v_assessable_value := NVL(p_default_price, 0);
449: END IF;