DBA Data[Home] [Help]

APPS.AP_PA_API_PKG dependencies on GL_CODE_COMBINATIONS

Line 214: l_account_type gl_code_combinations.account_type%type;

210: END get_invoice_status;
211:
212:
213: FUNCTION get_asset_tracking_flag (p_ccid IN NUMBER) return VARCHAR2 is
214: l_account_type gl_code_combinations.account_type%type;
215: p_asset_tracking_flag varchar2(1);
216: BEGIN
217: SELECT account_type
218: INTO l_account_type

Line 219: FROM gl_code_combinations

215: p_asset_tracking_flag varchar2(1);
216: BEGIN
217: SELECT account_type
218: INTO l_account_type
219: FROM gl_code_combinations
220: WHERE code_combination_id = p_ccid ;
221:
222: IF l_account_type = 'E' THEN
223: p_asset_tracking_flag := 'N' ;