DBA Data[Home] [Help]

APPS.JAI_OM_UTILS_PKG dependencies on INV_CONVERT

Line 227: Then Inv_convert.Inv_um_conversion is called and the UOM rate is calculated and is included

223: 2. Assessable Value is picked up for the Customer Id, Null Site, UOM Code, Assessable value date
224:
225: 3. Assessable Value and Primary UOM is picked up for the Customer Id, Address Id, inventory_item_id, Assessable value date
226: for the Primary UOM defined in Price List.
227: Then Inv_convert.Inv_um_conversion is called and the UOM rate is calculated and is included
228: as the product of the Assessable value.
229: 4. Assessable Value is picked up for the Customer Id, Address Id, inventory_item_id, Assessable value date
230: on a first come first serve basis.
231: 5. If all the above are not found then the initial logic of picking up the Assessable value is followed (Unit selling price)

Line 232: and then inv_convert.inv_um_conversion is called and the UOM rate is calculated and is included

228: as the product of the Assessable value.
229: 4. Assessable Value is picked up for the Customer Id, Address Id, inventory_item_id, Assessable value date
230: on a first come first serve basis.
231: 5. If all the above are not found then the initial logic of picking up the Assessable value is followed (Unit selling price)
232: and then inv_convert.inv_um_conversion is called and the UOM rate is calculated and is included
233: as the product of the Assessable value.
234:
235: Dependency Due to this Bug:-
236: None

Line 271: Then Inv_convert.Inv_um_conversion is called and the UOM rate is calculated and is included

267: --2. Assessable Value is picked up for the Customer Id, Null Site, UOM Code, Assessable value date
268:
269: --3. Assessable Value and Primary UOM is picked up for the Customer Id, Address Id, inventory_item_id, Assessable value date
270: for the Primary UOM defined in Price List.
271: Then Inv_convert.Inv_um_conversion is called and the UOM rate is calculated and is included
272: as the product of the Assessable value.
273: --4. Assessable Value is picked up for the Customer Id, Address Id, inventory_item_id, Assessable value date
274: on a first come first serve basis.
275: --5. If all the above are not found then the initial logic of picking up the Assessable value is followed (Unit selling price)

Line 276: and then inv_convert.inv_um_conversion is called and the UOM rate is calculated and is included

272: as the product of the Assessable value.
273: --4. Assessable Value is picked up for the Customer Id, Address Id, inventory_item_id, Assessable value date
274: on a first come first serve basis.
275: --5. If all the above are not found then the initial logic of picking up the Assessable value is followed (Unit selling price)
276: and then inv_convert.inv_um_conversion is called and the UOM rate is calculated and is included
277: as the product of the Assessable value.
278: */
279: ----------------------------------------------------------------------------------------------------------
280:

Line 340: inv_convert.inv_um_conversion

336: close c_assessable_value_pri_uom;
337:
338: IF v_primary_uom_code is not null THEN
339:
340: inv_convert.inv_um_conversion
341: (
342: p_uom_code,
343: v_primary_uom_code,
344: p_inventory_item_id,

Line 350: Inv_Convert.inv_um_conversion( p_uom_code, v_primary_uom_code, 0, v_conversion_rate );

346: );
347:
348:
349: IF nvl(v_conversion_rate, 0) <= 0 THEN
350: Inv_Convert.inv_um_conversion( p_uom_code, v_primary_uom_code, 0, v_conversion_rate );
351: IF NVL(v_conversion_rate, 0) <= 0 THEN
352: v_conversion_rate := 0;
353: END IF;
354: END IF;

Line 375: inv_convert.inv_um_conversion

371: FETCH c_assessable_value_other_uom into v_assessable_value,v_other_uom_code;
372: CLOSE c_assessable_value_other_uom;
373:
374: IF v_other_uom_code is not null THEN
375: inv_convert.inv_um_conversion
376: (
377: p_uom_code,
378: v_other_uom_code,
379: p_inventory_item_id,

Line 385: Inv_Convert.inv_um_conversion( p_uom_code, v_primary_uom_code, 0, v_conversion_rate );

381: );
382:
383: IF nvl(v_conversion_rate, 0) <= 0 THEN
384:
385: Inv_Convert.inv_um_conversion( p_uom_code, v_primary_uom_code, 0, v_conversion_rate );
386:
387: IF NVL(v_conversion_rate, 0) <= 0 THEN
388: v_conversion_rate := 0;
389: END IF;

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 409: Inv_Convert.inv_um_conversion ( v_uom_code, v_price_list_uom_code, v_inventory_item_id, v_conversion_rate );

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
411:
412: IF v_debug = 'Y' THEN
413: fnd_file.put_line(fnd_file.log,' BEFORE Calling Inv_Convert.inv_um_conversion 2');

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 416: Inv_Convert.inv_um_conversion(v_uom_code, v_price_list_uom_code, 0, v_conversion_rate);

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
418: v_conversion_rate := 0;
419: END IF;
420: