DBA Data[Home] [Help]

APPS.CONVERT_TEST dependencies on INV_SUB_CG_UTIL

Line 342: l_cost_group_id := inv_sub_cg_util.get_cg_from_sub(

338:
339: l_secondary_inventory := c1.secondary_inventory;
340:
341: if (l_secondary_inventory is not null) then
342: l_cost_group_id := inv_sub_cg_util.get_cg_from_sub(
343: x_return_status => l_return_status
344: , x_msg_count => l_msg_count
345: , x_msg_data => l_msg_data
346: , p_organization_id => l_organization_id

Line 355: l_cost_group_id := inv_sub_cg_util.get_cg_from_org(

351: set cost_group_id = l_cost_group_id
352: where rowid = l_rowid;
353: end if;
354: else
355: l_cost_group_id := inv_sub_cg_util.get_cg_from_org(
356: x_return_status => l_return_status
357: , x_msg_count => l_msg_count
358: , x_msg_data => l_msg_data
359: , p_organization_id => l_organization_id);

Line 933: l_cost_group_id := inv_sub_cg_util.get_cg_from_sub(

929: when NO_DATA_FOUND then
930: l_cost_group_id := 1;
931: end;
932: ELSE /* standard costing */
933: l_cost_group_id := inv_sub_cg_util.get_cg_from_sub(
934: x_return_status => l_return_status
935: , x_msg_count => l_msg_count
936: , x_msg_data => l_msg_data
937: , p_organization_id => l_organization_id

Line 965: l_cost_group_id := inv_sub_cg_util.get_cg_from_sub(

961: ELSE
962: l_cost_group_id := l_org_cost_group_id ;
963: END IF;
964: ELSE /* standard costing */
965: l_cost_group_id := inv_sub_cg_util.get_cg_from_sub(
966: x_return_status => l_return_status
967: , x_msg_count => l_msg_count
968: , x_msg_data => l_msg_data
969: , p_organization_id => l_organization_id

Line 1213: l_cost_group_id := inv_sub_cg_util.get_cg_from_sub(

1209: ** If cost group is null and is not a project transcation,
1210: ** stamp default cost group of subinventory
1211: */
1212: if (l_cost_group_id is null and l_project_id is null) then
1213: l_cost_group_id := inv_sub_cg_util.get_cg_from_sub(
1214: x_return_status => l_return_status
1215: , x_msg_count => l_msg_count
1216: , x_msg_data => l_msg_data
1217: , p_organization_id => l_organization_id

Line 1235: l_transfer_cost_group_id := inv_sub_cg_util.get_cg_from_sub(

1231: (l_transfer_cost_group_id is null) and
1232: (l_transfer_organization_id > 0) and
1233: (l_transfer_subinventory is not null) and
1234: (l_to_project_id is null) then
1235: l_transfer_cost_group_id := inv_sub_cg_util.get_cg_from_sub(
1236: x_return_status => l_return_status
1237: , x_msg_count => l_msg_count
1238: , x_msg_data => l_msg_data
1239: , p_organization_id => l_transfer_organization_id

Line 1291: l_ms_cost_group_id := inv_sub_cg_util.get_cg_from_sub(

1287: -- If orgs match use cost group of from sub
1288: -- Else use cost group of intransit owning org
1289: --
1290: if l_intransit_owning_org_id = l_organization_id then
1291: l_ms_cost_group_id := inv_sub_cg_util.get_cg_from_sub(
1292: x_return_status => l_return_status
1293: , x_msg_count => l_msg_count
1294: , x_msg_data => l_msg_data
1295: , p_organization_id => l_organization_id

Line 1298: l_ms_cost_group_id := inv_sub_cg_util.get_cg_from_org(

1294: , x_msg_data => l_msg_data
1295: , p_organization_id => l_organization_id
1296: , p_subinventory => l_subinventory_code);
1297: else
1298: l_ms_cost_group_id := inv_sub_cg_util.get_cg_from_org(
1299: x_return_status => l_return_status
1300: , x_msg_count => l_msg_count
1301: , x_msg_data => l_msg_data
1302: , p_organization_id => l_intransit_owning_org_id);