DBA Data[Home] [Help]

APPS.GL_FUNDS_AVAILABLE_PKG dependencies on GL_SUMMARY_TEMPLATES

Line 311: FROM gl_summary_templates st

307: where ledger_id = x_ledger_id);
308:
309: CURSOR c_account_category IS
310: SELECT st.account_category_code
311: FROM gl_summary_templates st
312: WHERE st.template_id = x_template_id
313: AND st.ledger_id = x_ledger_id;
314:
315: budget_1 NUMBER;

Line 577: FROM gl_summary_templates st

573:
574:
575: CURSOR c_account_category IS
576: SELECT st.account_category_code
577: FROM gl_summary_templates st
578: WHERE st.template_id = x_template_id
579: AND st.ledger_id = x_ledger_id;
580:
581: budget_1 NUMBER;

Line 682: FROM gl_summary_templates

678: WHERE ledger_id = cp_ledger_id;
679:
680: CURSOR c_get_template_info (cp_ledger_id NUMBER, cp_template_id NUMBER) IS
681: SELECT amount_type, funding_budget_version_id
682: FROM gl_summary_templates
683: WHERE ledger_id = cp_ledger_id
684: AND template_id = cp_template_id;
685:
686: l_amt_type VARCHAR2(30);