DBA Data[Home] [Help]

APPS.IGI_IGIIAOPE_XMLP_PKG dependencies on FA_DISTRIBUTION_HISTORY

Line 81: FA_DISTRIBUTION_HISTORY DH,

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

Line 162: FA_DISTRIBUTION_HISTORY DH,

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

Line 213: FA_DISTRIBUTION_HISTORY DH,

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

Line 302: FA_DISTRIBUTION_HISTORY DH,

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

Line 346: FA_DISTRIBUTION_HISTORY DH,

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

Line 404: FA_DISTRIBUTION_HISTORY DH,

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

Line 472: FA_DISTRIBUTION_HISTORY DH,

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

Line 568: FA_DISTRIBUTION_HISTORY DH,

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

Line 655: FA_DISTRIBUTION_HISTORY DH,

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

Line 777: FA_DISTRIBUTION_HISTORY DH,

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

Line 856: fa_distribution_history dh,

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

Line 923: FA_DISTRIBUTION_HISTORY DH,

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

Line 976: l_distribution_ccid fa_distribution_history.code_combination_id%TYPE;

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

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

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

Line 1097: cp_asset_id fa_distribution_history.asset_id%TYPE,

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

Line 1098: cp_distribution_id fa_distribution_history.distribution_id%TYPE) IS

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

Line 1100: FROM fa_distribution_history

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