DBA Data[Home] [Help]

VIEW: APPS.GL_BUDGETS_REQUIRE_JOURNALS_V

Source

View Text - Preformatted

SELECT bv.budget_version_id BUDGET_VERSION_ID, bud.budget_name BUDGET_NAME, bud.ledger_id LEDGER_ID FROM gl_budgets bud, gl_budget_versions bv WHERE bud.budget_name = bv.budget_name AND bud.budget_type = bv.budget_type AND bud.status in ('O', 'C') AND bud.require_budget_journals_flag = 'Y'
View Text - HTML Formatted

SELECT BV.BUDGET_VERSION_ID BUDGET_VERSION_ID
, BUD.BUDGET_NAME BUDGET_NAME
, BUD.LEDGER_ID LEDGER_ID
FROM GL_BUDGETS BUD
, GL_BUDGET_VERSIONS BV
WHERE BUD.BUDGET_NAME = BV.BUDGET_NAME
AND BUD.BUDGET_TYPE = BV.BUDGET_TYPE
AND BUD.STATUS IN ('O'
, 'C')
AND BUD.REQUIRE_BUDGET_JOURNALS_FLAG = 'Y'