DBA Data[Home] [Help]

APPS.GL_BUDGET_TRANSFER_PKG dependencies on GL_BC_PACKETS

Line 47: -- from gl_bc_packets. Otherwise, get the balance from

43: balance NUMBER := 0;
44: BEGIN
45:
46: -- If budgetary control is enabled, get the balance
47: -- from gl_bc_packets. Otherwise, get the balance from
48: -- gl_interface.
49: IF (xbc_enabled_flag = 'Y') THEN
50: balance := get_bc_balance(balance_type,
51: xledger_id,

Line 113: gl_bc_packets pkt

109: CURSOR get_balance IS
110: SELECT sum( nvl(pkt.entered_dr,0)
111: - nvl(pkt.entered_cr,0))
112: FROM gl_period_statuses per, gl_bc_packet_arrival_order ao,
113: gl_bc_packets pkt
114: WHERE per.application_id = 101
115: AND per.ledger_id = xledger_id
116: AND per.period_name = xperiod_name
117: AND ao.ledger_id = per.ledger_id