DBA Data[Home] [Help]

APPS.CSTPPCIT dependencies on CST_LE_COST_TYPES

Line 76: FROM CST_LE_COST_TYPES

72: /* Validate cost_type_id */
73: l_count := 0;
74: SELECT count(*)
75: INTO l_count
76: FROM CST_LE_COST_TYPES
77: WHERE legal_entity = l_legal_entity
78: AND cost_type_id = i_cost_type_id;
79:
80: IF (l_count = 0) THEN

Line 95: FROM CST_LE_COST_TYPES clct, GL_SETS_OF_BOOKS gl

91: SELECT gl.set_of_books_id, gl.chart_of_accounts_id,
92: gl.period_set_name, gl.accounted_period_type
93: INTO l_sob_id, l_chart_account_id,
94: l_period_set_name, l_period_type
95: FROM CST_LE_COST_TYPES clct, GL_SETS_OF_BOOKS gl
96: WHERE clct.set_of_books_id = gl.set_of_books_id
97: AND clct.legal_entity = l_legal_entity
98: AND cost_type_id = i_cost_type_id;
99: