DBA Data[Home] [Help]

APPS.IGI_IGIIACST_XMLP_PKG dependencies on FA_DISTRIBUTION_HISTORY

Line 100: FA_DISTRIBUTION_HISTORY DH,

96: AJ.Adjustment_Amount),
97: 'FA',
98: 1
99: FROM
100: FA_DISTRIBUTION_HISTORY DH,
101: FA_TRANSACTION_HEADERS TH,
102: FA_ASSET_HISTORY AH,
103: FA_ADJUSTMENTS AJ
104:

Line 181: FA_DISTRIBUTION_HISTORY DH,

177: AJ.Amount),
178: 'IAC',
179: 2
180: FROM
181: FA_DISTRIBUTION_HISTORY DH,
182: IGI_IAC_TRANSACTION_HEADERS TH,
183: IGI_IAC_ADJUSTMENTS AJ
184: WHERE
185: DH.Book_Type_Code = p_Distribution_Source_Book AND

Line 232: FA_DISTRIBUTION_HISTORY DH,

228: AJ.Amount),
229: 'IAC',
230: 2
231: FROM
232: FA_DISTRIBUTION_HISTORY DH,
233: IGI_IAC_TRANSACTION_HEADERS TH,
234: IGI_IAC_ADJUSTMENTS AJ
235: WHERE
236: DH.Book_Type_Code = p_Distribution_Source_Book AND

Line 321: FA_DISTRIBUTION_HISTORY DH,

317: SUM (DECODE (AJ.Dr_Cr_Flag, l_Balance_Type, 1, -1) * AJ.Amount),
318: l_data_source,
319: l_display_order
320: FROM
321: FA_DISTRIBUTION_HISTORY DH,
322: IGI_IAC_TRANSACTION_HEADERS TH,
323: IGI_IAC_ADJUSTMENTS AJ
324: WHERE
325: DH.Book_Type_Code = p_Distribution_Source_Book AND

Line 365: FA_DISTRIBUTION_HISTORY DH,

361: SUM (DECODE (AJ.Dr_Cr_Flag, l_Balance_Type, 1, -1) * AJ.Amount),
362: l_data_source,
363: l_display_order
364: FROM
365: FA_DISTRIBUTION_HISTORY DH,
366: IGI_IAC_TRANSACTION_HEADERS TH,
367: IGI_IAC_ADJUSTMENTS AJ,
368: IGI_IAC_ADJUSTMENTS SUB_AJ
369: WHERE

Line 423: FA_DISTRIBUTION_HISTORY DH,

419: SUM (DECODE (AJ.Dr_Cr_Flag, l_Balance_Type, 1, -1) * AJ.Amount),
420: l_data_source,
421: l_display_order
422: FROM
423: FA_DISTRIBUTION_HISTORY DH,
424: IGI_IAC_TRANSACTION_HEADERS TH,
425: IGI_IAC_ADJUSTMENTS AJ
426: WHERE
427: DH.Book_Type_Code = p_Distribution_Source_Book AND

Line 491: FA_DISTRIBUTION_HISTORY DH,

487: sum(DD.DEPRN_RESERVE),
488: 'FA',
489: 1
490: FROM
491: FA_DISTRIBUTION_HISTORY DH,
492: FA_CATEGORY_BOOKS CB,
493: FA_ASSET_HISTORY AH,
494: FA_DEPRN_DETAIL DD
495: WHERE

Line 587: FA_DISTRIBUTION_HISTORY DH,

583: 'REVAL RESERVE', DD.Reval_Reserve),
584: 'FA',
585: 1
586: FROM
587: FA_DISTRIBUTION_HISTORY DH,
588: FA_DEPRN_DETAIL DD,
589: FA_ASSET_HISTORY AH,
590: FA_CATEGORY_BOOKS CB,
591: FA_BOOKS BK

Line 674: FA_DISTRIBUTION_HISTORY DH,

670: 'REVAL RESERVE', DD.Reval_Reserve_Net),
671: 'IAC',
672: 2
673: FROM
674: FA_DISTRIBUTION_HISTORY DH,
675: IGI_IAC_DET_BALANCES DD,
676: FA_ASSET_HISTORY AH,
677: FA_CATEGORY_BOOKS CB,
678: IGI_IAC_CATEGORY_BOOKS ICB,

Line 796: FA_DISTRIBUTION_HISTORY DH,

792: 'BACKLOG',3,
793: 'GENERAL FUND',2,
794: 'NET',4) )
795: FROM
796: FA_DISTRIBUTION_HISTORY DH,
797: IGI_IAC_DET_BALANCES DD,
798: FA_ASSET_HISTORY AH,
799: FA_CATEGORY_BOOKS CB,
800: IGI_IAC_CATEGORY_BOOKS ICB,

Line 875: fa_distribution_history dh,

871: 'BACKLOG',2,
872: 'NET',3)
873: FROM
874: igi_iac_det_balances db,
875: fa_distribution_history dh,
876: fa_asset_history ah,
877: igi_iac_category_books icb
878: WHERE
879: dh.book_type_code = p_book AND

Line 942: FA_DISTRIBUTION_HISTORY DH,

938: 'FA',
939: 1
940: FROM
941: FA_CATEGORY_BOOKS CB,
942: FA_DISTRIBUTION_HISTORY DH,
943: FA_ASSET_HISTORY AH,
944: FA_DEPRN_DETAIL DD,
945: FA_DEPRN_PERIODS DP
946: WHERE

Line 995: l_distribution_ccid fa_distribution_history.code_combination_id%TYPE;

991: p_report_type varchar2,
992: p_balance_type varchar2)
993: IS
994: l_prev_adjustment_id igi_iac_transaction_headers.adjustment_id%TYPE;
995: l_distribution_ccid fa_distribution_history.code_combination_id%TYPE;
996:
997: /* Cursor for fetching all retirement, reinstatement transactions */
998: CURSOR c_get_transactions(cp_book fa_books.book_type_code%TYPE) IS
999: SELECT *

Line 1115: CURSOR c_get_dist_ccid( cp_book fa_distribution_history.book_type_code%TYPE,

1111: WHERE book_type_code = cp_book
1112: AND category_id = cp_category_id;
1113:
1114: /* Cursor to fetch the distribution ccid for a distribution */
1115: CURSOR c_get_dist_ccid( cp_book fa_distribution_history.book_type_code%TYPE,
1116: cp_asset_id fa_distribution_history.asset_id%TYPE,
1117: cp_distribution_id fa_distribution_history.distribution_id%TYPE) IS
1118: SELECT code_combination_id
1119: FROM fa_distribution_history

Line 1116: cp_asset_id fa_distribution_history.asset_id%TYPE,

1112: AND category_id = cp_category_id;
1113:
1114: /* Cursor to fetch the distribution ccid for a distribution */
1115: CURSOR c_get_dist_ccid( cp_book fa_distribution_history.book_type_code%TYPE,
1116: cp_asset_id fa_distribution_history.asset_id%TYPE,
1117: cp_distribution_id fa_distribution_history.distribution_id%TYPE) IS
1118: SELECT code_combination_id
1119: FROM fa_distribution_history
1120: WHERE book_type_code = cp_book

Line 1117: cp_distribution_id fa_distribution_history.distribution_id%TYPE) IS

1113:
1114: /* Cursor to fetch the distribution ccid for a distribution */
1115: CURSOR c_get_dist_ccid( cp_book fa_distribution_history.book_type_code%TYPE,
1116: cp_asset_id fa_distribution_history.asset_id%TYPE,
1117: cp_distribution_id fa_distribution_history.distribution_id%TYPE) IS
1118: SELECT code_combination_id
1119: FROM fa_distribution_history
1120: WHERE book_type_code = cp_book
1121: AND asset_id = cp_asset_id

Line 1119: FROM fa_distribution_history

1115: CURSOR c_get_dist_ccid( cp_book fa_distribution_history.book_type_code%TYPE,
1116: cp_asset_id fa_distribution_history.asset_id%TYPE,
1117: cp_distribution_id fa_distribution_history.distribution_id%TYPE) IS
1118: SELECT code_combination_id
1119: FROM fa_distribution_history
1120: WHERE book_type_code = cp_book
1121: AND asset_id = cp_asset_id
1122: AND distribution_id = cp_distribution_id;
1123: