Reversal of a journal batch for source Assets
Hello,
Considering there is no standard FA-GL reconciliation report, we have developed a custom report to
- calculate the FA SLA balances for the source Assets where the developer has used the following tables
XLA_AE_LINES
XLA_AE_HEADERS
FA_BOOK_CONTROLS
GL_LEDGERS
GL_PERIODS
GL_CODE_COMBINATIONS
2. calculate the GL balances posted from various standard as well as custom sources (Assets, Payables, Receivables, etc.)
SELECT gcc.SEGMENT1
,gcc.SEGMENT2
,gcc.CODE_COMBINATION_ID
,gcc.SEGMENT3
,gcc.SEGMENT4
,gcc.SEGMENT5
,gcc.SEGMENT6
,gcc.SEGMENT7
,gcc.SEGMENT8
,gcc.SEGMENT9
,gcc.SEGMENT10
,gcc.SEGMENT11
,gjh.JE_SOURCE
,(nvl(gjl.ACCOUNTED_DR, 0) - nvl(gjl.ACCOUNTED_CR, 0)) GL_BALANCE
0