EBS多OU和多帐套客户化实现 (一) 多OU总结 1. Form多OU实现 1) 创建一个Table,以CUX_AP_CHECK_HEADER_ALL为例 2) 创建Table的两个Synonym(一个不含_ALL,一个以_ALL结尾):CUX_AP_CHECK_HEADER和CUX_AP_CHECK_HEADER_ALL 3) 给不含_ALL的Synonym:CUX_AP_CHEC
EBS多OU和多帐套客户化实现
(一) 多OU总结
1. Form多OU实现
1) 创建一个Table,以CUX_AP_CHECK_HEADER_ALL为例
2) 创建Table的两个Synonym(一个不含_ALL,一个以_ALL结尾):CUX_AP_CHECK_HEADER和CUX_AP_CHECK_HEADER_ALL
3) 给不含_ALL的Synonym:CUX_AP_CHECK_HEADER加上组织屏蔽的策略函数
dbms_rls.add_policy(object_name => 'CUX_AP_CHECK_HEADER',
policy_name => 'ORG_SEC',
policy_function => 'MO_GLOBAL.ORG_SECURITY',
policy_type => dbms_rls.shared_context_sensitive);
4) 在不含_ALL的Synonym的基础上创建视图: CUX_AP_CHECK_HEADER_V
5) 进入FORM时(pre-form触发器)添加代码:
mo_global.init(&p_appl_shortname);--p_appl_shortname为应用简称
6) 当选择某个OU时(一般在when_validate_item触发器)中添加代码:mo_global.set_policy_context('S',&p_org_id);--p_org_id为OU的id
2. Report多OU实现
1) 给并发程序设置业务实体模式:单个,多个和空(默认)。一般设置为‘单个’
业务实体模式对应表fnd_concurrent_programs中的multi_org_category字段
2) 得到当前OU的值。
使用:mo_global.get_current_org_id或者fnd_global.org_id
3) 在报表的参数和报表的逻辑中加上OU的限制
3. GL数据的多OU实现
1) 得到当前OU的值。
使用:mo_global.get_current_org_id或者fnd_global.org_id
2) 根据OU的值得到部门段的值:
DECLARE
l_segment1 VARCHAR2(150);--部门段
BEGIN
SELECT o3.attribute5
INTO l_segment1
FROM hr_all_organization_units o,
hr_all_organization_units_tl otl,
hr_organization_information o2,
hr_organization_information o3
WHERE o.organization_id = o2.organization_id
AND o.organization_id = o3.organization_id
AND o2.org_information_context = 'CLASS'
AND o3.org_information_context = 'Operating Unit Information'
AND o2.org_information1 = 'OPERATING_UNIT'
AND o2.org_information2 = 'Y'
and o.organization_id = otl.organization_id
and o.organization_id = &p_org_id –OU id
AND otl.LANGUAGE = USERENV('LANG');
END;
3) 将步骤2得到的值作为限制条件:
SELECT gl_code_combinations gcc WHERE gcc.segment1 = l_segment1;
4. Interface多OU总结
1) 给并发程序设置业务实体模式:单个,多个和空(默认)。业务实体模式对应表fnd_concurrent_programs中的multi_org_category字段
2) 如果接口的导入程序中OU作为一个参数,则应该将所有的OU作一次循环。
5. 多OU实现扩展知识
1) 给客户化应用注册和取消MOAC的控制
fnd_mo_product_init_pkg.register_application(注册应用)
fnd_mo_product_init_pkg.remove_application(取消应用)
查看支持MOAC的应用SQL:
SELECT * FROM fnd_mo_product_init;
2) 给数据库对象注册和取消策略-policy
dbms_rls.add_policy(注册策略)
dbms_rls.drop_policy(取消策略)
3) 多OU 涉及到的表
a) 查看数据库对象是否增加了策略-policy
SELECT * FROM dba_policies;
b) 查看当前session所能访问的OU
SELECT * FROM mo_glob_org_access_tmp;
c) 查看当前session应用上下文(context)的值(说明:OU的值保存在context中)
SELECT * FROM dba_context dc WHERE dc.namespace LIKE 'MULTI%';
MOAC使用的应用程序上下文:MULTI_ORG,MULTI_ORG2
(二) 多帐套总结
1. 客户化开发中的多帐套屏蔽
1) 得到当前OU的值。
使用:mo_global.get_current_org_id或者fnd_global.org_id
2) 根据组织id得到帐套id和公司名称。SQL语句为:
DECLARE
l_org_information3 VARCHAR2(150);--帐套id
l_company_desc VARCHAR2(150);--公司中文描述
BEGIN
SELECT o3.org_information3,o3.attribute3
INTO l_org_information3,l_company_desc
FROM hr_all_organization_units o,
hr_all_organization_units_tl otl,
hr_organization_information o2,
hr_organization_information o3
WHERE o.organization_id = o2.organization_id
AND o.organization_id = o3.organization_id
AND o2.org_information_context || '' = 'CLASS'
AND o3.org_information_context = 'Operating Unit Information'
AND o2.org_information1 = 'OPERATING_UNIT'
AND o2.org_information2 = 'Y'
AND o.organization_id = otl.organization_id
AND otl.language = USERENV('LANG')
AND o.organization_id = &p_org_id;--OU id
END;
3) 得到本位币,SQL语句为:
DECLARE
l_local_currency_code VARCHAR2(15);--本位币
BEGIN
SELECT gsob.currency_code
INTO l_local_currency_code
FROM gl_sets_of_books gsob, hr_operating_units hou
WHERE gsob.set_of_books_id = hou.set_of_books_id
AND hou.organization_id = &p_org_id;--OU ID
END;
4) 在程序中加上帐套和本位币的限制
2. 多帐套实现扩展
1) 得到帐套的SQL语句为:
SELECT * FROM gl_ledgers;
2) 得到法人的SQL语句为:
SELECT * FROM xle_entity_profiles;

MySQL'sBLOBissuitableforstoringbinarydatawithinarelationaldatabase,whileNoSQLoptionslikeMongoDB,Redis,andCassandraofferflexible,scalablesolutionsforunstructureddata.BLOBissimplerbutcanslowdownperformancewithlargedata;NoSQLprovidesbetterscalabilityand

ToaddauserinMySQL,use:CREATEUSER'username'@'host'IDENTIFIEDBY'password';Here'showtodoitsecurely:1)Choosethehostcarefullytocontrolaccess.2)SetresourcelimitswithoptionslikeMAX_QUERIES_PER_HOUR.3)Usestrong,uniquepasswords.4)EnforceSSL/TLSconnectionswith

ToavoidcommonmistakeswithstringdatatypesinMySQL,understandstringtypenuances,choosetherighttype,andmanageencodingandcollationsettingseffectively.1)UseCHARforfixed-lengthstrings,VARCHARforvariable-length,andTEXT/BLOBforlargerdata.2)Setcorrectcharacters

MySQloffersechar, Varchar, text, Anddenumforstringdata.usecharforfixed-Lengthstrings, VarcharerForvariable-Length, text forlarger text, AndenumforenforcingdataAntegritywithaetofvalues.

Optimizing MySQLBLOB requests can be done through the following strategies: 1. Reduce the frequency of BLOB query, use independent requests or delay loading; 2. Select the appropriate BLOB type (such as TINYBLOB); 3. Separate the BLOB data into separate tables; 4. Compress the BLOB data at the application layer; 5. Index the BLOB metadata. These methods can effectively improve performance by combining monitoring, caching and data sharding in actual applications.

Mastering the method of adding MySQL users is crucial for database administrators and developers because it ensures the security and access control of the database. 1) Create a new user using the CREATEUSER command, 2) Assign permissions through the GRANT command, 3) Use FLUSHPRIVILEGES to ensure permissions take effect, 4) Regularly audit and clean user accounts to maintain performance and security.

ChooseCHARforfixed-lengthdata,VARCHARforvariable-lengthdata,andTEXTforlargetextfields.1)CHARisefficientforconsistent-lengthdatalikecodes.2)VARCHARsuitsvariable-lengthdatalikenames,balancingflexibilityandperformance.3)TEXTisidealforlargetextslikeartic

Best practices for handling string data types and indexes in MySQL include: 1) Selecting the appropriate string type, such as CHAR for fixed length, VARCHAR for variable length, and TEXT for large text; 2) Be cautious in indexing, avoid over-indexing, and create indexes for common queries; 3) Use prefix indexes and full-text indexes to optimize long string searches; 4) Regularly monitor and optimize indexes to keep indexes small and efficient. Through these methods, we can balance read and write performance and improve database efficiency.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

WebStorm Mac version
Useful JavaScript development tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Notepad++7.3.1
Easy-to-use and free code editor
