Categories
- All Categories
- Oracle Analytics Learning Hub
- 30 Oracle Analytics Sharing Center
- 20 Oracle Analytics Lounge
- 248 Oracle Analytics News
- 45 Oracle Analytics Videos
- 16.1K Oracle Analytics Forums
- 6.3K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 91 Oracle Analytics Trainings
- 16 Oracle Analytics and AI Challenge
- Find Partners
- For Partners
SQL query to get Budgetary control Transactions in oracle fusion financials
Answers
-
Hi @User_MHPVE,
XCC_BALANCES Stores budget balances including consumption and available funds.
XCC_BUDGET_DIST_ACCTS Contains distribution account details for budget entries.
XCC_CONTROL_BUDGETS Holds control budget definitions.
XCC_BUDGET_TRANSACTIONS Captures individual budgetary control transactions.SELECT
bt.TRANSACTION_NUMBER,
bt.TRANSACTION_DATE,
bt.TRANSACTION_AMOUNT,
bt.TRANSACTION_CURRENCY,
bt.FUNDS_ACTION,
bt.LINE_STATUS,
bt.LINE_RESULT,
bt.CONTROL_BUDGET,
bt.BUDGET_ACCOUNT,
bt.RESERVED_BUDGET_AMOUNT,
bt.TOTAL_CONSUMPTION_BALANCE,
bt.FUNDS_AVAILABLE_BALANCE
FROM
XCC_BUDGET_TRANSACTIONS bt
WHERE
bt.TRANSACTION_DATE >= TRUNC(SYSDATE) - 30
ORDER BY
bt.TRANSACTION_DATE DESC;Check this for more details:
Using Financials for the Public Sector
Thanks,
Riyaz Ali0 -
Hi @
XCC_BUDGET_TRANSACTIONS not exists in fusion, is there any other table available to get po details
0 -
Have you looked at following tables
Budget transactions header → XLA_AE_HEADERS
Budget transactions lines → XLA_AE_LINES
Control budgets → XLA_CONTROL_BUDGETS
Hope it helps!
0

