DBA Data[Home] [Help]

APPS.PSP_PREGEN dependencies on GL_CODE_COMBINATIONS

Line 2809: If CODE_COMBINATION_ID is not in table gl_code_combinations then throw Exception */

2805: return;
2806: END VALIDATE_DR_CR_FLAG;
2807:
2808: /* Bug fix 2985061: Created this procedure.
2809: If CODE_COMBINATION_ID is not in table gl_code_combinations then throw Exception */
2810: PROCEDURE VALIDATE_GL_CC_ID( X_CODE_COMBINATION_ID IN NUMBER,
2811: X_return_status OUT NOCOPY varchar2,
2812: X_return_code OUT NOCOPY varchar2) IS
2813: CURSOR check_code_combination_csr is

Line 2815: from gl_code_combinations

2811: X_return_status OUT NOCOPY varchar2,
2812: X_return_code OUT NOCOPY varchar2) IS
2813: CURSOR check_code_combination_csr is
2814: select 1
2815: from gl_code_combinations
2816: where CODE_COMBINATION_ID = X_CODE_COMBINATION_ID;
2817:
2818: l_code_combination_id number(15);
2819: BEGIN