DBA Data[Home] [Help]

APPS.PSP_PREGEN dependencies on GL_CODE_COMBINATIONS

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

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

Line 2818: from gl_code_combinations

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