DBA Data[Home] [Help]

APPS.GL_FUNDS_AVAILABLE_PKG dependencies on GL_SUMMARY_TEMPLATES

Line 310: FROM gl_summary_templates st

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

Line 576: FROM gl_summary_templates st

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

Line 681: FROM gl_summary_templates

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