DBA Data[Home] [Help]

APPS.JMF_SHIKYU_ONT_PVT dependencies on MO_GLOBAL

Line 76: --| mo_global.get_current_org_id returned NULL. |

72: --| 'MO: Operating Unit' profile option. |
73: --| 05/05/2006 rajkrish Fixed bug 5209846 : Modified |
74: --| Process_Replenishment_SO to get the Org ID |
75: --| from the Replenishment PO Shipment, if |
76: --| mo_global.get_current_org_id returned NULL. |
77: --| This is crucial for the Interlock Worker |
78: --| since it is not MOAC enabled (in order to |
79: --| support more then one OU). |
80: --| 05/08/2006 vchu Fixed bug 5212219: Get the project and task |

Line 409: l_org_id := mo_global.get_current_org_id;

405: -- Bug 5201694: Should set context to OU specified in the concurrent request,
406: -- not the OU specified in the 'MO: Operating Unit' profile option.
407:
408: --l_org_id := FND_PROFILE.VALUE('ORG_ID');
409: l_org_id := mo_global.get_current_org_id;
410:
411:
412: IF g_log_enabled AND
413: (FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL)

Line 418: ||': Org ID from mo_global.get_current_org_id = ' || l_org_id

414: THEN
415: FND_LOG.string(FND_LOG.LEVEL_PROCEDURE
416: , G_PKG_NAME
417: , '>> ' || l_program
418: ||': Org ID from mo_global.get_current_org_id = ' || l_org_id
419: );
420: END IF;
421:
422: -- Bug 5209846 : Get the Operating Unit (Org ID) from the Replenishment PO

Line 423: -- Shipment, if mo_global.get_current_org_id returned NULL. This is necessary

419: );
420: END IF;
421:
422: -- Bug 5209846 : Get the Operating Unit (Org ID) from the Replenishment PO
423: -- Shipment, if mo_global.get_current_org_id returned NULL. This is necessary
424: -- for the Interlock Worker since the Worker Concurrent Program is not MOAC
425: -- enabled (to support more then one OU).
426:
427: BEGIN

Line 449: MO_GLOBAL.set_policy_context('S', l_org_id);

445: END IF;
446:
447: END;
448:
449: MO_GLOBAL.set_policy_context('S', l_org_id);
450:
451: IF g_log_enabled AND
452: (FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL)
453: THEN