DBA Data[Home] [Help]

APPS.GMD_SPEC_MATCH_MIG_GRP dependencies on GMD_RESULTS

Line 1303: FROM GMD_SAMPLES gs , GMD_RESULTS gr

1299: AND gst.optional_ind is NULL ;
1300:
1301: CURSOR cr_get_sample_for_lot IS
1302: SELECT gs.sample_id,gr.test_id,gr.result_value_num,gr.result_value_char
1303: FROM GMD_SAMPLES gs , GMD_RESULTS gr
1304: WHERE gs.sample_id = gr.sample_id
1305: AND gs.delete_mark = 0
1306: AND gs.sample_id IN ( SELECT ssd.sample_id FROM gmd_sample_spec_disp ssd
1307: WHERE ssd.sample_id = gs.sample_id

Line 1423: l_in_spec := GMD_RESULTS_GRP.rslt_is_in_spec(

1419: -- check test results against the selected sample are in range as per the given specification
1420: l_spec_test_counter := spec_test_list.FIRST;
1421: WHILE l_spec_test_counter IS NOT NULL
1422: LOOP
1423: l_in_spec := GMD_RESULTS_GRP.rslt_is_in_spec(
1424: p_spec_id => p_spec_id
1425: , p_test_id => spec_test_list(l_spec_test_counter)
1426: , p_rslt_value_num => result_test_list(l_spec_test_counter).result_value_num
1427: , p_rslt_value_char => result_test_list(l_spec_test_counter).result_value_char ) ;