DBA Data[Home] [Help]

APPS.GMD_SAMPLES_PUB dependencies on GMD_CUSTOMER_SPEC_VRS

Line 103: select spec_vr_id, sample_inv_trans_ind from gmd_customer_spec_vrs

99: FROM (select spec_vr_id, sample_inv_trans_ind from gmd_inventory_spec_vrs
100: union all
101: select spec_vr_id, sample_inv_trans_ind from gmd_wip_spec_vrs
102: union all
103: select spec_vr_id, sample_inv_trans_ind from gmd_customer_spec_vrs
104: union all
105: select spec_vr_id, sample_inv_trans_ind from gmd_supplier_spec_vrs
106: union all
107: select spec_vr_id, NULL sample_inv_trans_ind from gmd_monitoring_spec_vrs

Line 118: FROM gmd_customer_spec_vrs

114: FROM gmd_inventory_spec_vrs
115: WHERE spec_vr_id = p_spec_vr_id ;
116: ELSIF p_spec_type = 'C' THEN
117: SELECT SAMPLE_INV_TRANS_IND INTO l_sample_inv_trans_ind
118: FROM gmd_customer_spec_vrs
119: WHERE spec_vr_id = p_spec_vr_id ;
120: ELSIF p_spec_type = 'W' THEN
121: SELECT SAMPLE_INV_TRANS_IND INTO l_sample_inv_trans_ind
122: FROM gmd_wip_spec_vrs

Line 218: select spec_vr_id, sampling_plan_id from gmd_customer_spec_vrs

214: (select spec_vr_id, sampling_plan_id from gmd_inventory_spec_vrs
215: union all
216: select spec_vr_id, sampling_plan_id from gmd_wip_spec_vrs
217: union all
218: select spec_vr_id, sampling_plan_id from gmd_customer_spec_vrs
219: union all
220: select spec_vr_id, sampling_plan_id from gmd_supplier_spec_vrs
221: union all
222: select spec_vr_id, sampling_plan_id from gmd_monitoring_spec_vrs

Line 259: select spec_vr_id, LOT_OPTIONAL_ON_SAMPLE from gmd_customer_spec_vrs

255: (select spec_vr_id, LOT_OPTIONAL_ON_SAMPLE from gmd_inventory_spec_vrs
256: union all
257: select spec_vr_id, LOT_OPTIONAL_ON_SAMPLE from gmd_wip_spec_vrs
258: union all
259: select spec_vr_id, LOT_OPTIONAL_ON_SAMPLE from gmd_customer_spec_vrs
260: union all
261: select spec_vr_id, LOT_OPTIONAL_ON_SAMPLE from gmd_supplier_spec_vrs
262: )
263: WHERE spec_vr_id = p_spec_vr_id;