随笔分类 -  EBS

EBS
摘要:模块: WIP 相关表:inv.mtl_material_transactions 物料事务处理表 (transaction_source_id 与 we.wip_entity_id 连接) inv.mtl_transaction_lot_numbers 物料事务处理批次号表(transaction 阅读全文
posted @ 2024-03-20 08:47 Iven_lin 阅读(160) 评论(0) 推荐(0) 编辑
摘要:EBS 统计特定开头的请求 select t.user_concurrent_program_name, b.concurrent_program_name from fnd_concurrent_programs_tl t, fnd_concurrent_programs b where b.ap 阅读全文
posted @ 2024-03-20 08:45 Iven_lin 阅读(7) 评论(0) 推荐(0) 编辑
摘要:-- EBS 修改EBS账号密码 DECLARE l_success boolean; BEGIN l_success := FND_USER_PKG.ChangePassword('OPERATIONS', 'welcome123'); IF l_success THEN DBMS_OUTPUT. 阅读全文
posted @ 2024-03-19 13:46 Iven_lin 阅读(80) 评论(0) 推荐(0) 编辑
摘要:CREATE OR REPLACE FUNCTION cux_trans_source(p_trans_id NUMBER) RETURN VARCHAR2 IS ln_type_id NUMBER; ln_source_line_id NUMBER; ln_trx_source_line_id N 阅读全文
posted @ 2024-03-19 11:53 Iven_lin 阅读(10) 评论(0) 推荐(0) 编辑
摘要:inv_quantity_tree_pub.query_quantities(p_api_version_number => 1.0, x_return_status => l_return_status, x_msg_count => l_msg_count, x_msg_data => l_ms 阅读全文
posted @ 2024-03-19 09:35 Iven_lin 阅读(103) 评论(0) 推荐(0) 编辑
摘要:SELECT * FROM xle_entity_profiles; 阅读全文
posted @ 2024-03-19 09:33 Iven_lin 阅读(10) 评论(0) 推荐(0) 编辑
摘要:WSH_NEW_DELIVERY_ACTIONS.Confirm_Delivery(p_del_rows => l_delivery_id_tab, p_action_flag => l_action_flag, p_intransit_flag => l_intransit_flag, p_clo 阅读全文
posted @ 2024-03-19 09:32 Iven_lin 阅读(13) 评论(0) 推荐(0) 编辑
摘要:--lv_msg_count : 为api返回参数,为消息的个数。 --根据消息的具体情况,循环次数要做相应调整。加大次数,消息内容就多,反之则少.if lv_msg_count > 0 then lv_mesg := chr(10) || substr(fnd_msg_pub.get(fnd_ms 阅读全文
posted @ 2024-03-19 09:29 Iven_lin 阅读(11) 评论(0) 推荐(0) 编辑
摘要:create or replace procedure get_inv_quantity(p_organization_id in number, p_inventory_item_id in number, p_lot_number in varchar2, p_subinventory_code 阅读全文
posted @ 2024-03-19 09:24 Iven_lin 阅读(36) 评论(0) 推荐(0) 编辑
摘要:--erp系统里的bom展开函数: declare l_grp_id number; l_session_id number; l_org_id number; l_levels_to_explode number := 10; l_module number default 2; -- bom = 阅读全文
posted @ 2024-03-19 09:21 Iven_lin 阅读(13) 评论(0) 推荐(0) 编辑
摘要:1.根据科目取得或创建CCID. fnd_flex_ext.get_segs('SQLGL', 'GL#', gcc.chart_of_accounts_id, gcc.code_combination_id); fnd_flex_ext.get_ccid(application_short_nam 阅读全文
posted @ 2024-03-19 09:18 Iven_lin 阅读(15) 评论(0) 推荐(0) 编辑
摘要:DECLARE l_last_scheduled_close_date DATE; l_le_sysdate DATE; — l_prior_period_open BOOLEAN; l_new_acct_period_id NUMBER; l_duplicate_open_period 阅读全文
posted @ 2024-03-19 09:15 Iven_lin 阅读(9) 评论(0) 推荐(0) 编辑
摘要:--BOM_EXPLOSION_temp是一个临时表,在展BOM的时候,是一个很有用的表,存放了组成料件层次。默认时是没有记录的,加入下列的语句: DECLARE l_group_id NUMBER; l_error_message VARCHAR2(1000); l_error_code NUMB 阅读全文
posted @ 2024-03-19 09:10 Iven_lin 阅读(44) 评论(0) 推荐(0) 编辑
摘要:--组织表select * from hr_organization_units_v--AR 事物处理安全性限制begin mo_global.set_policy_context('S', '82');end; -- 备份事物处理create table bak.RA_CUSTOMER_TRX_A 阅读全文
posted @ 2024-03-19 09:05 Iven_lin 阅读(13) 评论(0) 推荐(0) 编辑
摘要:库存模块select oap.status 关闭状态, oap.period_name 所属期间, oap.organization_id 组织id, (select name from hr_organization_units x where x.organization_id = oap.or 阅读全文
posted @ 2024-03-19 09:03 Iven_lin 阅读(6) 评论(0) 推荐(0) 编辑
摘要:select * from po_document_types_all_tl 阅读全文
posted @ 2024-03-18 22:10 Iven_lin 阅读(15) 评论(0) 推荐(0) 编辑
摘要:select appl.product_code 应用, appl.application_short_name 应用简称, gld.name 帐套, gps.period_name 期间, gps.closing_status 期间状态 --期间状态:'N' => 从未打开,'F' => 将来可输 阅读全文
posted @ 2024-03-18 22:09 Iven_lin 阅读(52) 评论(0) 推荐(0) 编辑
摘要:select * from po_lookup_codes polc where polc.lookup_type = 'AUTHORIZATION STATUS'; 阅读全文
posted @ 2024-03-18 22:05 Iven_lin 阅读(31) 评论(0) 推荐(0) 编辑
摘要:解决方法:把一揽子采购协议或者PO的状态改成暂挂,重新审批 阅读全文
posted @ 2024-03-18 21:59 Iven_lin 阅读(32) 评论(0) 推荐(0) 编辑
摘要:接收入库的种类接收入库可以按照数据来源分为2种: 1. 对于po订单以及发放的接收入库; 2. 对于内部请购单生成的sales order(后面的部分简称so)的接收入库; 接收入库还可以按照入库方式分为3种: 1. 直接入库:接收后自动入库; 2. 标准入库:先接收,后入库,分两个步骤; 3. 需 阅读全文
posted @ 2024-03-18 21:43 Iven_lin 阅读(160) 评论(0) 推荐(0) 编辑

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