DBA Data[Home] [Help]

APPS.FA_GCCID_PKG dependencies on FA_DISTRIBUTION_ACCOUNTS

Line 305: -- call get_ccid to check if ccid exists in fa_distribution_accounts

301: element => 'flex num in fafbgcc is ',
302: value =>h_flex_num, p_log_level_rec => p_log_level_rec);
303: end if;
304:
305: -- call get_ccid to check if ccid exists in fa_distribution_accounts
306: -- G_check_dist_accts will be true when called from form transactions
307: -- and false when called from fafbgcc_proc. When called from fafbgcc_proc
308: -- not necessary to check fa_distribution_accounts again since get_ccid
309: -- is already called in fafbgcc_proc

Line 308: -- not necessary to check fa_distribution_accounts again since get_ccid

304:
305: -- call get_ccid to check if ccid exists in fa_distribution_accounts
306: -- G_check_dist_accts will be true when called from form transactions
307: -- and false when called from fafbgcc_proc. When called from fafbgcc_proc
308: -- not necessary to check fa_distribution_accounts again since get_ccid
309: -- is already called in fafbgcc_proc
310:
311: --- BEGIN USE CUSTOM GEN CCID
312: if not g_profile_init then

Line 405: -- fa_distribution_accounts

401: X_rtn_ccid, p_log_level_rec => p_log_level_rec);
402: end if;
403:
404: -- Call workflow to generate ccid only when ccid is not in
405: -- fa_distribution_accounts
406: if (not h_ccid_found OR X_rtn_ccid = -1) then
407: -- Bonus: BONUS_DEPRN_EXP_ACCT is not included in fa_distribution_accounts
408:
409: if (X_fn_trx_code = 'DEPRN_EXPENSE_ACCT') then

Line 407: -- Bonus: BONUS_DEPRN_EXP_ACCT is not included in fa_distribution_accounts

403:
404: -- Call workflow to generate ccid only when ccid is not in
405: -- fa_distribution_accounts
406: if (not h_ccid_found OR X_rtn_ccid = -1) then
407: -- Bonus: BONUS_DEPRN_EXP_ACCT is not included in fa_distribution_accounts
408:
409: if (X_fn_trx_code = 'DEPRN_EXPENSE_ACCT') then
410:
411: --fnd_profile.get('FA_GEN_EXPENSE_ACCOUNT', h_gen_expense);

Line 460: -- fa_distribution_accounts but it is not valid. Otherwise ccid

456: return FALSE;
457: end if;
458: else
459: -- not h_ccid_success is the case where ccid is found in
460: -- fa_distribution_accounts but it is not valid. Otherwise ccid
461: -- is valid.
462: if (not h_ccid_success) then
463: h_ret_value := FALSE;
464: else

Line 554: -- called again if ccid is not in fa_distribution_accounts

550: h_val_date := to_date(G_validation_date, 'DD/MM/RRRR'); --bug#5863965
551: end if;
552:
553: -- set G_check_dist_accts to FALSE so get_ccid does not get
554: -- called again if ccid is not in fa_distribution_accounts
555: -- and need to call fafbgcc to generate the ccid
556:
557: if not g_custom_gen_ccid then
558: G_check_dist_accts := FALSE;

Line 706: FROM FA_DISTRIBUTION_ACCOUNTS da,

702: nvl(CAPITAL_ADJ_ACCOUNT_CCID, -1), -- Bug 6666666 : SORP
703: nvl(GENERAL_FUND_ACCOUNT_CCID, -1), -- Bug 6666666 : SORP
704: nvl(REVAL_LOSS_ACCOUNT_CCID, -1),
705: accounting_flex_structure
706: FROM FA_DISTRIBUTION_ACCOUNTS da,
707: FA_BOOK_CONTROLS bc
708: WHERE bc.book_type_code = X_book_type_code
709: AND da.book_type_code = bc.book_type_code
710: AND da.distribution_id = X_distribution_id;