DBA Data[Home] [Help]

APPS.PSP_ENC_LIQ_TRAN dependencies on GL_ENCUMBRANCE_TYPES

Line 3342: -- This procedure retrieves the encumbrance_type_id from gl_encumbrance_types

3338: p_return_status := fnd_api.g_ret_sts_unexp_error;
3339: END gl_je_cat;
3340:
3341: -- ##########################################################################
3342: -- This procedure retrieves the encumbrance_type_id from gl_encumbrance_types
3343: -- ##########################################################################
3344:
3345: PROCEDURE enc_type( P_ENCUMBRANCE_TYPE_ID OUT NOCOPY VARCHAR2,
3346: P_RETURN_STATUS OUT NOCOPY VARCHAR2) IS

Line 3353: FROM gl_encumbrance_types

3349:
3350: BEGIN
3351: SELECT encumbrance_type_id
3352: INTO p_encumbrance_type_id
3353: FROM gl_encumbrance_types
3354: WHERE encumbrance_type = 'OLD'
3355: AND enabled_flag = 'Y';
3356:
3357: EXCEPTION