DBA Data[Home] [Help]

APPS.MSC_RP_RELEASE_PUB dependencies on FND_FUNCTION

Line 1109: if fnd_function.test(l_function) then --- SIM_WORKBENCH

1105: SECURITY_CONTEXT_INVALID exception;
1106:
1107: begin
1108: app_session.validate_icx_session(p_icx_cookie);
1109: if fnd_function.test(l_function) then --- SIM_WORKBENCH
1110: return;
1111: else
1112: raise SECURITY_CONTEXT_INVALID;
1113: end if;

Line 1175: if fnd_function.test(pname) then

1171: Function test_permission(pname in varchar2) return number is
1172: SECURITY_CONTEXT_INVALID exception;
1173:
1174: begin
1175: if fnd_function.test(pname) then
1176: return 1;
1177: else
1178: return 2 ;
1179: end if;