显示下一条  |  关闭

专注Oracle EBS

生活会更美好

 
 
 
 
 
 

广东省 广州市 双子座

 发消息  写留言

 
这家伙很懒,什么都没有留。
 
职    业ERP技术/ 应用顾问
交友目的结交朋友
QQ43453038
MSNlbwywz@hotmail.com
博客等级加载中...
今日访问加载中...
总访问量加载中...
最后登录加载中...
 
 
 
 
 
 
 

Oracle/PLSQL: Grant/Revoke Privileges

2011-5-10 0:25:00 阅读99 评论0 102011/05 May10

Grant Privileges on Tables

You can grant users various privileges to tables. These privileges can be any combination of select, insert, update, delete, references, alter, and index. Below is an explanation of what each privilege means.

Privilege Description

作者  | 2011-5-10 0:25:00 | 阅读(99) |评论(0) | 阅读全文>>

Demantra Issues and Troubleshooting

2011-4-18 23:35:58 阅读86 评论0 182011/04 Apr18

Refer from http://balajiabhi.blogspot.com/2009/02/demantra-issues-and-troubleshooting.html

1. Installation of the Demantra Base Application or Patches

Create a C:/Tmp folder on the machine where the setup.exe will be executed prior to the installation as this will generate a log file to this folder

作者  | 2011-4-18 23:35:58 | 阅读(86) |评论(0) | 阅读全文>>

Oracle Siebel CRM 官方实例

2011-4-14 3:04:42 阅读46 评论0 142011/04 Apr14

http://www.oracle.com/us/products/applications/crmondemand/login/crm-ondemand-login-347186.html

作者  | 2011-4-14 3:04:42 | 阅读(46) |评论(0) | 阅读全文>>

Demantra EP_LOAD

2011-4-13 4:42:23 阅读93 评论0 132011/04 Apr13

1. Insert new item,new site into t_src_sales_tmpl table, and will get error when executing ep_load_main.
insert into t_src_sales_tmpl(ACTUAL_QTY,ITEM_PRICE,SALES_DATE,DM_ITEM_CODE,DM_SITE_CODE) values(11,1.21,'12-APR-11','XBOX360','Zhuhai');
Conclusion:
Get error: ITEM OR LOCATION IN SALES source does NOT exist IN ITEMS/LOCATION
Record will

作者  | 2011-4-13 4:42:23 | 阅读(93) |评论(0) | 阅读全文>>

Demantra常用表

2011-4-2 0:26:57 阅读59 评论0 22011/04 Apr2


Sales_Data: 每个在sales_data里面的item_id和Location_ID,一定会在MDP_Matrix表中,且是与时间有关联的基表。每次在系统前端生成客制化表,同时自动关联客制化表的主键。主要字段:Location_ID,Item_ID,Sales_Date,Acutal_Quantity,Item_Price。

MDP_Matrix: Item和location的组合表,与时间无关联。主要字段:Location_ID,Item_ID。

ITEMS: 外键(ITEM_ID)至SALES_DATA和MDP_MATRIX.

T_EP_ITEM:保存ITEM_CODE和DM_ITEM_CODE_DESC,同时外键(T_EP_ITEM_EP_ID)至ITEM。

作者  | 2011-4-2 0:26:57 | 阅读(59) |评论(0) | 阅读全文>>

总账与子账的相关SQL(转)

2011-2-17 10:02:00 阅读159 评论0 172011/02 Feb17

Account Inquiry (总账与子账的关联 - Cost Management - Receiving)

select pha.segment1 po_number,
       pv.vendor_name,
       pv.segment1 Supplier_Num,
       pha.currency_code,
       pla.line_num,
       plla.shipment_num,
       pla.item_description,
       pla.unit_price,
       plla.quantity,
       plla.quantity_received,

作者  | 2011-2-17 10:02:00 | 阅读(159) |评论(0) | 阅读全文>>

修改参数文件方法V$PARAMETER

2011-2-16 17:55:51 阅读56 评论0 162011/02 Feb16

1. cd $ORACLE_HOME
2. cd dbs
3. 修改初始化文件 init<SID>.ora

alter system set utl_file_dir='/ss/sss' scopt=both;

create spfile from pfile;
create pfile from spfile;

作者  | 2011-2-16 17:55:51 | 阅读(56) |评论(0) | 阅读全文>>

utf_file写入中文出现乱码解决办法

2011-2-14 16:16:13 阅读83 评论0 142011/02 Feb14

应用UTL_FILE写入文件保存成txt格式,生成的数据文件是乱码。
代码如下:
utl_file.put_line(l_org_log_handle, lpad ('乱码测试',34, ' ') );

改正后如下代码,这不会产生乱码:
utl_file.put_line(l_org_log_handle,lpad(convert('乱码测试','ZHS16GBK'),34, ' ') );

作者  | 2011-2-14 16:16:13 | 阅读(83) |评论(0) | 阅读全文>>

添加并发程序到指定职责API

2011-1-25 15:33:07 阅读68 评论0 252011/01 Jan25

select * from fnd_responsibility_tl where responsibility_name like 'LS%Paya%Super%User%'

/

Get the request group id  from below query

select * from fnd_responsibility where responsibility_id = 50357



作者  | 2011-1-25 15:33:07 | 阅读(68) |评论(0) | 阅读全文>>

How to create database link

2011-1-21 17:42:20 阅读57 评论0 212011/01 Jan21

syntax:

删除数据库链接:drop database link linkname;

创建数据库链接:
create database link linkname
connect to username
identified by password
using 'connection string';

如果想建立全局链接,则需要使用关键字:public

create public database link linkname
connect to username
identified by password
using 'connection string';

connection string可以有两种形式:
1,在文件tnsnames.ora配置的名称:
如:

作者  | 2011-1-21 17:42:20 | 阅读(57) |评论(0) | 阅读全文>>

BULK COLLECT REF CURSOR

2011-1-13 14:33:44 阅读35 评论0 132011/01 Jan13

CREATE OR REPLACE
PACKAGE body XX_BULK_PERFORM
IS
PROCEDURE BULK_REFCUR_METHOD
AS
type my_table
IS
  TABLE OF xx_test_refcur1%rowtype;
  l_data my_table;
  l_ref sys_refcursor;
  l_begin DATE;
  l_end DATE;
  l_gap NUMBER;
BEGIN
  SELECT sysdate INTO l_begin FROM dual;
  OPEN l_ref FOR SELECT OBJECT_ID,
  OBJECT_NAME FROM xx_test_refcur1;

作者  | 2011-1-13 14:33:44 | 阅读(35) |评论(0) | 阅读全文>>

南昌铁路局开通订票电话95105105只收本地通话费

2011-1-10 13:36:29 阅读366 评论0 102011/01 Jan10

南昌铁路局开通订票电话95105105只收本地通话费
  “欢迎使用南昌铁路局电话订票系统。”电话里传来清晰的语音提示声。1月25日,南昌铁路局自助语音电话订票系统正式开通试运营,目前,该电话订票系统只能办理全票和儿童票。
  该订票系统服务于南昌铁路局管内江西、福建两省境内旅客,从即日起,旅客就可使用电话拔打本地订票电话95105105接入电话订票系统进行查询和订票业务。系统为自助式语音式服务方式,用户只需按提示音操作。系统可同时为4000个用户提供订票服务,大大减少了旅客占线等待时间。
  该电话订票系统从今天起到2月24日为试用期,系统受理时间是每天8:00-21:00,试用期过后将实行全天侯24小时受理电话订票业务,本订票系统只收取本地通话费用无需其它增值费用。
   

作者  | 2011-1-10 13:36:29 | 阅读(366) |评论(0) | 阅读全文>>

Compile Form/Pll with Telnet in R12

2010-10-29 18:50:07 阅读177 评论0 292010/10 Oct29

FMB:
frmcmp_batch userid=apps/apps module=$AU_TOP/forms/US/POXTAXDT.fmb output_file=$AU_TOP/forms/US/POXTAXDT.fmx compile_all=special batch=yes module_type=form


Note: batch=yes, there is no log information displaying, instead one errfile, such as POXTAXDT.err

frmcmp_batch userid=apps/apps module

作者  | 2010-10-29 18:50:07 | 阅读(177) |评论(0) | 阅读全文>>

How To Trace a Concurrent Request And Generate TKPROF File

2010-9-29 19:05:22 阅读93 评论0 292010/09 Sept29

Goal

This document describes how to trace a Concurrent Request and generate the TKPROF file.

Solution

1. Generate Trace File

Enable Tracing For The Concurrent Manager  Program

(a) Go to System Administrator -> Concurrent -> Program -> Define.

作者  | 2010-9-29 19:05:22 | 阅读(93) |评论(0) | 阅读全文>>

查询试图没有返回结果 解决方法

2010-9-21 21:41:44 阅读74 评论0 212010/09 Sept21

查询试图没有返回结果:
如下面sql(查询application user assign的所有responsibility):
select to_char(a.responsibility_id) id,
                     b.responsibility_name name
              from   fnd_user_resp_groups a,
                     fnd_responsibility_vl b,
         

作者  | 2010-9-21 21:41:44 | 阅读(74) |评论(0) | 阅读全文>>

查看所有日志>>

 
 
 
 
 
 

天气

 
 
模块内容加载中...
 
 
 
 
 

日历

 
 
模块内容加载中...
 
 
 
 
 
 
 
 
 
 
 
下载音乐盒  曲目表歌词秀
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

发现好博客

 
 
列表加载中...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

页脚

网易公司版权所有 ©1997-2012

   
创建博客 登录  
 关注