DBA Data[Home] [Help]

APPS.GMF_LC_ADJ_TRANSACTIONS_PKG dependencies on CM_CMPT_MST

Line 102: FROM cm_cmpt_mst

98:
99: -- check cost component class id exists in component master table
100: CURSOR cur_costcptcls_exists(cp_cost_cmpntcls_id NUMBER) IS
101: SELECT 1
102: FROM cm_cmpt_mst
103: WHERE cost_cmpntcls_id = cp_cost_cmpntcls_id;
104:
105: -- check analysis code exists in analysis table
106: CURSOR cur_analysis_cd_exists (cp_cost_analysis_code cm_alys_mst.cost_analysis_code%TYPE) IS

Line 399: -- validate cost component class id, should exists in CM_CMPT_MST table

395: IF l_debug_level >= l_debug_level_medium THEN
396: fnd_file.put_line(fnd_file.log,'Validate Cost Component Class');
397: END IF;
398:
399: -- validate cost component class id, should exists in CM_CMPT_MST table
400: OPEN cur_costcptcls_exists(p_adjustment_row.cost_cmpntcls_id);
401: FETCH cur_costcptcls_exists INTO l_exists;
402: IF cur_costcptcls_exists%NOTFOUND THEN
403: fnd_file.put_line(fnd_file.log,'Cost component class ID is not valid, not exists in cost components table');