search
HomeDatabaseMysql TutorialEBS多OU和多帐套客户化实现

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;

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
MySQL: BLOB and other no-sql storage, what are the differences?MySQL: BLOB and other no-sql storage, what are the differences?May 13, 2025 am 12:14 AM

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

MySQL Add User: Syntax, Options, and Security Best PracticesMySQL Add User: Syntax, Options, and Security Best PracticesMay 13, 2025 am 12:12 AM

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

MySQL: How to avoid String Data Types common mistakes?MySQL: How to avoid String Data Types common mistakes?May 13, 2025 am 12:09 AM

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

MySQL: String Data Types and ENUMs?MySQL: String Data Types and ENUMs?May 13, 2025 am 12:05 AM

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

MySQL BLOB: how to optimize BLOBs requestsMySQL BLOB: how to optimize BLOBs requestsMay 13, 2025 am 12:03 AM

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.

Adding Users to MySQL: The Complete TutorialAdding Users to MySQL: The Complete TutorialMay 12, 2025 am 12:14 AM

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.

Mastering MySQL String Data Types: VARCHAR vs. TEXT vs. CHARMastering MySQL String Data Types: VARCHAR vs. TEXT vs. CHARMay 12, 2025 am 12:12 AM

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

MySQL: String Data Types and Indexing: Best PracticesMySQL: String Data Types and Indexing: Best PracticesMay 12, 2025 am 12:11 AM

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.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

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

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

mPDF

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

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor