zoukankan      html  css  js  c++  java
  • 详解EBS接口开发之供应商导入(补充)--错误信息处理

    check reject details on records of AP_SUPPLIER_INT

    SELECT s.parent_table,s.reject_lookup_code,S.LAST_UPDATE_DATE,F.MESSAGE_TEXT,F.DESCRIPTION 
    FROM ap_supplier_int_rejections s, fnd_new_messages f 
    WHERE s.reject_lookup_code = f.message_name 
    AND s.parent_table = 'AP_SUPPLIER_INT' AND f.language_code='ZHS'; 
     

    check reject details on records of AP_SUPPLIER_SITES_INT

    SELECT s.parent_table,s.reject_lookup_code,S.LAST_UPDATE_DATE,F.MESSAGE_TEXT,F.DESCRIPTION 
    FROM ap_supplier_int_rejections s, fnd_new_messages f 
    WHERE s.reject_lookup_code = f.message_name 
    AND s.parent_table = 'AP_SUPPLIER_SITES_INT' AND f.language_code='ZHS';

     

    check reject details on records of AP_SUP_SITE_CONTACT_INT

    SELECT s.parent_table,s.reject_lookup_code,S.LAST_UPDATE_DATE,F.MESSAGE_TEXT,F.DESCRIPTION 
    FROM ap_supplier_int_rejections s, fnd_new_messages f 
    WHERE s.reject_lookup_code = f.message_name 
    AND s.parent_table = 'AP_SUP_SITE_CONTACT_INT' AND f.language_code='ZHS';
    
       
    
  • 相关阅读:
    Mac 国内安装homebrew办法
    字符串方法及注释
    文件的操作
    集合
    Mac下CVS文件编码转换
    字符串格式化
    postman常用断言的一些内置方法
    get与post区别
    pygame知识点(持续更新)
    记录第一次使用
  • 原文地址:https://www.cnblogs.com/wanghang/p/6299459.html
Copyright © 2011-2022 走看看