DBA Data[Home] [Help]

APPS.IGI_IGIIABLD_XMLP_PKG dependencies on FA_DISTRIBUTION_HISTORY

Line 98: FA_DISTRIBUTION_HISTORY DH,

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

Line 179: FA_DISTRIBUTION_HISTORY DH,

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

Line 230: FA_DISTRIBUTION_HISTORY DH,

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

Line 319: FA_DISTRIBUTION_HISTORY DH,

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

Line 363: FA_DISTRIBUTION_HISTORY DH,

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

Line 421: FA_DISTRIBUTION_HISTORY DH,

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

Line 489: FA_DISTRIBUTION_HISTORY DH,

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

Line 585: FA_DISTRIBUTION_HISTORY DH,

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

Line 672: FA_DISTRIBUTION_HISTORY DH,

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

Line 794: FA_DISTRIBUTION_HISTORY DH,

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

Line 873: fa_distribution_history dh,

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

Line 940: FA_DISTRIBUTION_HISTORY DH,

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

Line 993: l_distribution_ccid fa_distribution_history.code_combination_id%TYPE;

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

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

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

Line 1114: cp_asset_id fa_distribution_history.asset_id%TYPE,

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

Line 1115: cp_distribution_id fa_distribution_history.distribution_id%TYPE) IS

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

Line 1117: FROM fa_distribution_history

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