DBA Data[Home] [Help]

APPS.OKC_TERMS_UTIL_GRP dependencies on FND_FUNCTION

Line 2765: ELSIF fnd_function.test('OKC_TERMS_AUTHOR_NON_STD','N') THEN

2761: ELSIF NVL(p_standard_yn,'N') = 'Y' THEN
2762: -- update always enabled for standard articles
2763: RETURN 'OkcTermsStructDtlsUpdateEnabled' ;
2764: -- non std articles
2765: ELSIF fnd_function.test('OKC_TERMS_AUTHOR_NON_STD','N') THEN
2766: -- user has access to fn and doc not template
2767: RETURN 'OkcTermsStructDtlsUpdateEnabled' ;
2768: ELSE
2769: -- user does NOT have access to function OKC_TERMS_AUTHOR_NON_STD

Line 2802: IF (fnd_function.test('OKC_TERMS_AUTHOR_NON_STD','N') AND

2798: --Bug 4123003 If doc_type is template, delete button should be enabled
2799: IF p_document_type = 'TEMPLATE' THEN
2800: RETURN 'OkcTermsStructDtlsRemoveEnabled';
2801: ELSE
2802: IF (fnd_function.test('OKC_TERMS_AUTHOR_NON_STD','N') AND
2803: fnd_function.test('OKC_TERMS_AUTHOR_SUPERUSER','N')) THEN
2804: -- user has override controls, allow delete mandatory
2805: RETURN 'OkcTermsStructDtlsRemoveEnabled';
2806: ELSE

Line 2803: fnd_function.test('OKC_TERMS_AUTHOR_SUPERUSER','N')) THEN

2799: IF p_document_type = 'TEMPLATE' THEN
2800: RETURN 'OkcTermsStructDtlsRemoveEnabled';
2801: ELSE
2802: IF (fnd_function.test('OKC_TERMS_AUTHOR_NON_STD','N') AND
2803: fnd_function.test('OKC_TERMS_AUTHOR_SUPERUSER','N')) THEN
2804: -- user has override controls, allow delete mandatory
2805: RETURN 'OkcTermsStructDtlsRemoveEnabled';
2806: ELSE
2807: RETURN 'OkcTermsStructDtlsRemoveDisabled';

Line 2815: ELSIF fnd_function.test('OKC_TERMS_AUTHOR_NON_STD','N') THEN

2811: ELSIF NVL(p_standard_yn,'N') = 'Y' THEN
2812: -- for standard articles delete is always allowed
2813: RETURN 'OkcTermsStructDtlsRemoveEnabled' ;
2814: -- Case 3: NON-STANDARD ARTICLES (non-mandatory)
2815: ELSIF fnd_function.test('OKC_TERMS_AUTHOR_NON_STD','N') THEN
2816: -- for non-std articles check for function security
2817: -- user has access , so check allow delete for non-std articles
2818: RETURN 'OkcTermsStructDtlsRemoveEnabled' ;
2819: ELSE