DBA Data[Home] [Help]

APPS.ARP_STANDARD dependencies on MO_GLOBAL

Line 2688: ar_mo_global_cache.set_current_org_id(p_org_id);

2684: else it will get the default org_id based on mo_utils.get_default_ou output
2685: --------------------------------------------------------------------------------- */
2686:
2687: IF p_org_id is NOT NULL then
2688: ar_mo_global_cache.set_current_org_id(p_org_id);
2689: ELSE
2690: mo_utils.get_default_ou(l_default_org_id,l_default_ou_name,l_count);
2691: IF l_default_org_id is null then
2692: begin

Line 2703: l_gr := ar_mo_global_cache.get_org_attributes(nvl(p_org_id,l_default_org_id));

2699: Get the cached attribute info for the org you pass p_org_id to INIT_STANDARD into
2700: Local Variable l_gr
2701: --------------------------------------------------------------------------------- */
2702:
2703: l_gr := ar_mo_global_cache.get_org_attributes(nvl(p_org_id,l_default_org_id));
2704:
2705: /* --------------------------------------------------------------------------------
2706: Begin populate all attribute of global variable, sysparm of ar_system_parameters%rowtype
2707: from Local Variable, l_gr, retieved from cache for the passed org

Line 3021: ar_mo_global_cache.populate;

3017:
3018: /* --------------------------------------------------------------------------------------------
3019: Calling Procedure INIT_STANDARD in initialization section
3020: -------------------------------------------------------------------------------------------- */
3021: ar_mo_global_cache.populate;
3022: /*Bug 4624926 API failing in R12-Starts*/
3023: IF mo_global.get_current_org_id is null then
3024: ARP_STANDARD.INIT_STANDARD;
3025: ELSE

Line 3023: IF mo_global.get_current_org_id is null then

3019: Calling Procedure INIT_STANDARD in initialization section
3020: -------------------------------------------------------------------------------------------- */
3021: ar_mo_global_cache.populate;
3022: /*Bug 4624926 API failing in R12-Starts*/
3023: IF mo_global.get_current_org_id is null then
3024: ARP_STANDARD.INIT_STANDARD;
3025: ELSE
3026: ARP_STANDARD.INIT_STANDARD(mo_global.get_current_org_id);
3027: END IF;

Line 3026: ARP_STANDARD.INIT_STANDARD(mo_global.get_current_org_id);

3022: /*Bug 4624926 API failing in R12-Starts*/
3023: IF mo_global.get_current_org_id is null then
3024: ARP_STANDARD.INIT_STANDARD;
3025: ELSE
3026: ARP_STANDARD.INIT_STANDARD(mo_global.get_current_org_id);
3027: END IF;
3028: /* Bug 4624926 API failing in R12-Ends*/
3029:
3030: /* Multi-Org Access Control Changes for SSA;Begin;anukumar;11/01/2002*/