DBA Data[Home] [Help]

APPS.PSB_BUDGET_ACCOUNT_PVT dependencies on GL_CODE_COMBINATIONS

Line 391: FROM gl_code_combinations )

387: SET maintain_status = 'C' ,
388: last_maintained_date = g_current_date ,
389: max_code_combination_id =
390: ( SELECT max(code_combination_id)
391: FROM gl_code_combinations )
392: WHERE account_position_set_id = p_account_set_id;
393: --
394: RETURN (TRUE);
395:

Line 416: -- This Private function finds active segments in gl_code_combinations table

412: /*===========================================================================+
413: | FUNCTION Get_Active_Segments (Private) |
414: +===========================================================================*/
415: --
416: -- This Private function finds active segments in gl_code_combinations table
417: -- and stores those in a global table g_active_segments_tab.
418: --
419:
420: FUNCTION Get_Active_Segments( p_chart_of_accounts_id IN NUMBER )

Line 552: l_sql_tmp := ' FROM gl_code_combinations glcc,' ||

548: ' ( SELECT code_combination_id';
549:
550: END IF;
551: --
552: l_sql_tmp := ' FROM gl_code_combinations glcc,' ||
553: ' psb_account_position_set_lines apsl' ||
554: ' WHERE glcc.code_combination_id >' ||
555: ' :max_code_combination_id' ||
556: ' AND glcc.chart_of_accounts_id = :chart_of_accounts_id' ||