壹佰网|ERP100 - 企业信息化知识门户

 找回密码
 注册

QQ登录

只需一步,快速开始

楼主: 纵横四海

ERP系统常用SQL集锦

    [复制链接]
发表于 2006/7/6 20:06:35 | 显示全部楼层
发表于 2006/7/22 10:22:32 | 显示全部楼层
谢谢分享,楼主好人吖~~~
 楼主| 发表于 2006/9/12 00:32:15 | 显示全部楼层

AR客户联系人的SQL


  1. begin
  2. fnd_client_info.set_org_context(90);
  3. end;

  4. select a.customer_id,
  5.        d.address_id,
  6.        a.customer_number 客户编号,
  7.        a.customer_name 客户名称,
  8.        a.attribute1 与公司关系,
  9.        a.attribute2 渠道,
  10.        a.attribute3 行业,
  11.        b.description 一级行业分类,
  12.        c.description 二级行业分类,
  13.        d.status 状态,
  14.        d.country 国家,
  15.        d.address1 地址,
  16.        d.address2 地址2,
  17.        d.address3 地址3,
  18.        d.address4 地址4,
  19.        e.last_name 联系人,
  20.        f.phone_type 联系方式,
  21.        f.area_code 地区代码,
  22.        f.phone_number 电话号码
  23.   from apps.ra_customers a,
  24.        (select t.FLEX_VALUE, t.DESCRIPTION
  25.           from apps.FND_FLEX_VALUES_VL t
  26.          where t.FLEX_VALUE_SET_ID = 1009676) b,
  27.        (select t.FLEX_VALUE, t.DESCRIPTION
  28.           from apps.FND_FLEX_VALUES_VL t
  29.          where t.FLEX_VALUE_SET_ID = 1009735) c,
  30.        apps.AR_ADDRESSES_V d,
  31.        apps.ar_contacts_v e,
  32.        apps.ra_PHONES f
  33. where a.customer_number like 'AD_%'
  34.    and b.flex_value(+) = a.attribute4
  35.    and c.flex_value(+) = a.attribute5
  36.    and d.customer_id = a.customer_id
  37.    and e.address_id = d.address_id
  38.    and e.contact_id = f.contact_id


复制代码
发表于 2006/9/12 09:05:50 | 显示全部楼层
不顶对不起党和人民!
发表于 2006/9/12 10:57:07 | 显示全部楼层
不错的东东..收藏了... 我也发几个..

FIND JOBS
col os form A6
col program form A50
set pages 200
set lines 200
col time form 9999
col "Req Id" form 9999999
col "Prg Id" form 999999
set recsep off
select a.request_id "Req Id",a.concurrent_program_id "Prg Id"
      ,a.phase_code,b.os_process_id "OS"
        ,request_date,actual_start_date
        ,actual_completion_date
      ,(nvl(actual_completion_date,sysdate)-actual_start_date)*1440 "Time"
      ,c.concurrent_program_name||' - '||
       c.concurrent_program_name "program"
from APPLSYS.fnd_Concurrent_requests a,APPLSYS.fnd_concurrent_processes b
    ,APPLSYS.fnd_concurrent_programs c
where a.controlling_manager = b.concurrent_process_id
  and a.concurrent_program_id = c.concurrent_program_id
  and a.program_application_id = c.application_id
  and a.request_id = &req_id
--and a.phase_code in ('R','T')
order by 5
/
FIND OPEN CURSOR

set verify off

accept sid      prompt 'Please enter the sid        : '

select /*+ ordered */
       a.sid, b.first_load_time, b.executions, b.disk_reads, b.buffer_gets, b.sql_text
from v$open_cursor a,
     v$sqlarea b
where a.sid = &sid
  and a.hash_value = b.hash_value
  and a.address = b.address
order by b.executions desc
 楼主| 发表于 2006/10/12 20:05:21 | 显示全部楼层

查看AP发票的撤销人

select t.invoice_num, t.cancelled_by, t.cancelled_by_display
  from ap_invoices_v t
where t.gl_date between to_date('20060701', 'YYYYMMDD') and
       to_date('20060930', 'YYYYMMDD')
   and t.cancelled_by is not null;

begin
  fnd_client_info.set_org_context(560);
end;
发表于 2006/10/19 10:31:18 | 显示全部楼层
请问有有关hrms的相关文档吗?
有的话共享下哟 ,非常感谢也!
 楼主| 发表于 2006/10/20 14:50:14 | 显示全部楼层

更改AR发票会计科目

update ra_cust_trx_line_gl_dist_all t
   set t.code_combination_id = 374510
where t.customer_trx_id in
       (select customer_trx_id
          from RA_CUSTOMER_TRX_ALL t
         where t.trx_number >= 'SFQC20061001001174'
           and t.trx_number <= 'SFQC20061001012968')
   and t.customer_trx_line_id is not null;
发表于 2006/10/26 12:55:50 | 显示全部楼层
个个是高手
发表于 2006/10/26 20:33:39 | 显示全部楼层
经典语句啊
发表于 2006/10/31 15:18:16 | 显示全部楼层

请问哪位有Knowledge Xpert for PLSQL的KEY,能否分享一下。

请问哪位有Knowledge Xpert for PLSQL的KEY,能否分享一下。

谢谢
 楼主| 发表于 2006/11/2 09:28:41 | 显示全部楼层

请求正在执行的sql

SELECT to_char(s.sid) || ',' || to_char(s.serial#), sql_text
  FROM applsys.fnd_concurrent_requests r,
       v$process                       p,
       v$session                       s,
       v$sqltext_with_newlines         sqlt
WHERE r.oracle_process_id = p.spid
   AND p.addr = s.paddr(+)
   AND s.sql_address = sqlt.address(+)
   AND s.sql_hash_value = sqlt.hash_value(+)
   AND r.request_id = 2641173
ORDER BY piece;
发表于 2006/11/2 13:43:39 | 显示全部楼层

怎样设置把物料由IDM设成EXPENSE呢?

怎样设置把物料由IDM设成EXPENSE呢?
发表于 2006/11/7 08:18:06 | 显示全部楼层
沒有理由不學啊!沒有理由不進步啊!感謝各位。
发表于 2006/11/9 17:02:07 | 显示全部楼层
非常感謝樓主
 楼主| 发表于 2006/11/15 16:39:29 | 显示全部楼层

员工上下级关系SQL


  1. select a.LAST_NAME 员工姓名,
  2.        a.PERSON_ID 员工ID,
  3.        a.SEX 性别,
  4.        a.EMAIL_ADDRESS 电子邮件,
  5.        b.ORGANIZATION_ID,
  6.        aa.LAST_NAME 主管姓名,
  7.        aa.EMAIL_ADDRESS 主管email
  8.   from per_people_f a, PER_ASSIGNMENTS_F b, per_people_f aa
  9. where a.PERSON_ID = b.person_id
  10.    and sysdate between b.EFFECTIVE_START_DATE and b.EFFECTIVE_END_DATE
  11.    and sysdate between a.EFFECTIVE_START_DATE and a.EFFECTIVE_END_DATE
  12.    and sysdate between aa.EFFECTIVE_START_DATE and aa.EFFECTIVE_END_DATE
  13.    and a.PERSON_TYPE_ID <> 9
  14.    and b.SUPERVISOR_ID = aa.PERSON_ID

复制代码
发表于 2006/11/23 11:57:30 | 显示全部楼层
大家好,新手报到
发表于 2006/11/23 14:51:11 | 显示全部楼层
发表于 2006/11/26 00:57:51 | 显示全部楼层
四海真的是太好了!
发表于 2007/1/29 13:30:38 | 显示全部楼层

誰知道如何抓取request_group的資料!~~

我想知道在某個reponsibility底下的request_group有什麼report!
請問有誰知道該怎麼抓呢?
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|小黑屋|手机版|壹佰网 ERP100 ( 京ICP备19053597号-2 )

Copyright © 2005-2012 北京海之大网络技术有限责任公司 服务器托管由互联互通
手机:13911575376
网站技术点击发送消息给对方83569622   广告&合作 点击发送消息给对方27675401   点击发送消息给对方634043306   咨询及人才点击发送消息给对方138011526

GMT+8, 2025/11/29 20:54 , Processed in 0.023465 second(s), 15 queries , File On.

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表