Oracle EBS
文章平均质量分 53
王景远
这个作者很懒,什么都没留下…
展开
-
查找描述性弹性域中的value set是在哪里维护的
begin fnd_global.apps_initialize(1013415, 65714, 20067);end;select * from FND_DESCR_FLEX_CONTEXTS where DESCRIPTIVE_FLEXFIELD_NAME = 'Address Location' and DESCRIPTIVE_FLEX_CONTEXT_C原创 2014-10-13 17:47:27 · 798 阅读 · 0 评论 -
处理RCV_TRANSACTIONS_INTERFACE的数据
ERP系统中,接收有时候未能及时生成相应的接收事务处理,多半原因是相关接收事务(接收,交货,退货)数据异常堵在接口表里,未能正确形成接收事务处理。此时在库存超级用户职责下的“事务处理状态汇总”可以看到相应的记录。常见接口表的错误:1. 接收处理处理器的异常,相应的接收记录一直是pending或者running状态。对于一直处于pending状态的,直接在po.rcv_transacti转载 2013-01-10 17:51:50 · 2675 阅读 · 0 评论 -
OM的Price List输入找不到对应库存的ITEMS的问题
EBS Version: R12.1.1 一,保证Item Validation Organization参数的值一致Item Validation Organization参数的值是填库存组织,通过这个值,可以分隔OM所能使用的库存Items。假设存在一个库存组织A,你想在OM为A里面的 Items作一个Price List,必须要保证以下两个值是一致,否则在OM的Price Lis转载 2013-01-24 19:42:11 · 513 阅读 · 0 评论 -
Profile about Item Creating
Solution: Add a profile and modify its value for YES原创 2013-01-24 15:22:31 · 398 阅读 · 0 评论 -
已有系统中采购的审批设置
0,PO/Setup/Purchasing/Document Types,查看不同订单的权限及审批流程设置1,PO/Setup/Approvals/Approval Groups, 找出合适的审批组2,带入以下query,找出organization和positionSELECT hou.NAME ou, hao.NAME org, pap.原创 2013-01-08 16:03:00 · 1196 阅读 · 0 评论 -
采购到入库所经历的表
--采购到入库所经历的表--0.请购单--创建请购单方式有--a.从外挂系统导入请购的接口表PO_REQUISITIONS_INTERFACE_ALL,并允许请求(名称:导入申请)select * from po_requisitions_interface_all where interface_source_code = 'TEST KHJ';转载 2012-12-26 22:26:37 · 578 阅读 · 0 评论 -
销售到出仓所经历的表
销售订单要经历登记、发放、挑库、交货四个主要环节,有些表在各个环节都有不同的特性,作者罗列了几个主要的常用的表,其它好象还有些货物路线、停靠之类的信息表则没有涉及。下面是销售订单的四个主要环节和每个环节用到的常用表:一、登记1、oe_order_headers_all --订单头信息表 2、oe_order_lines_all--header_id=转载 2012-12-26 21:20:17 · 907 阅读 · 0 评论 -
wsh_delivery_details.released_status
SELECT lookup_type, lookup_code, meaning, description, decode(view_application_id, 660, 'ONT', 665, 'WSH',原创 2012-12-25 20:44:49 · 1187 阅读 · 0 评论 -
WMS_LICENSE_PLATE_NUMBERS.LPN_CONTEXT
WMS_LICENSE_PLATE_NUMBERS.LPN_CONTEXTLOOKUP_TYPELOOKUP_CODEMEANINGWMS_LPN_CONTEXT1In InventoryWMS_LPN_CONTEXT2In WIPWMS_LPN_CONTEXT3In ReceivingWMS_转载 2012-12-12 17:30:15 · 505 阅读 · 0 评论 -
Useful Table
NewProgramerORACLE EBScall fnd_global.APPS_INITIALIZE(1318,50583,401)select fnd_profile.VALUE('ORG_ID') FROM DUALselect * from hr_operating_units hou where hou.organization_id=204--fndsele转载 2012-12-12 17:33:03 · 820 阅读 · 0 评论 -
Find OU and Add resp
SELECT * FROM org_organization_definitions WHERE organization_code='C26' DECLARE A BOOLEAN;BEGIN -- FND_USER_PKG.CREATEUSER('502160835', '', ''); FND_USER_PKG.ADDRESP('502160835',原创 2012-12-10 15:44:05 · 378 阅读 · 0 评论 -
add resp在数据库中直接添加职责
DECLARE A BOOLEAN;BEGIN -- FND_USER_PKG.CREATEUSER('502160835', '', ''); FND_USER_PKG.ADDRESP('502160835', 'SYSADMIN', 'SYSTEM_ADMINISTRATOR',原创 2012-12-03 21:16:18 · 416 阅读 · 0 评论 -
change organization
when use the change organization to change the org, you can't change org_id because the profile of org_id is confirmed when enter a resp, but you can chang the mfg_organization_id because the value of原创 2012-06-21 12:03:57 · 628 阅读 · 0 评论 -
Sqlloader Shell
#!/bin/ksh#Define variableV_NUM_COUNTER=0 #Exitif thereisno parameter passed.if[$#=0]then echo "=========================================" echo "No parms were passed to the She原创 2012-06-18 11:39:48 · 460 阅读 · 0 评论 -
SO到订单行Closed
--enteredSELECT * FROM inv.mtl_sales_orders WHERE segment1 = 1054627; --sales_order_id:935491SELECT h.flow_status_code, h.* --header_id:6577988 --flow_status_code:entered FROM ont.oe_order原创 2013-01-04 22:24:51 · 2009 阅读 · 0 评论 -
PO到RTV
--POR entered --3 records applied and savedSELECT rh.authorization_status, rh.requisition_header_id, rh.* FROM po_requisition_headers_all rh WHERE segment1 = '1952058' AND o原创 2013-01-10 17:39:50 · 2611 阅读 · 0 评论 -
Types of Organizations
Set of BooksA financial reporting entity that uses a particular chart of accounts,functional currency, and accounting calendar. Oracle General Ledgersecures transaction information (such as jour翻译 2014-09-30 17:49:12 · 934 阅读 · 0 评论 -
编译总帐弹性域出现APP-FND-00668错误
错误内容如下:APP-FND-00668: The data that defines the flexfield on this field may be inconsistent. Inform. yoursystem administrator that the function: FDFRKS could not find the structure definition for原创 2014-10-11 23:39:47 · 1289 阅读 · 0 评论 -
查询oracle中所有用户信息
1.查看所有用户:select * from dba_users; select * from all_users; select * from user_users;2.查看用户或角色系统权限(直接赋值给用户或角色的系统权限):select * from dba_sys_privs; select * from user_sys_privs; (查看当前用转载 2014-10-11 00:07:09 · 597 阅读 · 0 评论 -
Oracle EBS环境下查找数据源(Form篇)
关于在Oracle EBS环境下如何查找数据源的文章几年前就已经开始整理,但是其中关于OAF方面的一直没有整理,导致这份文档一直残缺不全,有很多次同事都向我索要相关文档都未能如愿以偿,新的一届培训工作再次启动,为了自己也能够“一劳永逸”,将相关内容整理发出。在Oracle E-Business Suite 环境下进行二次开发,要求技术顾问对EBS系统的结构和实现有一定的了解,同时熟转载 2014-09-30 19:22:09 · 806 阅读 · 0 评论 -
FRM-92050
如果 IE8 打开form窗口时报错误信息:提示“Internet Explorer 已对此页面进行了修改,以帮助阻止跨站脚本。单击此处,获取详细信息...”或 "R12 IE8中出FRM-92050 连接服务器失败"。解决方法:可以把EBS站点加到信任站点中,并修改信任站点的“自定义级别”,在“安全设置”对话框中找到“启用 XSS 筛选器”,改为“禁用”即可。原创 2014-09-28 16:43:48 · 830 阅读 · 0 评论 -
EBS Org
Change Organization改变的是profile:MFG_ORGANIZATION_ID,原创 2013-10-15 17:32:40 · 945 阅读 · 0 评论 -
pl/sql developer配置
有一段时间没搞EBS了,今天听说不加工资,于是乎不得不重操旧业,两年的工作经验,起帆远航。pl/sql developer的使用必须安装oracle客户端,根据安装的客户端不同,修改D:\orant\NET80\ADMIN\tnsname.ora文件,或D:\OraHome_1\network\ADMIN\tnsnames.ora,或D:\DevSuiteHome_1\NETWORK\ADMI原创 2013-08-02 16:17:55 · 475 阅读 · 0 评论 -
6078836
p3006854_9204_linux.zip6078836 Install another bug file,这个包重要 下面是具体安装步骤:[root@ebs patch-for-R11]# [root@ebs patch-for-R11]# mv /usr/lib/libdb.so.2 /usr/lib/libdb.so.2.6078836mv: cannot转载 2013-03-19 14:39:10 · 820 阅读 · 0 评论 -
For RW-50015 error when install EBS
solution 1:那么应该就是Http服务没有启动的问题,手工把这个服务启动起来,再retry问题就解决了。 cd /home/oracle/erp/apps/tech_st/10.1.3/Apache/Apache/bin apachectl startsolution 2:在EBS12安装按正常的流程安装以后,在最终验证阶段出现了如下的问题:rw-50015 err转载 2013-03-18 12:48:39 · 5666 阅读 · 1 评论 -
LINUX下配置ORACLE EBS R12
硬件准备:server CPUInterl p2.8GMemory2GHDD2*80G软件准备:1. 虚拟机VMware.GSX.Server.v3.2.1.19281.Incl.Keymaker-ZWT因为在网上看到篇文章说只有S转载 2013-03-04 10:28:48 · 2296 阅读 · 0 评论 -
Standard SO and PO
1, Sales Order: the line status how to changed from booked to closed 1,when you entered the SO, there will be 3 records applied and saved. example as below:1. SELECT * FROM inv.mtl_sales_order原创 2013-03-04 16:36:47 · 910 阅读 · 0 评论 -
根据描述性弹性域的标题查找描述性弹性域表和列 .
/*根据描述性弹性域的标题查找描述性弹性域表和列*/ --select fnd_dfv.title, fnd_dfv.descriptive_flexfield_name, fnd_dfv.application_table_name, fnd_dfu.application_column_name, fnd_dfu.form转载 2013-01-18 17:45:01 · 634 阅读 · 0 评论 -
如何在Form中使用描述性弹性域 .
弹性域包括键弹性域和描述性弹性域,其开发方法和用途均不一样,在此主要介绍描述性弹性域在Form中的开发方法。 描述性弹性域的开发步骤主要包括: 1、创建表,表中包括弹性域结构列和弹性域列 2、创建视图,视图中包括弹性域相关列(非必需) 3、使用AD_DD工具包注册表和表列 4、在Oracle EBS系统中注册描述性弹性域 5、启用描述性弹转载 2013-01-18 17:43:45 · 1580 阅读 · 0 评论 -
get explain plan
要先cd到/u01/oracle/DV11/dv11db/9.2.0/admin/DV11_prcsgisol03/udump目录下,再执行tkprof tracefile outputfile appenv.sh所在目录为:/rdbms/apps1159 使用tkprof命令在DV11要先运行一下环境变量的文件. ./appenv.sh $env $ba原创 2012-06-18 11:30:54 · 410 阅读 · 0 评论 -
set EBS environment in client
fnd_global.APPS_INITIALIZE(user_id => GLOBAL.USER_ID, resp_id => GLOBAL.RESP_ID, resp_appl_id => GLOBAL.RESP_APPL_ID);原创 2012-06-18 11:23:39 · 311 阅读 · 0 评论 -
oracle 日期常用函數 (ADD_MONTHS,LAST_DAY,NEXT_DAY,MONTHS_BETWEEN,NEW_TIME,ROUND,TRUNC)
日期運算函數 2 3ADD_MONTHS(d,n) 4 --時間點d再加上n個月 5 6 ex. 7 select sysdate, add_months(sysdate,2) aa from dual; 8 9转载 2012-06-01 16:47:53 · 504 阅读 · 0 评论 -
rtf format statment
①有标记,且值不为空...②有标记,值为空...③无标记...原创 2012-05-28 17:14:42 · 410 阅读 · 0 评论 -
select data from another database
SELECT mi.sr_inventory_item_id, mi.plan_id, mi.sr_instance_id, mi.organization_id, TO_CHAR (SUM (md.using_requirement_quantity) / 3) AS rate FROM msc.msc_demands@xxbetsytobi转载 2012-05-28 17:03:46 · 455 阅读 · 0 评论 -
Explain Plan
query1:Select value from v$parameter where name = 'user_dump_dest'; query2: Select oracle_process_id from fnd_concurrent_requests where request_id = 2754278 command:tkprof dv11_ora_783原创 2012-05-08 13:07:42 · 427 阅读 · 0 评论 -
Oracle REP-error
REP-1219: 'Margin' has no size -- length or width is zero.the error is from the template of the report builder itself-------------------------------------------------------------------------------原创 2012-04-20 11:01:25 · 1260 阅读 · 0 评论 -
predefined Serial item
这种类型的item必须提前定义好item的serial,可以用ctl+l找到 Generate Serial Numbers function 写入item name和item的数量这两个参数,之后就可以进行各种操作了。原创 2012-03-14 18:42:05 · 350 阅读 · 0 评论 -
并发程序执行sql loader
8,创建临时表 9,csv数据文件10,ctl文件30,shell文件40,注册executable50,注册program60,挂到相应职责上的request group上70,在此职责上执行此请求,把源数据导入到临时表中---------------------------------------------------------------85,执行自己原创 2012-03-06 18:53:25 · 1796 阅读 · 0 评论 -
利用Oracle Items Open Interfaces导入物料信息
1.apps下创建临时表,用以存储新导入的数据 -- Create tablecreate table INV.STD_MTL_SYSTEM_ITEMS_2205_B( SET_PROCESS_ID NUMBER not null, ITEM_DESCRIPTION VARCHAR2(240) not null, ITEM_SEGMENT1 VARC转载 2012-02-16 23:39:23 · 794 阅读 · 0 评论 -
create tablespace user
CREATE TABLESPACE tablespace [DATAFILE clause] [MINIMUM EXTENT integer[K|M]] [BLOCKSIZE integer [K]] [LOGGING|NOLOGGING] [DEFAULT storage_clause ] [ONLINE|OFFLINE] [PERMANENT|TEMP转载 2012-02-23 18:02:21 · 701 阅读 · 0 评论