DBA Data[Home] [Help]

APPS.GMF_CBOM_REP_PKG dependencies on CM_MTHD_MST

Line 192: l_cost_type cm_mthd_mst.cost_mthd_code%TYPE :='';

188: REM+=========================================================================+
189: */
190: FUNCTION get_cost_type(p_ct_id IN NUMBER) RETURN VARCHAR2 IS
191:
192: l_cost_type cm_mthd_mst.cost_mthd_code%TYPE :='';
193:
194: BEGIN
195: -- get Cost type name,
196: SELECT cost_mthd_code INTO l_cost_type FROM cm_mthd_mst

Line 196: SELECT cost_mthd_code INTO l_cost_type FROM cm_mthd_mst

192: l_cost_type cm_mthd_mst.cost_mthd_code%TYPE :='';
193:
194: BEGIN
195: -- get Cost type name,
196: SELECT cost_mthd_code INTO l_cost_type FROM cm_mthd_mst
197: WHERE cost_type_id = p_ct_id;
198:
199: RETURN l_cost_type;
200: