DBA Data[Home] [Help]

APPS.HZ_DSS_VALIDATE_PKG dependencies on FND_FORM_FUNCTIONS

Line 549: -- Return Y if function id exists in fnd_form_functions

545: --------------------------------------------
546: -- exist_function_id
547: --------------------------------------------
548: FUNCTION exist_function_id
549: -- Return Y if function id exists in fnd_form_functions
550: -- N otherwise
551: (p_function_id NUMBER )
552: RETURN VARCHAR2
553: IS

Line 557: from fnd_form_functions where function_id = p_function_id;

553: IS
554: CURSOR c0
555: IS
556: select 'Y'
557: from fnd_form_functions where function_id = p_function_id;
558: l_yn VARCHAR2(1);
559: result VARCHAR2(1);
560: BEGIN
561: OPEN c0;