DBA Data[Home] [Help]

APPS.WSH_PICKING_BATCHES_GRP dependencies on WSH_SHIP_FROM_ORGS_V

Line 184: select location_id from wsh_ship_from_orgs_v

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

Line 188: select organization_id from wsh_ship_from_orgs_v

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