DBA Data[Home] [Help]

APPS.GL_LEDGERS_PKG dependencies on GL_SUSPENSE_ACCOUNTS_PKG

Line 612: gl_suspense_accounts_pkg.insert_ledger_suspense

608:
609: IF ( (x_suspense_allowed_flag = 'Y')
610: AND (x_suspense_ccid_temp IS NOT NULL)) THEN
611: -- bug fix 2826511
612: gl_suspense_accounts_pkg.insert_ledger_suspense
613: (x_ledger_id,
614: x_suspense_ccid_temp,
615: x_last_update_date,
616: x_last_updated_by);

Line 1632: -- IF ( NOT gl_suspense_accounts_pkg.is_ledger_suspense_exist(v_alc.ledger_id)

1628:
1629: -- Check each ALC ledger of this ledger and if it doesn't have existing
1630: -- suspense account, default it same as source's
1631: FOR v_alc IN c_alc_ledgers LOOP
1632: -- IF ( NOT gl_suspense_accounts_pkg.is_ledger_suspense_exist(v_alc.ledger_id)
1633: -- AND x_suspense_ccid_temp IS NOT NULL) THEN
1634: gl_ledgers_pkg.led_update_other_tables(v_alc.target_ledger_id,
1635: x_last_update_date,
1636: x_last_updated_by,

Line 1638: -- gl_suspense_accounts_pkg.insert_ledger_suspense

1634: gl_ledgers_pkg.led_update_other_tables(v_alc.target_ledger_id,
1635: x_last_update_date,
1636: x_last_updated_by,
1637: x_suspense_ccid_temp);
1638: -- gl_suspense_accounts_pkg.insert_ledger_suspense
1639: -- (v_alc.target_ledger_id,
1640: -- x_suspense_ccid_temp,
1641: -- x_last_update_date,
1642: -- x_last_updated_by);

Line 1643: -- END IF; -- IF (NOT gl_suspense_accounts_pkg.is_ledger_suspense...

1639: -- (v_alc.target_ledger_id,
1640: -- x_suspense_ccid_temp,
1641: -- x_last_update_date,
1642: -- x_last_updated_by);
1643: -- END IF; -- IF (NOT gl_suspense_accounts_pkg.is_ledger_suspense...
1644: END LOOP; -- FOR v_alc IN c_alc_ledgers
1645: -- END IF;
1646:
1647: x_msg_count := fnd_msg_pub.count_msg;

Line 2134: gl_suspense_accounts_pkg.insert_ledger_suspense(x_ledger_id,

2130:
2131: -- Insert rows into gl_suspense_accounts table for the
2132: -- corresponding new created ledger.
2133: IF (x_suspense_ccid IS NOT NULL) THEN
2134: gl_suspense_accounts_pkg.insert_ledger_suspense(x_ledger_id,
2135: x_suspense_ccid,
2136: x_last_update_date,
2137: x_last_updated_by);
2138: END IF;

Line 2669: FOUND := gl_suspense_accounts_pkg.is_ledger_suspense_exist(x_ledger_id);

2665: -- Update the existing rows in gl_suspense_accounts table for
2666: -- the corresponding ledger. If they are not exist create
2667: -- the new default suspense accounts into gl_suspense_accounts
2668: -- for the corresponding ledger.
2669: FOUND := gl_suspense_accounts_pkg.is_ledger_suspense_exist(x_ledger_id);
2670:
2671: IF (FOUND) THEN
2672: -- Update rows in gl_suspense_accounts table for the
2673: -- corresponding ledger.

Line 2677: gl_suspense_accounts_pkg.update_ledger_suspense(x_ledger_id,

2673: -- corresponding ledger.
2674: -- This statement is executed no matter X_suspense_CCID
2675: -- is NULL or not, since the function checks for NULL and
2676: -- delete the appropriate lines when CCID is NULL.
2677: gl_suspense_accounts_pkg.update_ledger_suspense(x_ledger_id,
2678: x_suspense_ccid,
2679: x_last_update_date,
2680: x_last_updated_by);
2681: ELSE

Line 2685: gl_suspense_accounts_pkg.insert_ledger_suspense

2681: ELSE
2682: -- Create rows in gl_suspense_accounts table for the
2683: -- corresponding new created ledger.
2684: IF (x_suspense_ccid IS NOT NULL) THEN
2685: gl_suspense_accounts_pkg.insert_ledger_suspense
2686: (x_ledger_id,
2687: x_suspense_ccid,
2688: x_last_update_date,
2689: x_last_updated_by);