You are on page 1of 3

10/20/23, 12:06 AM Oracle Security API - FND_FUCTION.

TEST_ITPUB博客

首页 博客 专栏 学院 社区 技术栈 搜索  发博

首页 > 数据库 > Oracle > Oracle Security API - FND_FUCTION.TEST

Oracle Security API - FND_FUCTION.TEST


原创 Oracle 作者:pan_tian 时间:2014-07-02 16:33:14  1455  0

FND_FUCTION.TEST(Function_Name)

Test if function is accessible under current responsibility.TRUE if function is accessible.

This function Only checks static function security, and global object type grants from data security.
Because this routine does not take the object id and instance pks, it cannot test for most data security grants, and therefore it
should not be used if the object id and/or instance pks are known.
This is here for cases where performance is critical, and for backwards compatibility, but in general new code should use
TEST_INSTANCE instead if acting on a particular object instance (database row).

Example

There is function:HELLOWORLD,which is under Inventory responsibility.

blog.itpub.net/26687597/viewspace-1204923/ 1/3
10/20/23, 12:06 AM Oracle Security API - FND_FUCTION.TEST_ITPUB博客

BEGIN
fnd_global.apps_initialize(user_id => 1068,
resp_id => 21623, --Order Management Super User responsibility
resp_appl_id => 401);

IF fnd_function.test(\'HELLOWORLD\') THEN
dbms_output.put_line(\'TRUE\');
ELSE
dbms_output.put_line(\'FALSE\');
END IF;
END;

Output:False

If change resp_id to inventory ID,Output will be TRUE.

Check Oracle Application Developer Guide for API details(Chapter 11)

<!-- Baidu Button BEGIN -->


来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/26687597/viewspace-1204923/,如需转载,请注明出处,否则将追究法律责任。

0
0

分享到:

上一篇: Top 10 Free Ways of Securing Your EBS Instance 下一篇

请登录后发表评论 登录

全部评论

支持我们 作者招募 用户协议 FAQ Contact Us  


北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-8 北京市公安局海淀分局网监中心备案编号:11010802021510 niuxiaotong@pcpop.com 17352615567

未成年人举报专区
广播电视节目制作经营许可证(京) 字第1234号 中国互联网协会会员

blog.itpub.net/26687597/viewspace-1204923/ 2/3
10/20/23, 12:06 AM Oracle Security API - FND_FUCTION.TEST_ITPUB博客

pan_tian
暂无介绍

注册时间:2012-02-18

博文量 访
717 242

最新文章

Inventory Analyzer

Invoking Webservice from PL

XML Display Error in Oracle

List/Grant/Revoke Oracle Pri

BPA - 一揽子采购协议(Blank

Oracle Licensing

EBS Forms中焦点丢失的问题

PLS-00313: 'XXXXX' not dec

SQL Joins

Two Security Models in Orac

blog.itpub.net/26687597/viewspace-1204923/ 3/3

You might also like