DBA Data[Home] [Help]

APPS.IGS_FI_DEPOSITS_PRCSS dependencies on STANDARD

Line 565: -- Call to update the holds and standard balance (CASE 1 and 2)

561: x_gl_date => TRUNC(p_d_gl_date),
562: x_gl_posted_date => NULL,
563: x_posting_id => NULL
564: );
565: -- Call to update the holds and standard balance (CASE 1 and 2)
566: -- only if the l_b_upd_bal flag is TRUE
567: IF l_b_upd_bal THEN
568: -- Update the holds and standard balance accordingly with the reversed amount
569: -- Balance date is updated to sysdate

Line 568: -- Update the holds and standard balance accordingly with the reversed amount

564: );
565: -- Call to update the holds and standard balance (CASE 1 and 2)
566: -- only if the l_b_upd_bal flag is TRUE
567: IF l_b_upd_bal THEN
568: -- Update the holds and standard balance accordingly with the reversed amount
569: -- Balance date is updated to sysdate
570:
571: -- Update balances of balance type 'STANDARD'
572: igs_fi_prc_balances.update_balances ( p_party_id => l_cur_fi_credits.party_id,

Line 571: -- Update balances of balance type 'STANDARD'

567: IF l_b_upd_bal THEN
568: -- Update the holds and standard balance accordingly with the reversed amount
569: -- Balance date is updated to sysdate
570:
571: -- Update balances of balance type 'STANDARD'
572: igs_fi_prc_balances.update_balances ( p_party_id => l_cur_fi_credits.party_id,
573: p_balance_type => 'STANDARD',
574: p_balance_date => TRUNC(SYSDATE),
575: p_amount => ABS(NVL(l_cur_fi_credits.amount,0)), --Amount always passed as +ve

Line 573: p_balance_type => 'STANDARD',

569: -- Balance date is updated to sysdate
570:
571: -- Update balances of balance type 'STANDARD'
572: igs_fi_prc_balances.update_balances ( p_party_id => l_cur_fi_credits.party_id,
573: p_balance_type => 'STANDARD',
574: p_balance_date => TRUNC(SYSDATE),
575: p_amount => ABS(NVL(l_cur_fi_credits.amount,0)), --Amount always passed as +ve
576: p_source => 'CREDIT',
577: p_source_id => p_n_credit_id,

Line 1084: -- Call update balances to update holds and standard balances

1080: x_posting_id => NULL
1081: );
1082:
1083:
1084: -- Call update balances to update holds and standard balances
1085: -- Update balances of balance type 'STANDARD'
1086: igs_fi_prc_balances.update_balances ( p_party_id => l_cur_fi_credits.party_id,
1087: p_balance_type => 'STANDARD',
1088: p_balance_date => TRUNC(SYSDATE),

Line 1085: -- Update balances of balance type 'STANDARD'

1081: );
1082:
1083:
1084: -- Call update balances to update holds and standard balances
1085: -- Update balances of balance type 'STANDARD'
1086: igs_fi_prc_balances.update_balances ( p_party_id => l_cur_fi_credits.party_id,
1087: p_balance_type => 'STANDARD',
1088: p_balance_date => TRUNC(SYSDATE),
1089: p_amount => NVL((-1)*l_cur_fi_credits.amount,0), --Amount always passed as -ve

Line 1087: p_balance_type => 'STANDARD',

1083:
1084: -- Call update balances to update holds and standard balances
1085: -- Update balances of balance type 'STANDARD'
1086: igs_fi_prc_balances.update_balances ( p_party_id => l_cur_fi_credits.party_id,
1087: p_balance_type => 'STANDARD',
1088: p_balance_date => TRUNC(SYSDATE),
1089: p_amount => NVL((-1)*l_cur_fi_credits.amount,0), --Amount always passed as -ve
1090: p_source => 'CREDIT',
1091: p_source_id => l_n_credit_id,