DBA Data[Home] [Help]

APPS.OKE_FUNDING_UTIL_PKG dependencies on OKE_POOL_PARTIES

Line 29: from oke_pool_parties

25: x_new_flag varchar2 ,
26: x_return_status OUT NOCOPY varchar2 ) is
27: cursor c_pool_party is
28: select amount, available_amount
29: from oke_pool_parties
30: where pool_party_id = x_pool_party_id;
31:
32: cursor c_source is
33: select amount

Line 121: from oke_pool_parties

117: x_return_status OUT NOCOPY varchar2 ) is
118:
119: cursor c_start_date is
120: select nvl(start_date_active, x_date)
121: from oke_pool_parties
122: where pool_party_id = x_pool_party_id;
123:
124: cursor c_end_date is
125: select nvl(end_date_active, x_date)

Line 126: from oke_pool_parties

122: where pool_party_id = x_pool_party_id;
123:
124: cursor c_end_date is
125: select nvl(end_date_active, x_date)
126: from oke_pool_parties
127: where pool_party_id = x_pool_party_id;
128:
129: compare_date date;
130:

Line 584: from oke_pool_parties

580: x_return_status OUT NOCOPY varchar2 ) is
581:
582: cursor c_record is
583: select amount, available_amount
584: from oke_pool_parties
585: where pool_party_id = x_pool_party_id;
586:
587: l_amount number;
588: l_available_amount number;