EBS中常用的FND表

FND stands for foundation tables which is combination of AOL(Application Object Library), SYSTEM, ADMINISTRATOR, MODULES tables and is placed under FND_TOP. Below i have listed few key FND tables that along with the little description of what is it used for :

FND_APPLICATION:这个表,存储了所有应用产品的信息,每个产品一条记录 Stores applications registered with Oracle Application Object Library.

FND_APPLICATION_TL:TL表,跟语言相关,每多添加一种语言,该表的行数就就有FND_APPLICATION的几倍。Stores translated information about all the applications registered with Oracle Application Object Library.

FND_APP_SERVERS:分别显示数据库server、应用server。This table will track the servers used by the E-Business Suite system.

FND_DATABASES:存储的是数据库的信息。It tracks the databases employed by the eBusiness suite. This table stores information about the database that is not instance specific.

FND_DATABASE_INSTANCES: Stores instance specific information. Every database has one or more instance.

FND_ATTACHED_DOCUMENTS:Stores information relating a document to an application entity.

FND_DOCUMENTS:Stores language-independent information about a document.

FND_CURRENCIES: Stores information about currencies.关于货币的表,好像可以自己定义。

FND_LANGUAGES:Stores information regarding languages and dialects.关于语言信息的表。跟本实例没有关系,所有环境应该都是一样的。

FND_TERRITORIES:Stores information for countries, alternatively known as territories.关于国家的表。跟本实例没有关系,所有环境应该都是一样的。

FND_CONCURRENT_PROCESSES:Stores information about concurrent managers.

FND_CONCURRENT_PROCESSORS:Stores information about immediate (subroutine) concurrent program libraries.

FND_CONCURRENT_PROGRAMS:Stores information about concurrent programs. Each row includes a name and description of the concurrent program.并发程序的id、名称、更改时间等信息。

FND_CONCURRENT_PROGRAMS_TL:Stores translated information about concurrent programs in each of the installed languages.根据语言,并发程序的id、名称、更改时间等信息。

FND_CONCURRENT_QUEUES:Stores information about concurrent managers.每个并发管理器(并发队列)的信息,包括客户自己定义的并发管理器。

FND_CONCURRENT_QUEUE_SIZE:Stores information about the number of requests a concurrent manager can process at once, according to its work shift.每个并发管理器可以同时处理并发程序的个数。

FND_CONCURRENT_REQUESTS: Stores information about individual concurrent requests.单个并发请求的信息,包括请求id、请求名,请求状态

FND_CONCURRENT_REQUEST_CLASS:Stores information about concurrent request types.(好像一直是空的)

FND_CONC_REQ_OUTPUTS:This table stores output files created by Concurrent Request.并发请求产生的文件,比如pdf的,rtf的,excel的等等。

FND_EXECUTABLES:Stores information about concurrent program executables.

FND_DESCRIPTIVE_FLEXS:Stores setup information about descriptive flexfields.

FND_DESCRIPTIVE_FLEXS_TL:Stores translated setup information about descriptive flexfields.

FND_FLEX_VALUES:Stores valid values for key and descriptive flexfield segments.

FND_FLEX_VALUE_SETS:Storesinformation about the value sets used by both key and descriptive flexfields.弹性域值集

FND_LOOKUPS : Stores information aboutlookup types.
FND_LOOKUP_VALUES :Stores meaning values and codes for lookup types.

FND_MENUS:It lists the menus that appear in the Navigate Window, as determined by the System Administrator when defining responsibilities for function security.

FND_MENUS_TL:Stores translated information about the menus in FND_MENUS.

FND_MENU_ENTRIES:Stores information about individual entries in the menus in FND_MENUS.

FND_REQUEST_GROUPS:Stores information about report security groups.

FND_REQUEST_SETS:Stores information about report sets.

FND_RESPONSIBILITY:Stores information about responsibilities. Each row includes the name and description of the responsibility, the application it belongs to, and values that identify the main menu, and the first form that it uses.

FND_RESPONSIBILITY_TL:Stores translated information about responsibilities.

FND_PROFILE_OPTIONS:Stores information about  profile options.

FND_RESP_FUNCTIONS:Stores security exclusion rules for function security menus. Security exclusion rules are lists of functions and menus inaccessible to a particular responsibility.

FND_SECURITY_GROUPS:Stores information about security groups used to partition data in a Service Bureau architecture.

FND_SEQUENCES:Stores information about the registered sequences in your applications.

FND_TABLES:Stores information about the registered tables in your applications.

FND_USER:Stores information about application users.

FND_VIEWS:Stores information about the registered views in your applications.

FND_NODE: 保存节点信息。

时间: 2024-09-10 22:23:35

EBS中常用的FND表的相关文章

dedecms中常用的数据表操作SQL语句

删除所有注册会员    代码如下 复制代码 DELETE FROM `#@__member` WHERE `#@__member`.`mid`!= 1; TRUNCATE TABLE `#@__member_flink`; TRUNCATE TABLE `#@__member_person`; 批量修改栏目为动态  代码如下 复制代码 UPDATE `#@__arctype` SET `isdefault` = '-1' 批量删除文章  代码如下 复制代码 DELETE FROM #@__add

PHP中常用的表单验证类

PHP动态网页开发中常用的表单验证类 <?php class class_post { //验证是否为指定长度的字母/数字组合 function fun_text1($num1,$num2,$str) { Return (preg_match("/^[a-zA-Z0-9]{".$num1.",".$num2."}$/",$str))?true:false; } //验证是否为指定长度数字 function fun_text2($num1,$

Extjs中常用表单介绍与应用_extjs

目标: 知道表单面板如何创建 了解表单面板中xtype的类型的应用 知道表单面板如何验证,绑定,取值 综合应用表单面板(玩转它) 内容: 首先我们要理解的是FormPanel也是继承panel组件的.所以它有着panel的属性 要创建一个表单面板其实很简单 var MyformPanel=new Ext.form.formpanel(); 表单面板和面板一样只是作为一个容器出现的,需要我们使用items加入各控件元素来丰富我们的表单面板, defaults:{},此属性提取了items中各组件项

EBS中odf文件和xdf文件解释

参考文档:http://blog.csdn.net/pan_tian/article/details/7814422          http://blog.csdn.net/pan_tian/article/details/8643501 1.ODF odf(Object Descriptor File),里边含有数据库对象的描述,用于创建数据库表,视图,索引等等. 除了打patch可以打odf文件,我们还有个手工打odf的工具叫做ADODFCM($AD_TOP/bin下),名字拆开比较好记

asp.net中常用到的SQL分页存储过程

asp.net中常用到的SQL分页存储过程 以下是引用片段:create PROCEDURE [dbo].[myPage] @tblName varchar(255), -- 表名 @fldName varchar(255), -- 排序的字段名,一般为唯一标识 @strGetFields varchar(1000) = ' * ', -- 需要返回的列  @PageSize int = 10, -- 每页有多少条记录 @PageIndex int = 1, -- 第几页 @Count int 

交互设计实例:手机界面中常用的导航方式

文章描述:手机界面常用导航设计分析. 所谓的交互设计,其实设计的就是人如何向机器发送指令,机器如何向人传达信息,一来一往是为交互.当要传达的信息量很少时,好办,就像Google的搜索框那样,往白底上一放就行了.但当等到信息是海量的.在一屏上难以全部呈现时,就需要有效地组织信息,将部分信息先隐藏起来,待到用户需要时再将用户引导到那里.在界面设计中,广义地来讲,从一组信息向另一组信息转移的的过程,就称之为导航. 明确了定义,我们就该知道,一个好的导航设计应该让用户明白: 现在在哪儿 以前去过哪儿 将

MFC中常用类、宏、函数的简单介绍

闲来无事,整理了一下MFC中常用的类.宏.函数. 常用类 CRect:用来表示矩形的类,拥有四个成员变量:top left bottom right.分别表是左上角和右下角的坐标.可以通过以下的方法构造: CRect( int l, int t, int r, int b ); 指明四个坐标 CRect( const RECT& srcRect ); 由RECT结构构造 CRect( LPCRECT lpSrcRect ); 由RECT结构构造 CRect( POINT point, SIZE

HTML与javascript中常用编码

  在日常的前端开发工作中,我们会经常的与HTML.javascript.css等语言打交道,和一门真正的语言一样,计算机语言也有它的字母表.语法.词法.编码方式等,在这里我简单的谈一下前端HTML与javascript日常工作中常碰到的编码问题. 在计算机中,我们储存的信息都是用二进制码表示的.我们认识的.屏幕上显示的英文.汉字等符号和储存用的二进制代码的互相转换,就是编码. 有两个基本概念需要说明,charset 和 character encoding: charset ,字符集,也就是某

浅析jQuery中常用的元素查找方法总结

本篇文章是对jQuery中常用的元素查找方法进行了详细的总结和介绍,需要的朋友参考下   $("#myELement") 选择id值等于myElement的元素,id值不能重复在文档中只能有一个id值是myElement所以得到的是唯一的元素 $("div") 选择所有的div标签元素,返回div元素数组 $(".myClass")   选择使用myClass类的css的所有元素 $("*") 选择文档中的所有的元素,可以运用