DBA Data[Home] [Help]

APPS.AR_PURGE dependencies on GL_CODE_COMBINATIONS

Line 580: FROM gl_code_combinations cc

576: cc.segment28 || '.' ||
577: cc.segment29 || '.' ||
578: cc.segment30, '.' )
579: INTO l_account_segs
580: FROM gl_code_combinations cc
581: WHERE cc.code_combination_id = p_code_combination_id;
582:
583: RETURN(l_account_segs);
584:

Line 589: print( 1, 'Failed while selecting from gl_code_combinations') ;

585: EXCEPTION
586: WHEN NO_DATA_FOUND THEN
587: RETURN NULL ;
588: WHEN OTHERS THEN
589: print( 1, 'Failed while selecting from gl_code_combinations') ;
590: print( 1, 'sqlcode = ' || SQLCODE || SQLERRM ) ;
591: RAISE ;
592: END get_ccid;
593: --