DBA Data[Home] [Help]

APPS.GL_FLEX_INSERT_PKG dependencies on GL_CONCURRENCY_CONTROL

Line 261: /* GL_CONCURRENCY_CONTROL */

257: /* GL_BUDGET_ASSIGNMENTS */
258: /* GL_SUMMARY_TEMPLATES */
259: /* GL_DYNAMIC_SUMM_COMBINATIONS */
260: /* GL_ROLLUP_GROUP_SCORES */
261: /* GL_CONCURRENCY_CONTROL */
262: /* GL_ACCOUNT_HIERARCHIES */
263: /* */
264: /* AOL Tables which are being used include : */
265: /* */

Line 2821: 'gl_concurrency_control'

2817:
2818: cursor lockst(dyn_grp_id NUMBER) is
2819: select 'Obtain Row Share Lock on the ' ||
2820: 'corresponding record of this template in ' ||
2821: 'gl_concurrency_control'
2822: from gl_concurrency_control ct
2823: where ct.concurrency_class = 'INSERT_SUMMARY_ACCOUNTS'
2824: and ct.concurrency_entity_name = 'SUMMARY_TEMPLATE'
2825: and exists (

Line 2822: from gl_concurrency_control ct

2818: cursor lockst(dyn_grp_id NUMBER) is
2819: select 'Obtain Row Share Lock on the ' ||
2820: 'corresponding record of this template in ' ||
2821: 'gl_concurrency_control'
2822: from gl_concurrency_control ct
2823: where ct.concurrency_class = 'INSERT_SUMMARY_ACCOUNTS'
2824: and ct.concurrency_entity_name = 'SUMMARY_TEMPLATE'
2825: and exists (
2826: select 1

Line 2856: psa_utils.debug_other_string(g_state_level,l_full_path,' LOCKING gl_concurrency_control ');

2852:
2853: close lockst;
2854:
2855: -- ========================= FND LOG ===========================
2856: psa_utils.debug_other_string(g_state_level,l_full_path,' LOCKING gl_concurrency_control ');
2857: psa_utils.debug_other_string(g_state_level,l_full_path,' RETURN -> TRUE ');
2858: -- ========================= FND LOG ===========================
2859:
2860: return(TRUE);

Line 2887: message_token('TABLE', 'GL_CONCURRENCY_CONTROL');

2883: if lockst%ISOPEN then
2884: close lockst;
2885: end if;
2886:
2887: message_token('TABLE', 'GL_CONCURRENCY_CONTROL');
2888: add_message('FND', 'FORM-CANNOT LOCK');
2889:
2890: -- ========================= FND LOG ===========================
2891: psa_utils.debug_other_string(g_state_level,l_full_path,' EXCEPTION OTHERS - glflst ');