DBA Data[Home] [Help]

APPS.FA_GCCID_PKG dependencies on FA_DISTRIBUTION_ACCOUNTS

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

297: value =>h_flex_num,
298: p_log_level_rec => p_log_level_rec);
299: end if;
300:
301: -- call get_ccid to check if ccid exists in fa_distribution_accounts
302: -- G_check_dist_accts will be true when called from form transactions
303: -- and false when called from fafbgcc_proc. When called from fafbgcc_proc
304: -- not necessary to check fa_distribution_accounts again since get_ccid
305: -- is already called in fafbgcc_proc

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

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

Line 404: -- fa_distribution_accounts

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

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

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

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

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

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

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

Line 694: FROM FA_DISTRIBUTION_ACCOUNTS da,

690: nvl(REVAL_RSV_ACCOUNT_CCID, -1),
691: nvl(BONUS_EXP_ACCOUNT_CCID, -1),
692: nvl(BONUS_RSV_ACCOUNT_CCID, -1),
693: accounting_flex_structure
694: FROM FA_DISTRIBUTION_ACCOUNTS da,
695: FA_BOOK_CONTROLS bc
696: WHERE bc.book_type_code = X_book_type_code
697: AND da.book_type_code = bc.book_type_code
698: AND da.distribution_id = X_distribution_id;