DBA Data[Home] [Help]

APPS.IGI_IGIIARSV_XMLP_PKG dependencies on FA_DISTRIBUTION_HISTORY

Line 95: FA_DISTRIBUTION_HISTORY DH,

91: AJ.Adjustment_Amount),
92: 'FA',
93: 1
94: FROM
95: FA_DISTRIBUTION_HISTORY DH,
96: FA_TRANSACTION_HEADERS TH,
97: FA_ASSET_HISTORY AH,
98: FA_ADJUSTMENTS AJ
99:

Line 176: FA_DISTRIBUTION_HISTORY DH,

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

Line 227: FA_DISTRIBUTION_HISTORY DH,

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

Line 316: FA_DISTRIBUTION_HISTORY DH,

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

Line 360: FA_DISTRIBUTION_HISTORY DH,

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

Line 418: FA_DISTRIBUTION_HISTORY DH,

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

Line 486: FA_DISTRIBUTION_HISTORY DH,

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

Line 582: FA_DISTRIBUTION_HISTORY DH,

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

Line 669: FA_DISTRIBUTION_HISTORY DH,

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

Line 791: FA_DISTRIBUTION_HISTORY DH,

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

Line 870: fa_distribution_history dh,

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

Line 937: FA_DISTRIBUTION_HISTORY DH,

933: 'FA',
934: 1
935: FROM
936: FA_CATEGORY_BOOKS CB,
937: FA_DISTRIBUTION_HISTORY DH,
938: FA_ASSET_HISTORY AH,
939: FA_DEPRN_DETAIL DD,
940: FA_DEPRN_PERIODS DP
941: WHERE

Line 990: l_distribution_ccid fa_distribution_history.code_combination_id%TYPE;

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

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

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

Line 1111: cp_asset_id fa_distribution_history.asset_id%TYPE,

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

Line 1112: cp_distribution_id fa_distribution_history.distribution_id%TYPE) IS

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

Line 1114: FROM fa_distribution_history

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