DBA Data[Home] [Help]

APPS.OZF_UTILITY_PVT dependencies on MO_UTILS

Line 2482: x_org_id := NVL(mo_global.get_current_org_id, mo_utils.get_default_org_id);

2478: --Bugfix - 7555174 : Modified x_org_id check
2479: --Start (Bug-7555174)
2480: /*
2481: IF x_org_id IS NULL THEN
2482: x_org_id := NVL(mo_global.get_current_org_id, mo_utils.get_default_org_id);
2483: END IF;
2484: */
2485:
2486: IF x_org_id IS NULL AND p_object_type = 'OFFR' THEN

Line 2506: x_org_id := NVL(mo_global.get_current_org_id, mo_utils.get_default_org_id);

2502: , x_return_status => x_return_status);
2503: END IF;
2504:
2505: IF x_org_id IS NULL AND p_object_type <> 'OFFR' THEN
2506: x_org_id := NVL(mo_global.get_current_org_id, mo_utils.get_default_org_id);
2507: END IF;
2508: --End (Bug-7555174)
2509:
2510: IF x_org_id IS NOT NULL AND

Line 2512: MO_UTILS.Get_Ledger_Info (

2508: --End (Bug-7555174)
2509:
2510: IF x_org_id IS NOT NULL AND
2511: x_ledger_id IS NULL THEN
2512: MO_UTILS.Get_Ledger_Info (
2513: p_operating_unit => x_org_id,
2514: p_ledger_id => x_ledger_id,
2515: p_ledger_name => l_ledger_name
2516: );