DBA Data[Home] [Help]

APPS.WSH_PICKING_BATCHES_GRP dependencies on WSH_SHIP_FROM_ORGS_V

Line 182: select location_id from wsh_ship_from_orgs_v

178: AND rownum = 1;
179:
180: -- Bug 3438300 - Start
181: cursor c_location_id (p_org_id VARCHAR2) IS
182: select location_id from wsh_ship_from_orgs_v
183: where organization_id = p_org_id;
184:
185: cursor c_org_id (p_location_id NUMBER) IS
186: select organization_id from wsh_ship_from_orgs_v

Line 186: select organization_id from wsh_ship_from_orgs_v

182: select location_id from wsh_ship_from_orgs_v
183: where organization_id = p_org_id;
184:
185: cursor c_org_id (p_location_id NUMBER) IS
186: select organization_id from wsh_ship_from_orgs_v
187: where location_id = p_location_id;
188:
189: -- Bug# 3438300 - End
190: