DBA Data[Home] [Help]

APPS.POS_PUB_HISTORY_BO_PKG dependencies on POS_SUPP_PUB_HISTORY

Line 117: FROM pos_supp_pub_history ph

113: ph.last_update_login,
114: ph.request_id)
115: BULK COLLECT
116: INTO l_pos_pub_history_bo_tbl
117: FROM pos_supp_pub_history ph
118: WHERE ph.publication_event_id = nvl(l_event_id, publication_event_id)
119: AND ph.party_id = nvl(l_party_id, party_id);
120:
121: --

Line 201: FROM pos_supp_pub_history

197: -- exists in the publication history
198: --
199: CURSOR c IS
200: SELECT 1
201: FROM pos_supp_pub_history
202: WHERE publication_event_id = p_event_id AND
203: party_id = p_party_id;
204:
205: dummy NUMBER;