08 2018 档案

多表联动筛选VBA
摘要:Private Sub Worksheet_SelectionChange(ByVal Target As Range) On Error Resume Next a = Target.Row aa = Cells(a, 6).Value bb = Cells(a, 9).Value Sheets("2").ShowAllData Sheets("2").Range("$A$1:$H$5208"... 阅读全文

posted @ 2018-08-27 17:14 lizicheng 阅读(391) 评论(0) 推荐(0) 编辑

用户职责菜单请求组
摘要:--1、用户职责查询 select fu.user_id, fu.user_name, ppf.FULL_NAME, fr.RESPONSIBILITY_ID, FR.RESPONSIBILITY_KEY, FR.RESPONSIBILITY_NAME, FU.START_DATE, FU.END_... 阅读全文

posted @ 2018-08-27 09:58 lizicheng 阅读(213) 评论(0) 推荐(0) 编辑

API及接口清单
摘要:模块 应用场景 类型 API/接口 AP 付款核销 API ap_pay_invoice_pkg.ap_pay_invoice AP 应付发票审批 API ap_approval_pkg.approval AP 预付款核销 API ap_prepay_pkg.apply_prepay_fr_prep 阅读全文

posted @ 2018-08-23 09:10 lizicheng 阅读(6742) 评论(0) 推荐(1) 编辑

独立值集导入脚本
摘要:/* --1、创建临时表 create table cux_flex_independent_temp( flex_value_set_name varchar2(200), flex_value varchar2(200), description varchar2(200), end_date_active varchar2(200), h... 阅读全文

posted @ 2018-08-23 08:54 lizicheng 阅读(206) 评论(0) 推荐(0) 编辑

报表对应程序包查询
摘要:报表游标查询 阅读全文

posted @ 2018-08-21 19:26 lizicheng 阅读(162) 评论(0) 推荐(0) 编辑

正则表达式
摘要:regexp_like() --返回满足条件的字段regexp_instr() --返回满足条件的字符或字符串的位置regexp_replace() --返回替换后的字符串regexp_substr() --返回满足条件的字符或字符串这四个函数的功能分别对应传统sql的 like操作符 和 inst 阅读全文

posted @ 2018-08-20 13:59 lizicheng 阅读(142) 评论(0) 推荐(0) 编辑

合并工作表
摘要:Sub 追加1() On Error Resume Next Application.ScreenUpdating = False Application.DisplayAlerts = False Dim a As Variant Sheets("汇总").Delete Worksheets.Add before:=Worksheets(1) ActiveSheet.N... 阅读全文

posted @ 2018-08-20 12:12 lizicheng 阅读(166) 评论(0) 推荐(0) 编辑

去重
摘要:Sub 去重() Application.ScreenUpdating = False Dim r As Range, arr With CreateObject("scripting.dictionary") a = Cells(2000, 9).End(xlUp).Row For k = 9 To 10 For Each r In Range(Cells(4, k),... 阅读全文

posted @ 2018-08-20 12:05 lizicheng 阅读(198) 评论(0) 推荐(0) 编辑

分割表
摘要:Sub 分割表() Application.ScreenUpdating = False For i = 3 To Sheets.Count a = Sheets(i).Name Sheets(i).Select Sheets(i).Copy ActiveWorkbook.SaveAs Filename:=ThisWorkbook.Path & "\" & a &... 阅读全文

posted @ 2018-08-20 08:56 lizicheng 阅读(286) 评论(0) 推荐(0) 编辑

用户职责查询
摘要:select fu.user_name, ppf.FULL_NAME, fr.RESPONSIBILITY_NAME, fur.START_DATE, fur.END_DATE from fnd_user fu, per_people_f ppf,... 阅读全文

posted @ 2018-08-16 14:47 lizicheng 阅读(138) 评论(0) 推荐(0) 编辑

用户职责请求组查询
摘要:select fu.user_name, ppf.FULL_NAME, fr.RESPONSIBILITY_NAME, fur.START_DATE, fur.END_DATE, fcp.CONCURRENT_PROGRAM_NAME, fcp.USER_CONCURRENT_PROGRAM_NAM... 阅读全文

posted @ 2018-08-16 14:47 lizicheng 阅读(145) 评论(0) 推荐(0) 编辑

AP相关表
摘要:--select * from fnd_user t where t.user_name like '%&user_name%';--17022 --应付模块表 select * from ap_invoices_all t where t.created_by=17022; select * from ap_invoice_lines_all t where t.created_by=1702... 阅读全文

posted @ 2018-08-16 13:37 lizicheng 阅读(283) 评论(0) 推荐(0) 编辑

将批次成本创建最终会计科目恢复到拟定
摘要:/* +=======================================================================+ * Undo/Reset OPM Costed Flags * +==================================================================... 阅读全文

posted @ 2018-08-16 10:07 lizicheng 阅读(1119) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示