Invalid Subledger (XLA) Packages In Release 12.1.3
In this Document
| Goal |
| Solution |
| 1.- Information about These Packages |
| 2.- Solution |
| References |
APPLIES TO:
Oracle Cost Management - Version 12.1.3 and later
Oracle Purchasing - Version 12.1.3 and later
Oracle Subledger Accounting - Version 12.1.2 and later
Information in this document applies to any platform.
GOAL
User currently having the following Invalid Packages, the purpose of this document is to explain how the Package Names are generated and How can this situation be resolved.
| Object Type | Status | Owner |
|---|---|---|
| XLA_00707_AAD_S_000018_PKG | INVALID | APPS |
| XLA_00707_AAD_S_000019_PKG | INVALID | APPS |
| XLA_00201_AAD_S_000005_BC_PKG | INVALID | APPS |
| XLA_00707_AAD_S_000005_PKG | INVALID | APPS |
| XLA_00201_AAD_S_000004_BC_PKG | INVALID | APPS |
| XLA_00707_AAD_S_000003_PKG | INVALID | APPS |
| XLA_00707_AAD_S_000002_PKG | INVALID | APPS |
These Packages are Invalid and customer is unable to compile them manually. How can we resolve this situation?
SOLUTION
1.- Information about These Packages
These packages are functional Subledgers Packages created using some concurrent programs and dependent on the EBS Setup.
Application Accounting Definitions (AAD) Validation concurrent program will recompile what is really needed for Create Accounting - Cost Management and the name of the package is dynamically created like this:
XLA_<PROD ID>_AAD_S_000###_PKG
Where:
<PROD ID> = Is the Product ID in E-business Suite, for example 707 is Cost Management, 200 is Payables, 201 is Purchasing, etc.
In order to find the corresponding product, customer can run $AD_TOP/sql/adutconf.sql and in the output adutconf.lst customer will be able to find the Product Name.
<S_000###> = Is a sequence.
In order to validate these packages, there are functional steps to be completed like for example in document:
Doc
ID 1508902.1 XLA Invalid Objects In The Database After The upgrade to R12, Can this be Ignored?
For example, based upon the following invalids:
XLA_00707_AAD_S_000006_PKG = Costing package
XLA_00200_AAD_S_000012_PKG = Payables package
Run the "Application Accounting Definition Validation Report" and check the output to see if the packages used by the installed applications are compiled. If the output of the "Application Accounting Definition Validation Report" indicates that all the packages
are valid, then it is safe to ignore the invalid AAD objects that show up with the sql:
select object_name, status from all_objects where status = 'INVALID';
2.- Solution
1. These are compiled Subledger (XLA) Packages, there is no need to have them valid unless the customer is using the corresponding Application Accounting Definition. Customer needs to Re-Validate the AAD that
customer is using, verify after the Validation Program from the User Interface the corresponding AAD is valid.
a. Please run the following
XLAABACR Validate Application Accounting Definitions. For Cost Management.
Responsibility= Cost management-SLA
Paramters:
Ledger = null
Uncompile Status Only = No (will make sure that the new imported file is validated for all event types not just the invalid events)
Application = Cost Management
Application Accounting Definition = NULL/ Definition name(ex:Cost Management)
Application Accounting definition owner = NULL/Oracle/ User
b. Review and upload Application Accounting Definition Validation Report, all AADs (of type Oracle and User) attached to ACTIVE Ledgers and ACTIVE Applications must be re-validated.
2. The Invalid Objects can be confirmed via script CstCheck.sql, Please review Doc
ID 378348.1 Data Collection Scripts for Cost Management. (For R11 and R12). Then scroll down to the Invalid Objects.
3. Check if Federal Costing Application Accounting Definition is being used?
4. Check if the CSTCRACC Create Accounting - Cost Management complete successfully.
5. If customer is not using "Federal Costing Application Accounting Definition" and Create Accounting - Cost Management completes successfully. Customer can ignore those invalid Package
Body Objects. Or can even drop these objects.
REFERENCES
NOTE:1529977.1 - Invalid XLA objects
NOTE:300056.1 - Debug and Validate
Invalid Objects
Invalid Subledger (XLA) Packages In Release 12.1.3的更多相关文章
- Oracle E-Business Suite Maintenance Guide Release 12.2(Patching Procedures)
更多内容参考: http://docs.oracle.com/cd/E51111_01/current/acrobat/122ebsmt.zip Preparing for Patching For ...
- Deploying Customizations in Oracle E-Business Suite Release 12.2
DeployingCustomizations in Oracle E-Business Suite Release 12.2 This documentdescribes how to deploy ...
- Deploying JRE (Native Plug-in) for Windows Clients in Oracle E-Business Suite Release 12 (文档 ID 393931.1)
In This Document Section 1: Overview Section 2: Pre-Upgrade Steps Section 3: Upgrade and Configurati ...
- Sharing The Application Tier File System in Oracle E-Business Suite Release 12.2
The most current version of this document can be obtained in My Oracle Support Knowledge Document 13 ...
- Oracle E-Business Suite Maintenance Guide Release 12.2(Patching Utilities)
更多内容参考: http://docs.oracle.com/cd/E51111_01/current/acrobat/122ebsmt.zip Oracle Patch Application As ...
- Globalization Guide for Oracle Applications Release 12
Section 1: Overview Section 2: Installing Section 3: Configuring Section 4: Maintaining Section 5: U ...
- 配置Oracle E-Business Suite Integrated SOA Gateway Release 12.1.2/12.1.3
3.3 配置Oracle E-Business Suite Integrated SOA Gateway Release 12.1.2 注意: 在多节点环境上配置Oracle E-Business S ...
- OA Framework - How to Find the Correct Version of JDeveloper to Use with E-Business Suite 11i or Release 12.x (Doc ID 416708.1)
APPLIES TO: Oracle Applications Framework - Version 11.5.10.0 to 12.2.2 [Release 11.5.10 to 12.2] In ...
- How to Determine the Version of Oracle XML Publisher for Oracle E-Business Suite 11i and Release 12 (Doc ID 362496.1)
Modified: 29-Mar-2014 Type: HOWTO In this DocumentGoal Solution 1. Based upon an output file gen ...
随机推荐
- 实现Android5.0过渡动画兼容库
Android5.0之后为我们提供了许多炫酷的界面过渡效果,其中共享元素过渡也是很有亮点的一个效果,但这个效果只能在Android5.0之后使用,那今天我们就来将共享元素过渡效果兼容到Android4 ...
- JAVA面向对象-----成员内部类访问细节
JAVA面向对象-–成员内部类访问细节 私有的成员内部类不能在其他类中直接创建内部类对象来访问. 如果内部类中包含有静态成员,那么java规定内部类必须声明为静态的访问静态内部类的形式:Outer.I ...
- Leetcode解题-链表(2.2.0)基础类
1 基类的作用 在开始练习LeetCode链表部分的习题之前,首先创建好一个Solution基类,其作用就是: Ø 规定好每个子Solution都要实现纯虚函数test做测试: Ø 提供了List ...
- SceneKit做一个旋转的地球效果
SceneKit可以用寥寥几行帮你完成很多OpenGL复杂的3D设置代码,下面本猫就带大家完成一个旋转的3D地球的场景. 首先需要地球表面图片,将其导入到Xcode中: 我们用SceneKit内置的几 ...
- Android使用HttpUrlConnection请求服务器发送数据详解
HttpUrlConnection是java内置的api,在java.net包下,那么,它请求网络同样也有get请求和post请求两种方式.最常用的Http请求无非是get和post,get请求可以获 ...
- Java之继承深刻理解
1.关于私有成员变量 无论父类中的成员变量是私有的.共有的.还是其它类型的,子类都会拥有父类中的这些成员变量.但是父类中的私有成员变量,无法在子类中直接访问,必须通过从父类中继承得到的protecte ...
- Spark-1.6.0中的Sort Based Shuffle源码解读
从Spark-1.2.0开始,Spark的Shuffle由Hash Based Shuffle升级成了Sort Based Shuffle.即Spark.shuffle.manager从Hash换成了 ...
- C语言获取文件大小
C语言是一种比较底层的语言,有时在其他语言中很容易操作的事情,在C语言中就比较麻烦,例如获取一个文件的大小.Java中File类有个length函数,Python中os.path包中有个getsize ...
- mysqldump的几个主要选项探究
0.前言 本文主要探讨 mysqldump 的几种主要工作方式,并且比较一下和 mk-parralel-dump的一些差异,为备份方式的选择提供更多的帮助. 1.mysqldump 首先来看下 mys ...
- 精通CSS+DIV网页样式与布局--页面和浏览器元素
在页面和浏览器中,除了文字.图片.表格.表单等,还有很多各种各样的元素,在上篇博文中,小编主要简单的介绍了一下在CSS中如何设置表格和表单,今天小编主要简单介绍一下丰富的超链接特效.鼠标特效.页面滚动 ...