DBA Data[Home] [Help]

APPS.GL_LEDGERS_PKG dependencies on GL_SUSPENSE_ACCOUNTS_PKG

Line 609: gl_suspense_accounts_pkg.insert_ledger_suspense

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

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

1621:
1622: -- Check each ALC ledger of this ledger and if it doesn't have existing
1623: -- suspense account, default it same as source's
1624: FOR v_alc IN c_alc_ledgers LOOP
1625: -- IF ( NOT gl_suspense_accounts_pkg.is_ledger_suspense_exist(v_alc.ledger_id)
1626: -- AND x_suspense_ccid_temp IS NOT NULL) THEN
1627: gl_ledgers_pkg.led_update_other_tables(v_alc.target_ledger_id,
1628: x_last_update_date,
1629: x_last_updated_by,

Line 1631: -- gl_suspense_accounts_pkg.insert_ledger_suspense

1627: gl_ledgers_pkg.led_update_other_tables(v_alc.target_ledger_id,
1628: x_last_update_date,
1629: x_last_updated_by,
1630: x_suspense_ccid_temp);
1631: -- gl_suspense_accounts_pkg.insert_ledger_suspense
1632: -- (v_alc.target_ledger_id,
1633: -- x_suspense_ccid_temp,
1634: -- x_last_update_date,
1635: -- x_last_updated_by);

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

1632: -- (v_alc.target_ledger_id,
1633: -- x_suspense_ccid_temp,
1634: -- x_last_update_date,
1635: -- x_last_updated_by);
1636: -- END IF; -- IF (NOT gl_suspense_accounts_pkg.is_ledger_suspense...
1637: END LOOP; -- FOR v_alc IN c_alc_ledgers
1638: -- END IF;
1639:
1640: x_msg_count := fnd_msg_pub.count_msg;

Line 2125: gl_suspense_accounts_pkg.insert_ledger_suspense(x_ledger_id,

2121:
2122: -- Insert rows into gl_suspense_accounts table for the
2123: -- corresponding new created ledger.
2124: IF (x_suspense_ccid IS NOT NULL) THEN
2125: gl_suspense_accounts_pkg.insert_ledger_suspense(x_ledger_id,
2126: x_suspense_ccid,
2127: x_last_update_date,
2128: x_last_updated_by);
2129: END IF;

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

2656: -- Update the existing rows in gl_suspense_accounts table for
2657: -- the corresponding ledger. If they are not exist create
2658: -- the new default suspense accounts into gl_suspense_accounts
2659: -- for the corresponding ledger.
2660: FOUND := gl_suspense_accounts_pkg.is_ledger_suspense_exist(x_ledger_id);
2661:
2662: IF (FOUND) THEN
2663: -- Update rows in gl_suspense_accounts table for the
2664: -- corresponding ledger.

Line 2668: gl_suspense_accounts_pkg.update_ledger_suspense(x_ledger_id,

2664: -- corresponding ledger.
2665: -- This statement is executed no matter X_suspense_CCID
2666: -- is NULL or not, since the function checks for NULL and
2667: -- delete the appropriate lines when CCID is NULL.
2668: gl_suspense_accounts_pkg.update_ledger_suspense(x_ledger_id,
2669: x_suspense_ccid,
2670: x_last_update_date,
2671: x_last_updated_by);
2672: ELSE

Line 2676: gl_suspense_accounts_pkg.insert_ledger_suspense

2672: ELSE
2673: -- Create rows in gl_suspense_accounts table for the
2674: -- corresponding new created ledger.
2675: IF (x_suspense_ccid IS NOT NULL) THEN
2676: gl_suspense_accounts_pkg.insert_ledger_suspense
2677: (x_ledger_id,
2678: x_suspense_ccid,
2679: x_last_update_date,
2680: x_last_updated_by);