DBA Data[Home] [Help]

APPS.PJI_UTILS dependencies on PJI_SYSTEM_SETTINGS

Line 5: g_pji_settings pji_system_settings%rowtype;

1: PACKAGE BODY PJI_UTILS AS
2: /* $Header: PJIUT01B.pls 120.19.12020000.2 2012/07/18 10:57:44 admarath ship $ */
3:
4: -- Global variables -----------------------------------
5: g_pji_settings pji_system_settings%rowtype;
6: g_settings_init_flag boolean := FALSE;
7: g_pji_enabled varchar2(1);
8: g_apps_schema varchar2(30);
9: g_pa_schema varchar2(30);

Line 1861: FROM PJI_SYSTEM_SETTINGS;

1857: l_planamt_alloc_method,
1858: l_curr_rep_pa_period,
1859: l_curr_rep_gl_period,
1860: l_curr_rep_ent_period
1861: FROM PJI_SYSTEM_SETTINGS;
1862:
1863: --- IF Periods are specific then getting the specific values
1864: /* If l_curr_rep_pa_period = 'SPECIFIC' or l_curr_rep_gl_period = 'SPECIFIC'
1865: or l_curr_rep_ent_period = 'SPECIFIC' then 5207578 */

Line 2202: from pji_system_settings;

2198: begin
2199:
2200: select *
2201: into g_pji_settings
2202: from pji_system_settings;
2203:
2204: g_settings_init_flag := TRUE;
2205:
2206: end init_settings_cache;