DBA Data[Home] [Help]

APPS.GML_VALIDATEDERIVE_GRP dependencies on PO_GML_DB_COMMON

Line 152: l_opm_um_code := po_gml_db_common.get_opm_uom_code(p_unit_of_measure);

148: l_progress := '003';
149: --Get opm uom code for the passed apps unit of measure.
150: IF p_unit_of_measure IS NOT NULL THEN
151: BEGIN
152: l_opm_um_code := po_gml_db_common.get_opm_uom_code(p_unit_of_measure);
153:
154: EXCEPTION WHEN OTHERS THEN
155: --If unit of measure is not passed the error out.
156: FND_MESSAGE.SET_NAME('GMI','IC_API_INVALID_UOM');

Line 173: l_passed_opm_sec_um_code := po_gml_db_common.get_opm_uom_code(p_secondary_unit_of_measure);

169: END IF;
170: l_progress := '004';
171: --Validate secondary unit of measure passed in case validate ind is 'Y' (receiving preprocessor)
172: IF p_secondary_unit_of_measure is NOT NULL and p_validate_ind = 'Y' THEN
173: l_passed_opm_sec_um_code := po_gml_db_common.get_opm_uom_code(p_secondary_unit_of_measure);
174:
175: -- bug# 3442888. If items secondary unit of measure is different than ROI secondary unit of
176: -- measure then error message is not put on the stack since fnd_msg_pub.add was missing.
177: -- adding fnd_msg_pub.add

Line 189: P_secondary_unit_of_measure := po_gml_db_common.get_apps_uom_code(l_opm_secondary_um);

185: END IF;
186: ELSIF p_secondary_unit_of_measure is NULL and p_validate_ind = 'Y' THEN
187: --in case validate ind is 'Y' then derive the secondary unit of measure.
188: --return the secondary unit of measure
189: P_secondary_unit_of_measure := po_gml_db_common.get_apps_uom_code(l_opm_secondary_um);
190: END IF;
191: l_progress := '005';
192: IF l_opm_um_code is NOT NULL and l_opm_secondary_um IS NOT NULL THEN
193: IF p_validate_ind = 'N' or p_secondary_quantity IS NULL THEN