--创建供应商地址上的电话号码 created by jenrry 20170419
DECLARE
l_return_status VARCHAR2(1);
l_msg_count NUMBER;
l_msg_data VARCHAR2(1000);
l_vendor_contact_rec hz_contact_point_v2pub.contact_point_rec_type;
l_vendor_edi_rec hz_contact_point_v2pub.edi_rec_type;
l_vendor_email_rec hz_contact_point_v2pub.email_rec_type;
l_vendor_phone_rec hz_contact_point_v2pub.phone_rec_type;
l_vendor_fax_rec hz_contact_point_v2pub.telex_rec_type;
l_vendor_web_rec hz_contact_point_v2pub.web_rec_type;
l_vendor_contact_id NUMBER; BEGIN
fnd_global.apps_initialize(0, 50737, 20005);
mo_global.init('SQLAP');
--
l_vendor_contact_rec.owner_table_name := 'HZ_PARTY_SITES';
l_vendor_contact_rec.owner_table_id := 7037;
l_vendor_contact_rec.contact_point_type := 'PHONE';
l_vendor_contact_rec.created_by_module := 'POS_SUPPLIER_MGMT'; l_vendor_phone_rec.phone_area_code := '010';
l_vendor_phone_rec.phone_number := '017809091134';
l_vendor_phone_rec.phone_line_type := 'GEN';--电话 hz_contact_point_v2pub.create_contact_point(p_init_msg_list => fnd_api.g_true,
p_contact_point_rec => l_vendor_contact_rec,
p_edi_rec => l_vendor_edi_rec,
p_email_rec => l_vendor_email_rec,
p_phone_rec => l_vendor_phone_rec,
p_telex_rec => l_vendor_fax_rec,
p_web_rec => l_vendor_web_rec,
x_contact_point_id => l_vendor_contact_id,
x_return_status => l_return_status,
x_msg_count => l_msg_count,
x_msg_data => l_msg_data);
dbms_output.put_line('l_return_status:' || l_return_status);
dbms_output.put_line('l_msg_count:' || l_msg_count);
dbms_output.put_line('l_msg_data:' || l_msg_data);
dbms_output.put_line('l_vendor_contact_id:' || l_vendor_contact_id);
dbms_output.put_line(fnd_msg_pub.get_detail(1, 'F'));
END; --创建供应商地址上的传真号码
DECLARE
l_return_status VARCHAR2(1);
l_msg_count NUMBER;
l_msg_data VARCHAR2(1000);
l_vendor_contact_rec hz_contact_point_v2pub.contact_point_rec_type;
l_vendor_edi_rec hz_contact_point_v2pub.edi_rec_type;
l_vendor_email_rec hz_contact_point_v2pub.email_rec_type;
l_vendor_phone_rec hz_contact_point_v2pub.phone_rec_type;
l_vendor_fax_rec hz_contact_point_v2pub.telex_rec_type;
l_vendor_web_rec hz_contact_point_v2pub.web_rec_type;
l_vendor_contact_id NUMBER; BEGIN
fnd_global.apps_initialize(0, 50737, 20005);
mo_global.init('SQLAP');
--
l_vendor_contact_rec.owner_table_name := 'HZ_PARTY_SITES';
l_vendor_contact_rec.owner_table_id := 7037;
l_vendor_contact_rec.contact_point_type := 'PHONE';
l_vendor_contact_rec.created_by_module := 'POS_SUPPLIER_MGMT'; l_vendor_phone_rec.phone_area_code := '010';
l_vendor_phone_rec.phone_number := '017809091134';
l_vendor_phone_rec.phone_line_type := 'FAX';--传真 hz_contact_point_v2pub.create_contact_point(p_init_msg_list => fnd_api.g_true,
p_contact_point_rec => l_vendor_contact_rec,
p_edi_rec => l_vendor_edi_rec,
p_email_rec => l_vendor_email_rec,
p_phone_rec => l_vendor_phone_rec,
p_telex_rec => l_vendor_fax_rec,
p_web_rec => l_vendor_web_rec,
x_contact_point_id => l_vendor_contact_id,
x_return_status => l_return_status,
x_msg_count => l_msg_count,
x_msg_data => l_msg_data);
dbms_output.put_line('l_return_status:' || l_return_status);
dbms_output.put_line('l_msg_count:' || l_msg_count);
dbms_output.put_line('l_msg_data:' || l_msg_data);
dbms_output.put_line('l_vendor_contact_id:' || l_vendor_contact_id);
dbms_output.put_line(fnd_msg_pub.get_detail(1, 'F'));
END;

  创建供应商联系人目录的联系人信息

DECLARE
l_return_status VARCHAR2(1);
l_msg_count NUMBER;
l_msg_data VARCHAR2(1000);
l_vendor_contact_rec ap_vendor_pub_pkg.r_vendor_contact_rec_type;
l_vendor_contact_id NUMBER;
l_per_party_id NUMBER;
l_rel_party_id NUMBER;
l_rel_id NUMBER;
l_org_contact_id NUMBER;
l_party_site_id NUMBER;
BEGIN
fnd_global.apps_initialize(1670, 50728, 200);
mo_global.init('SQLAP');
--
l_vendor_contact_rec.vendor_id := 133003;
l_vendor_contact_rec.person_last_name := '赵六';
l_vendor_contact_rec.person_title := '销售经理'; l_vendor_contact_rec.area_code := '010';
l_vendor_contact_rec.phone := '12345678';
l_vendor_contact_rec.fax_area_code := '010';
l_vendor_contact_rec.fax_phone := '12345678';
l_vendor_contact_rec.email_address := 'xxx@163.com';
ap_vendor_pub_pkg.create_vendor_contact(p_api_version => 1.0,
p_init_msg_list => fnd_api.g_true,
p_commit => fnd_api.g_false,
p_validation_level => fnd_api.g_valid_level_full,
x_return_status => l_return_status,
x_msg_count => l_msg_count,
x_msg_data => l_msg_data,
p_vendor_contact_rec => l_vendor_contact_rec,
x_vendor_contact_id => l_vendor_contact_id,
x_per_party_id => l_per_party_id,
x_rel_party_id => l_rel_party_id,
x_rel_id => l_rel_id,
x_org_contact_id => l_org_contact_id,
x_party_site_id => l_party_site_id);
dbms_output.put_line('l_return_status:' || l_return_status);
dbms_output.put_line('l_msg_count:' || l_msg_count);
dbms_output.put_line('l_msg_data:' || l_msg_data);
dbms_output.put_line('l_vendor_contact_id:' || l_vendor_contact_id);
dbms_output.put_line('l_per_party_id:' || l_per_party_id);
dbms_output.put_line('l_rel_party_id:' || l_rel_party_id);
dbms_output.put_line('l_rel_id:' || l_rel_id);
dbms_output.put_line('l_org_contact_id:' || l_org_contact_id);
dbms_output.put_line('l_party_site_id:' || l_party_site_id);
dbms_output.put_line(fnd_msg_pub.get_detail(1, 'F'));
END;

  创建供应商银行账户/创建银行账户

--创建供应商银行账户 created by jenrry 20170419
DECLARE
l_return_status VARCHAR2(1);
l_msg_count NUMBER;
l_msg_data VARCHAR2(1000);
x_bank_acct_id number;
l_joint_acct_owner_id number;
l_ext_bank_acct_rec iby_ext_bankacct_pub.extbankacct_rec_type;
x_response_rec iby_fndcpt_common_pub.result_rec_type; BEGIN
fnd_global.apps_initialize(0, 50737, 20005);
mo_global.init('SQLAP');
--
l_ext_bank_acct_rec.bank_account_name := '银行账号006';
l_ext_bank_acct_rec.bank_account_num := '20170418006';
l_ext_bank_acct_rec.acct_owner_party_id := 9057;
l_ext_bank_acct_rec.country_code := 'CN';
l_ext_bank_acct_rec.bank_id := 5050;
l_ext_bank_acct_rec.branch_id := 5051;
l_ext_bank_acct_rec.START_DATE := sysdate; iby_ext_bankacct_pub.create_ext_bank_acct(p_api_version => 1.0,
p_init_msg_list => fnd_api.G_FALSE,
p_ext_bank_acct_rec => l_ext_bank_acct_rec,
p_association_level => 'AO',
p_supplier_site_id => 3007,
p_party_site_id => 7037,
p_org_id => 142,
p_org_type => 'OPERATING_UNIT', --Bug7136876: new parameter
x_acct_id => x_bank_acct_id,
x_return_status => l_return_status,
x_msg_count => l_msg_count,
x_msg_data => l_msg_data,
x_response => x_response_rec);
dbms_output.put_line('l_return_status:' || l_return_status);
dbms_output.put_line('l_msg_count:' || l_msg_count);
dbms_output.put_line('l_msg_data:' || l_msg_data);
dbms_output.put_line('x_bank_acct_id:' || x_bank_acct_id);
dbms_output.put_line(fnd_msg_pub.get_detail(1, 'F')); END;
/*
The details of the mandatory parameters to be passed for each level is given below: 1.Supplier level: p_association_level should have 'S' (case sensitive)
2.Supplier site level: p_association_level should have 'SS'(case sensitive)
p_supplier_site_id should have the supplier id.
3.Address level: p_association_level should have 'A'(case sensitive)
p_party_site_id should have the party_site_id of particular address
4.Address- operating unit: p_association_level should have 'AO'(case sensitive)
p_party_site_id should have the party_site_id of the address
p_org_id should have the org_id.
*/

  

Oracle EBS AP 供应商API的更多相关文章

  1. Oracle EBS AP 供应商取值

    SELECT --nvl(substr(po.vendor_name,1,instr(po.vendor_name,',',1)-1),po.vendor_name) vendor_name, po. ...

  2. Oracle EBS AP 供应商地点失效

    /* 供应商地点失效 creation: created by jenrry 20161108 1.00 */ DECLARE lv_return_status ) := NULL; ln_msg_c ...

  3. Oracle EBS AP更新供应商地址

    SELECT pvs.vendor_site_id, pvs.party_site_id, hps.party_site_name, hps.object_version_number, hps.pa ...

  4. Oracle EBS OM 主要API示例

    1, Book order Oe_Order_Pub.Process_Order ( 1 , Fnd_Api.G_FALSE , Fnd_Api.G_FALSE , Fnd_Api.G_FALSE , ...

  5. Oracle EBS 银行账户API

     创建银行 -- Create Bank DECLARE p_init_msg_list VARCHAR2(200); p_country_code VARCHAR2(200); p_bank_nam ...

  6. Oracle EBS AP取消核销

    --取消核销 created by jenrry 20170425 DECLARE l_result BOOLEAN; l_msg_count NUMBER; l_result_n varchar2( ...

  7. Oracle EBS AR 其他API

    DECLARE L_CR_ID NUMBER; L_ATTRIBUTE_REC AR_RECEIPT_API_PUB.ATTRIBUTE_REC_TYPE; L_GLOBAL_ATT_REC AR_R ...

  8. Oracle EBS AP 已经完全付款的发票仍然可以选择并进行零金额的付款

    1>找出相应的发票; SELECT DISTINCT ai.invoice_id, ai.invoice_num invoice_num, pv.segment1 vendor_num, pv. ...

  9. ORACLE EBS AP invoice 到付款的数据流

    --1.Invoice创建时生成数据如下表 --Invoice主表 SELECT * FROM AP_INVOICES_ALL A WHERE A.INVOICE_NUM = '20111213001 ...

随机推荐

  1. JavaScript -- Navigator

    -----040-Navigator.html----- <!DOCTYPE html> <html> <head> <meta http-equiv=&qu ...

  2. 自然语言处理--LDA主题聚类模型

    LDA模型算法简介: 算法 的输入是一个文档的集合D={d1, d2, d3, ... , dn},同时还需要聚类的类别数量m:然后会算法会将每一篇文档 di 在 所有Topic上的一个概率值p:这样 ...

  3. JS中this的那些事儿

    this是JavaScript中最复杂的机制之一.它是一个很特别的关键字,被自动定义在所有函数的作用域中. 一.this到底指向什么? this既不指向函数自身,也不指向函数的词法作用域,具体指向什么 ...

  4. PostgreSQL查询优化简介

    简介 PostgreSQL查询优化器执行过程 语法分析:生成查询树 语义检查:对SQL表达的语义进行检查 查询优化 视图重写 逻辑优化:子查询优化,条件化简,等价谓词重写,连接消除,得到逻辑计划 物理 ...

  5. setup&hold

    setup time:建立时间,也就是在时钟上升沿到来前,数据需要稳定的时间.hold time:保持时间,指的是在时钟上升沿到来后,数据还需要保持的时间.实际上设置setup time和hold t ...

  6. MySQL 5.7 新备份工具mysqlpump 使用说明 - 运维小结

    之前详细介绍了Mysqldump备份工具使用,下面说下MySQL5.7之后新添加的备份工具mysqlpump.mysqlpump是mysqldump的一个衍生,mysqldump备份功能这里就不多说了 ...

  7. maven jetty debug 无法关联第三方类库解决办法

    http://ifedorenko.github.com/m2e-extras/

  8. es6学习笔记7--Set

    Set 基本用法 ES6提供了新的数据结构Set.它类似于数组,但是成员的值都是唯一的,没有重复的值. Set本身是一个构造函数,用来生成Set数据结构. var s = new Set(); [2, ...

  9. Git Windows客户端保存用户名和密码

    解决Git Windows客户端保存用户名和密码的方法,至于为什么,就不想说了. 1. 添加一个HOME环境变量,值为%USERPROFILE% 2. 开始菜单中,点击“运行”,输入“%Home%”并 ...

  10. 关于winform文本框怎么实现html的placeholder效果

    winfrom默认是不支持这种操作的,此时需要重写控件操作,具体代码如下: public class TextBoxEx : TextBox { public String PlaceHolderSt ...