DBA Data[Home] [Help]

APPS.GR_TECHNICAL_PARAMETERS dependencies on LM_TECH_HDR

Line 51: FROM lm_tech_hdr

47:
48: CURSOR c_get_lab_techparm IS
49: SELECT data_type, qcassy_typ_id, lm_unit_code, lowerbound_num,
50: upperbound_num, lowerbound_char, upperbound_char, organization_id, tech_parm_id
51: FROM lm_tech_hdr
52: WHERE organization_id = p_organization_id
53: AND tech_parm_name = X_desc.label_description;
54: LocalLabRecord c_get_lab_techparm%ROWTYPE;
55:

Line 60: FROM lm_tech_hdr

56: --
57: CURSOR c_get_lab_techparm_global IS
58: SELECT data_type, qcassy_typ_id, lm_unit_code, lowerbound_num,
59: upperbound_num, lowerbound_char, upperbound_char, organization_id, tech_parm_id
60: FROM lm_tech_hdr
61: WHERE organization_id IS NULL
62: AND tech_parm_name = X_desc.label_description;
63:
64: /* B2564522 Changed the cursor to incorporatethe QM changes*/