DBA Data[Home] [Help]

APPS.GMD_SPEC_MATCH_GRP dependencies on GMD_RESULTS

Line 1247: FROM GMD_SAMPLES gs , GMD_RESULTS gr

1243: AND gst.optional_ind is NULL ;
1244:
1245: CURSOR cr_get_sample_for_lot IS
1246: SELECT gs.sample_id,gr.test_id,gr.result_value_num,gr.result_value_char
1247: FROM GMD_SAMPLES gs , GMD_RESULTS gr
1248: WHERE gs.sample_id = gr.sample_id
1249: AND gs.delete_mark = 0
1250: AND gs.sample_id IN ( SELECT ssd.sample_id FROM gmd_sample_spec_disp ssd
1251: WHERE ssd.sample_id = gs.sample_id

Line 1371: l_in_spec := GMD_RESULTS_GRP.rslt_is_in_spec(

1367: -- check test results against the selected sample are in range as per the given specification
1368: l_spec_test_counter := spec_test_list.FIRST;
1369: WHILE l_spec_test_counter IS NOT NULL
1370: LOOP
1371: l_in_spec := GMD_RESULTS_GRP.rslt_is_in_spec(
1372: p_spec_id => p_spec_id
1373: , p_test_id => spec_test_list(l_spec_test_counter)
1374: , p_rslt_value_num => result_test_list(l_spec_test_counter).result_value_num
1375: , p_rslt_value_char => result_test_list(l_spec_test_counter).result_value_char ) ;