DBA Data[Home] [Help]

APPS.IGI_IGIIACSD_XMLP_PKG dependencies on FA_DISTRIBUTION_HISTORY

Line 79: FA_DISTRIBUTION_HISTORY DH,

75: AJ.Adjustment_Amount),
76: 'FA',
77: 1
78: FROM
79: FA_DISTRIBUTION_HISTORY DH,
80: FA_TRANSACTION_HEADERS TH,
81: FA_ASSET_HISTORY AH,
82: FA_ADJUSTMENTS AJ
83:

Line 160: FA_DISTRIBUTION_HISTORY DH,

156: AJ.Amount),
157: 'IAC',
158: 2
159: FROM
160: FA_DISTRIBUTION_HISTORY DH,
161: IGI_IAC_TRANSACTION_HEADERS TH,
162: IGI_IAC_ADJUSTMENTS AJ
163: WHERE
164: DH.Book_Type_Code = p_Distribution_Source_Book AND

Line 211: FA_DISTRIBUTION_HISTORY DH,

207: AJ.Amount),
208: 'IAC',
209: 2
210: FROM
211: FA_DISTRIBUTION_HISTORY DH,
212: IGI_IAC_TRANSACTION_HEADERS TH,
213: IGI_IAC_ADJUSTMENTS AJ
214: WHERE
215: DH.Book_Type_Code = p_Distribution_Source_Book AND

Line 300: FA_DISTRIBUTION_HISTORY DH,

296: SUM (DECODE (AJ.Dr_Cr_Flag, l_Balance_Type, 1, -1) * AJ.Amount),
297: l_data_source,
298: l_display_order
299: FROM
300: FA_DISTRIBUTION_HISTORY DH,
301: IGI_IAC_TRANSACTION_HEADERS TH,
302: IGI_IAC_ADJUSTMENTS AJ
303: WHERE
304: DH.Book_Type_Code = p_Distribution_Source_Book AND

Line 344: FA_DISTRIBUTION_HISTORY DH,

340: SUM (DECODE (AJ.Dr_Cr_Flag, l_Balance_Type, 1, -1) * AJ.Amount),
341: l_data_source,
342: l_display_order
343: FROM
344: FA_DISTRIBUTION_HISTORY DH,
345: IGI_IAC_TRANSACTION_HEADERS TH,
346: IGI_IAC_ADJUSTMENTS AJ,
347: IGI_IAC_ADJUSTMENTS SUB_AJ
348: WHERE

Line 402: FA_DISTRIBUTION_HISTORY DH,

398: SUM (DECODE (AJ.Dr_Cr_Flag, l_Balance_Type, 1, -1) * AJ.Amount),
399: l_data_source,
400: l_display_order
401: FROM
402: FA_DISTRIBUTION_HISTORY DH,
403: IGI_IAC_TRANSACTION_HEADERS TH,
404: IGI_IAC_ADJUSTMENTS AJ
405: WHERE
406: DH.Book_Type_Code = p_Distribution_Source_Book AND

Line 470: FA_DISTRIBUTION_HISTORY DH,

466: sum(DD.DEPRN_RESERVE),
467: 'FA',
468: 1
469: FROM
470: FA_DISTRIBUTION_HISTORY DH,
471: FA_CATEGORY_BOOKS CB,
472: FA_ASSET_HISTORY AH,
473: FA_DEPRN_DETAIL DD
474: WHERE

Line 566: FA_DISTRIBUTION_HISTORY DH,

562: 'REVAL RESERVE', DD.Reval_Reserve),
563: 'FA',
564: 1
565: FROM
566: FA_DISTRIBUTION_HISTORY DH,
567: FA_DEPRN_DETAIL DD,
568: FA_ASSET_HISTORY AH,
569: FA_CATEGORY_BOOKS CB,
570: FA_BOOKS BK

Line 653: FA_DISTRIBUTION_HISTORY DH,

649: 'REVAL RESERVE', DD.Reval_Reserve_Net),
650: 'IAC',
651: 2
652: FROM
653: FA_DISTRIBUTION_HISTORY DH,
654: IGI_IAC_DET_BALANCES DD,
655: FA_ASSET_HISTORY AH,
656: FA_CATEGORY_BOOKS CB,
657: IGI_IAC_CATEGORY_BOOKS ICB,

Line 775: FA_DISTRIBUTION_HISTORY DH,

771: 'BACKLOG',3,
772: 'GENERAL FUND',2,
773: 'NET',4) )
774: FROM
775: FA_DISTRIBUTION_HISTORY DH,
776: IGI_IAC_DET_BALANCES DD,
777: FA_ASSET_HISTORY AH,
778: FA_CATEGORY_BOOKS CB,
779: IGI_IAC_CATEGORY_BOOKS ICB,

Line 854: fa_distribution_history dh,

850: 'BACKLOG',2,
851: 'NET',3)
852: FROM
853: igi_iac_det_balances db,
854: fa_distribution_history dh,
855: fa_asset_history ah,
856: igi_iac_category_books icb
857: WHERE
858: dh.book_type_code = p_book AND

Line 921: FA_DISTRIBUTION_HISTORY DH,

917: 'FA',
918: 1
919: FROM
920: FA_CATEGORY_BOOKS CB,
921: FA_DISTRIBUTION_HISTORY DH,
922: FA_ASSET_HISTORY AH,
923: FA_DEPRN_DETAIL DD,
924: FA_DEPRN_PERIODS DP
925: WHERE

Line 974: l_distribution_ccid fa_distribution_history.code_combination_id%TYPE;

970: p_report_type varchar2,
971: p_balance_type varchar2)
972: IS
973: l_prev_adjustment_id igi_iac_transaction_headers.adjustment_id%TYPE;
974: l_distribution_ccid fa_distribution_history.code_combination_id%TYPE;
975:
976: /* Cursor for fetching all retirement, reinstatement transactions */
977: CURSOR c_get_transactions(cp_book fa_books.book_type_code%TYPE) IS
978: SELECT *

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

1090: WHERE book_type_code = cp_book
1091: AND category_id = cp_category_id;
1092:
1093: /* Cursor to fetch the distribution ccid for a distribution */
1094: CURSOR c_get_dist_ccid( cp_book fa_distribution_history.book_type_code%TYPE,
1095: cp_asset_id fa_distribution_history.asset_id%TYPE,
1096: cp_distribution_id fa_distribution_history.distribution_id%TYPE) IS
1097: SELECT code_combination_id
1098: FROM fa_distribution_history

Line 1095: cp_asset_id fa_distribution_history.asset_id%TYPE,

1091: AND category_id = cp_category_id;
1092:
1093: /* Cursor to fetch the distribution ccid for a distribution */
1094: CURSOR c_get_dist_ccid( cp_book fa_distribution_history.book_type_code%TYPE,
1095: cp_asset_id fa_distribution_history.asset_id%TYPE,
1096: cp_distribution_id fa_distribution_history.distribution_id%TYPE) IS
1097: SELECT code_combination_id
1098: FROM fa_distribution_history
1099: WHERE book_type_code = cp_book

Line 1096: cp_distribution_id fa_distribution_history.distribution_id%TYPE) IS

1092:
1093: /* Cursor to fetch the distribution ccid for a distribution */
1094: CURSOR c_get_dist_ccid( cp_book fa_distribution_history.book_type_code%TYPE,
1095: cp_asset_id fa_distribution_history.asset_id%TYPE,
1096: cp_distribution_id fa_distribution_history.distribution_id%TYPE) IS
1097: SELECT code_combination_id
1098: FROM fa_distribution_history
1099: WHERE book_type_code = cp_book
1100: AND asset_id = cp_asset_id

Line 1098: FROM fa_distribution_history

1094: CURSOR c_get_dist_ccid( cp_book fa_distribution_history.book_type_code%TYPE,
1095: cp_asset_id fa_distribution_history.asset_id%TYPE,
1096: cp_distribution_id fa_distribution_history.distribution_id%TYPE) IS
1097: SELECT code_combination_id
1098: FROM fa_distribution_history
1099: WHERE book_type_code = cp_book
1100: AND asset_id = cp_asset_id
1101: AND distribution_id = cp_distribution_id;
1102: