DBA Data[Home] [Help]

APPS.INL_SHIPMENT_PVT dependencies on INL_LANDEDCOST_PVT

Line 1228: l_debug_info := 'If necessary, it converts the qty (INL_landedcost_pvt.Converted_Qty).';

1224: p_procedure_name => l_proc_name,
1225: p_var_name => 'p_primary_uom_code',
1226: p_var_value => p_primary_uom_code) ;
1227:
1228: l_debug_info := 'If necessary, it converts the qty (INL_landedcost_pvt.Converted_Qty).';
1229: INL_LOGGING_PVT.Log_Statement ( p_module_name => g_module_name,
1230: p_procedure_name => l_proc_name,
1231: p_debug_info => l_debug_info ) ;
1232:

Line 1235: x_available_quantity := INL_LANDEDCOST_PVT.converted_qty ( p_organization_id => p_inv_org_id,

1231: p_debug_info => l_debug_info ) ;
1232:
1233: -- Convert to Primary Qty when Unit of Measure is different
1234: IF x_uom_code <> p_primary_uom_code THEN
1235: x_available_quantity := INL_LANDEDCOST_PVT.converted_qty ( p_organization_id => p_inv_org_id,
1236: p_inventory_item_id => p_inventory_item_id,
1237: p_qty => x_available_quantity,
1238: p_from_uom_code => x_uom_code,
1239: p_to_uom_code => p_primary_uom_code);

Line 1241: x_tolerable_quantity := INL_LANDEDCOST_PVT.converted_qty ( p_organization_id => p_inv_org_id,

1237: p_qty => x_available_quantity,
1238: p_from_uom_code => x_uom_code,
1239: p_to_uom_code => p_primary_uom_code);
1240:
1241: x_tolerable_quantity := INL_LANDEDCOST_PVT.converted_qty ( p_organization_id => p_inv_org_id,
1242: p_inventory_item_id => p_inventory_item_id,
1243: p_qty => x_tolerable_quantity,
1244: p_from_uom_code => x_uom_code,
1245: p_to_uom_code => p_primary_uom_code);

Line 1536: l_po_qty := INL_LANDEDCOST_PVT.Converted_Qty(

1532:
1533: IF p_primary_uom_code <> l_po_UOM_code THEN --BUG: 7670307
1534: l_amount := l_po_converted_price * l_po_qty;
1535:
1536: l_po_qty := INL_LANDEDCOST_PVT.Converted_Qty(
1537: p_organization_id => p_organization_id,
1538: p_inventory_item_id => l_inventory_item_id,
1539: p_qty => l_po_qty,
1540: p_from_uom_code => l_po_UOM_code,

Line 3188: inl_landedcost_pvt.Converted_Amt ( mat.matched_amt,

3184: mat.match_id ,
3185: DECODE (pc_to_currency_code,
3186: mat.matched_curr_code,
3187: mat.matched_amt,
3188: inl_landedcost_pvt.Converted_Amt ( mat.matched_amt,
3189: mat.matched_curr_code,
3190: pc_to_currency_code,
3191: pc_to_curr_conversion_type,
3192: pc_to_curr_conversion_date)) matched_amt

Line 3429: l_net_rcv_txn_qty := INL_LANDEDCOST_PVT.Converted_Qty (p_organization_id => l_inv_org_id,

3425: p_var_name => l_debug_info,
3426: p_var_value => l_net_rcv_txn_qty);
3427:
3428: -- Bug #7849658
3429: l_net_rcv_txn_qty := INL_LANDEDCOST_PVT.Converted_Qty (p_organization_id => l_inv_org_id,
3430: p_inventory_item_id => l_sl_inv_item_id,
3431: p_qty => l_net_rcv_txn_qty,
3432: p_from_uom_code => l_rt_uom_code,
3433: p_to_uom_code => l_txn_uom_code);

Line 3444: l_shipl_unit_price := inl_landedcost_pvt.Converted_Amt ( l_ori_unit_price,

3440:
3441: -- Bug #7702294
3442:
3443: IF l_current_curr_conv_type IS NOT NULL THEN
3444: l_shipl_unit_price := inl_landedcost_pvt.Converted_Amt ( l_ori_unit_price,
3445: l_ship_line_curr_code,
3446: l_current_curr_code,
3447: l_current_curr_conv_type,
3448: l_current_curr_conv_date,

Line 3549: l_primary_qty := INL_LANDEDCOST_PVT.Converted_Qty (

3545: l_primary_unit_price := l_final_price;
3546: ELSE
3547: l_final_qty := l_matched_qty;
3548: -- Getting Primary Quantity and Primary Unit Price
3549: l_primary_qty := INL_LANDEDCOST_PVT.Converted_Qty (
3550: p_organization_id => l_inv_org_id,
3551: p_inventory_item_id => l_sl_inv_item_id,
3552: p_qty => l_final_qty,
3553: p_from_uom_code => l_matched_uom_code,

Line 3631: l_primary_qty := INL_LANDEDCOST_PVT.Converted_Qty (

3627: l_matched_uom_code := l_txn_uom_code; --BUG#7674121
3628: END IF;
3629: -- Verifying if UOM conversion are required
3630: IF l_primary_uom_code <> l_matched_uom_code THEN --BUG#7674121
3631: l_primary_qty := INL_LANDEDCOST_PVT.Converted_Qty (
3632: p_organization_id => l_inv_org_id,
3633: p_inventory_item_id => l_sl_inv_item_id,
3634: p_qty => l_final_qty,
3635: p_from_uom_code => l_matched_uom_code,

Line 6102: p_call_api_name => 'INL_LANDEDCOST_PVT.Converted_Qty',

6098: ) ;
6099:
6100: inl_logging_pvt.Log_APICallIn (p_module_name => g_module_name,
6101: p_procedure_name => l_api_name,
6102: p_call_api_name => 'INL_LANDEDCOST_PVT.Converted_Qty',
6103: p_in_param_name1 => 'p_organization_id',
6104: p_in_param_value1 => p_organization_id,
6105: p_in_param_name2 => 'p_inventory_item_id',
6106: p_in_param_value2 => p_inventory_item_id,

Line 6123: x_1ary_qty := INL_LANDEDCOST_PVT.Converted_Qty (p_organization_id => p_organization_id,

6119: p_in_param_name9 => NULL,
6120: p_in_param_value9 => NULL,
6121: p_in_param_name10 => NULL,
6122: p_in_param_value10 => NULL) ;
6123: x_1ary_qty := INL_LANDEDCOST_PVT.Converted_Qty (p_organization_id => p_organization_id,
6124: p_inventory_item_id => p_inventory_item_id,
6125: p_qty => p_qty,
6126: p_from_uom_code => p_uom_code,
6127: P_to_uom_code => x_1ary_uom_code) ;

Line 6145: p_call_api_name => 'INL_LANDEDCOST_PVT.Converted_Qty',

6141: ) ;
6142:
6143: inl_logging_pvt.Log_APICallIn (p_module_name => g_module_name,
6144: p_procedure_name => l_api_name,
6145: p_call_api_name => 'INL_LANDEDCOST_PVT.Converted_Qty',
6146: p_in_param_name1 => 'p_organization_id',
6147: p_in_param_value1 => p_organization_id,
6148: p_in_param_name2 => 'p_inventory_item_id',
6149: p_in_param_value2 => p_inventory_item_id,

Line 6166: x_2ary_qty := INL_LANDEDCOST_PVT.Converted_Qty (p_organization_id => p_organization_id,

6162: p_in_param_name9 => NULL,
6163: p_in_param_value9 => NULL,
6164: p_in_param_name10 => NULL,
6165: p_in_param_value10 => NULL) ;
6166: x_2ary_qty := INL_LANDEDCOST_PVT.Converted_Qty (p_organization_id => p_organization_id,
6167: p_inventory_item_id => p_inventory_item_id,
6168: p_qty => p_qty,
6169: p_from_uom_code => p_uom_code,
6170: P_to_uom_code => x_2ary_uom_code) ;

Line 6461: l_debug_info := 'Run INL_LANDEDCOST_PVT.Run_Calculation';

6457: ----------------------------------------------------------------------
6458:
6459: -- Run Landed Cost Calculation
6460: IF p_task_code >= '50' AND NVL (l_msg_count_validate, 0) = 0 THEN
6461: l_debug_info := 'Run INL_LANDEDCOST_PVT.Run_Calculation';
6462: INL_LOGGING_PVT.Log_Statement (
6463: p_module_name => g_module_name,
6464: p_procedure_name => l_api_name,
6465: p_debug_info => l_debug_info

Line 6469: INL_LANDEDCOST_PVT.Run_Calculation (p_api_version => 1.0,

6465: p_debug_info => l_debug_info
6466: ) ;
6467:
6468:
6469: INL_LANDEDCOST_PVT.Run_Calculation (p_api_version => 1.0,
6470: p_init_msg_list => FND_API.G_FALSE,
6471: p_commit => FND_API.G_FALSE,
6472: p_validation_level => FND_API.G_VALID_LEVEL_FULL,
6473: p_ship_header_id => p_ship_header_id,