对Oracle EBS 后台表解锁

2011年5月23日 8 comments
set echo on 
rem 该脚本是用来检验系统中谁在锁表 
column username format a13 
column object_name format a20 
column machine format a15 
column program format a20 
select A.SID,b.serial#,c.object_name,b.username,b.machine,b.program 
from v$lock a,v$session b,all_objects c 
where a.sid=b.sid and a.type in ('TM','TX') 
and c.object_id=a.id1 
order by username 

.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, “Courier New”, courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode[......]

阅读全部…

分类: 技术 标签: 459次阅读

FRM-40654 Record has been updated,Requery Record to see change.

2011年5月23日 941 comments

When adding new asset item to an existing Asset, there is a warning message box display, show "FRM-40654 Record Has Been Updated".

1. Log into SQL*Plus as apps user
username = apps
password = apps
(or use your own defined SQL*Plus apps account)

2. To see if there are any VARCHAR columns that have trailing spaces, perform the following steps in order:
a. Run the script below to create a procedure entitled CHK_TRAIL_SPACE
- procedure will check all VARCHAR2 columns in the table
b. Issue the following command:
‘set serveroutput on’
- this will allow output to b[......]

阅读全部…

分类: 技术 标签: 2,049次阅读

ORACLE 查询数据库锁相关的语句

2011年5月23日 1,010 comments

–查询那些用户,操纵了那些表造成了锁机
SELECT s.username,
       decode(l.type, ‘TM’, ‘TABLE LOCK’, ‘TX’, ‘ROW LOCK’, NULL) LOCK_LEVEL,
       o.owner,
       o.object_name,
       o.object_type,
       s.sid,
       s.serial#,
       s.terminal,
       s.machine,
       s.program,
     [......]

阅读全部…

分类: 技术 标签: 2,349次阅读

Asset Warranties and Lease Analysis

2011年5月11日 315 comments

保修功能说明:

You can define and track descriptive information on manufacturer and vendor warranties in Oracle Assets. You define the warranty information in the Asset Warranties window. You can then assign assets to these previously defined warranties in the Asset Details window. You can assign any number of assets to the same warranty. If a warranty has any assets assigned to it, you cannot update or delete the warranty. You can attach the asset to a different warranty at any time.

租赁功能说明:

Oracle Assets allows you to test leased assets in accordance with generally accepted accounting prin[......]

阅读全部…

分类: 财务 标签: 838次阅读

WebADI开发指南

2011年5月7日 888 comments

最新的EBS文档12.1.3中增加了《Oracle E-Business Suite Desktop Integration Framework Developer’s Guide》,终于结束了WebADI没有官方开发指南的局面。

Oracle EBS中数据的上传下载一直是一个比较头疼的问题,尤其是在处理用户自行批量上传数据方面,虽然可以通过二次开发实现,但从开发工作量和便捷性方面看都是一种相对别扭的方案。11i中就表现出和Office系列集成态度的WebADI是值得推荐的方案,尽管当年功能的薄弱和开发工具(?)的低能,但依旧被广泛应用。R12中这一块得到了非常大的改进,比如很多曾经用WebADI集成器来进行开发配置的功能都有了Web版本。这也算成形了吧。

虽然改进的方面有很多,个人来看下面这几块改进是非常有帮助的:

  • 集成器的定义,可以直接Web方式定义,并且各个模块(接口、布局、Uploader等)区分清晰。
  • 接口类型分为三种:Table/API-procedure/API-function,尤其对于错误返回机制作了改进。
  • 接口各字段属性验证,这个虽然可以在代码中实现,关键是此处可以直接在表单层面进行控制了。
  • LOV定义,11i中需要通过修改底表数据来实现,而今只需要定义Component即可。
  • Importer功能,可以使用同步/异步[......]

阅读全部…

分类: 技术 标签: 1,711次阅读

Overview of Asset Insurance

2011年4月10日 1,061 comments

关键语句:

  • provides a window and reports to help you manage insurance values and other insurance information for your assets
  • If an asset is partially retired, the insurance calculation process reduces the insurance value of the asset in the same proportion as the current cost is reduced for the partial retirement.【Use the Insurance Calculation Routine program to automatically update the current insurance values of your assets. The Insurance Calculation Routine program takes into account indexation factors or transactions that affect the asset value, such as cost adjustments and retirements.
  • [......]

阅读全部…

分类: 财务 标签: 2,285次阅读

美化iNove的Google自定义搜索

2011年4月10日 577 comments

iNove主题在后台的“主题选项”中设置了一个定制Google自定义搜索的功能,以优化WordPress的搜索结果。我一直没有启用这个功能,直到看到A-shun同学折腾后的搜索页面,恍然大悟,原来我也是想要搜索结果在当前主题内展示,而不是跳转到Google的页面。我也做出了一些改变,把搜索结果页面整合到了主题中,具体的效果,可以到NeoEaseLet’s whisper随便搜索些东西来比较一下。 [比较这里吧: | ]

其中参考了我爱水煮鱼的教程,如果你不是用iNove,可以直接看那篇教程。以下我就针对iNove,开始:

1、登陆到Google自定义搜索,创建你的自定义搜索。(此处略去x百字)

2、创建一个搜索结果模板。把下面代码保存为cse.php,上传至iNove主题的文件夹。(cse意为custom search engine,你可以换成其他)

<?php
/*
Template Name: cse
*/
?>
<?php get_header(); ?>
<div id="cse-search-results"></div>
<script type="text/javascript">
var googleSearchIframeName = "cse-search-[......]

阅读全部…

分类: 其他软件|技术 标签: 1,598次阅读

Oracle EBS 11.5.9系统克隆数据覆盖方法

2011年4月10日 705 comments

Oracle EBS 11.5.9系统克隆数据覆盖方法

作者: Michael Wang

创建日期: 2005-1-17

最后更新:

控制码:

版本: 1.0

审批签字:

文档控制

修改记录

日期

作者

版本

修改参考

审阅

姓名

职位

分发

拷贝.

姓名

地点

目录

文档控制 2

文档说明 4

准备工作 5

Clone Oracle EBS 11.5.9single-node to single-node 6

Clone Oracle EBS 11.5.9single-node to multi-node 10

数据覆盖 14

文档说明

此文档目的

  1. 此文档讲述Oracle EBS 11.5.9系统克隆的方法(包括single node 到single-node的clone,single-node到multi-node 的clone);
  1. 需要更改clone后的环境的目录结构和SID;
  2. 此文档讲述了使用11.5.9正式环境数据覆盖其clone后的测试环境数据的方法;

此文档所用测试[......]

阅读全部…

分类: 功能分类, 技术 标签: 1,615次阅读

物料清单详细解决方案

2011年4月10日 没有评论

XXX通讯股份有限公司手机业务

物料清单详细解决方案

文档作者: XXXX

创建日期: May 5, 2002

确认日期:

控制编码: XX-MD-BOM-D1

当前版本:

审批签字:

XX通讯手机事业部项目经理

XX项目经理

文档控制

更改记录

日期

作者

版本

更改参考

2002-5-5

XXXX

2.0

审阅

姓名

职位

签字

页数

共页

分发人员

编码

姓名

位置

签名

(9-Dec-96)

目录

文档控制 ii

更改记录 ii

审阅 ii

概述 iv

参考文档 iv

工作日历 5

业务需求 5

实现方案 5

加工部门 6

业务需求 6

实现方案 6

工艺路线 7

业务需求 7

实现方案 7

物料清单 9

业务需求 9

实现方案 9

查询与报表 12

系统提供的查询 12

系统提供的报表 12

Open and Closed Issues 13

Open Issues 13

Closed I[......]

阅读全部…

分类: 制造, 功能分类 标签: 446次阅读

Application Development Register

2011年4月10日 没有评论

Application Development Register

Author:

Creation Date: 2004/12/23

Last Updated: 2004/12/23

Version: 1.0

Reviewers/Approvals:

Document Control

Change Record

Date

Author

Version

Change Reference

Reviewers

Name

Position

Distribution

Copy No.

Name

Location

content

Document Control ii

content 2

Procedure Named Quotation Register 3

Define Concurrent Program Executable 3

Define Procedure 3

Register Request Group 4

Procedure Named Purchase Ord[......]

阅读全部…

分类: 功能分类, 技术 标签: 415次阅读