DBA Data[Home] [Help]

APPS.GMD_SAMPLES_PUB dependencies on GMD_CUSTOMER_SPEC_VRS

Line 110: select spec_vr_id, sample_inv_trans_ind from gmd_customer_spec_vrs

106: FROM (select spec_vr_id, sample_inv_trans_ind from gmd_inventory_spec_vrs
107: union all
108: select spec_vr_id, sample_inv_trans_ind from gmd_wip_spec_vrs
109: union all
110: select spec_vr_id, sample_inv_trans_ind from gmd_customer_spec_vrs
111: union all
112: select spec_vr_id, sample_inv_trans_ind from gmd_supplier_spec_vrs
113: union all
114: select spec_vr_id, NULL sample_inv_trans_ind from gmd_monitoring_spec_vrs

Line 125: FROM gmd_customer_spec_vrs

121: FROM gmd_inventory_spec_vrs
122: WHERE spec_vr_id = p_spec_vr_id ;
123: ELSIF p_spec_type = 'C' THEN
124: SELECT SAMPLE_INV_TRANS_IND INTO l_sample_inv_trans_ind
125: FROM gmd_customer_spec_vrs
126: WHERE spec_vr_id = p_spec_vr_id ;
127: ELSIF p_spec_type = 'W' THEN
128: SELECT SAMPLE_INV_TRANS_IND INTO l_sample_inv_trans_ind
129: FROM gmd_wip_spec_vrs

Line 228: select spec_vr_id, sampling_plan_id from gmd_customer_spec_vrs

224: (select spec_vr_id, sampling_plan_id from gmd_inventory_spec_vrs
225: union all
226: select spec_vr_id, sampling_plan_id from gmd_wip_spec_vrs
227: union all
228: select spec_vr_id, sampling_plan_id from gmd_customer_spec_vrs
229: union all
230: select spec_vr_id, sampling_plan_id from gmd_supplier_spec_vrs
231: union all
232: select spec_vr_id, sampling_plan_id from gmd_monitoring_spec_vrs

Line 269: select spec_vr_id, LOT_OPTIONAL_ON_SAMPLE from gmd_customer_spec_vrs

265: (select spec_vr_id, LOT_OPTIONAL_ON_SAMPLE from gmd_inventory_spec_vrs
266: union all
267: select spec_vr_id, LOT_OPTIONAL_ON_SAMPLE from gmd_wip_spec_vrs
268: union all
269: select spec_vr_id, LOT_OPTIONAL_ON_SAMPLE from gmd_customer_spec_vrs
270: union all
271: select spec_vr_id, LOT_OPTIONAL_ON_SAMPLE from gmd_supplier_spec_vrs
272: )
273: WHERE spec_vr_id = p_spec_vr_id;