前面我们已经完成了创建客户,添加客户地址,等方法; 有接口也有API
这里我们继续增加一个Account
这在EBS开发中是非常常见的!
在本站下载源码
此处内容需要权限查看
会员免费查看这里是效果
以下是调用方法
declare
x_errbuf number;
x_retcode varchar2(240);
v_cust_name varchar2(100):=’Customer188′; –客户名字 前面我们建好的客户名字
v_orig_sys varchar2(100);
v_orig_ref varchar2(100);
v_acc_account_name varchar2(100):=’TEST0406′;
v_acc_category varchar2(100);
v_part_id number;
x_cust_account_id number;
begin
— Call the procedure
—取客户id
select hp.party_id into v_part_id from hz_parties hp where hp.party_name=v_cust_name;
cux_common_cust_pub.creat*** (x_errbuf => x_errbuf,
x_retcode => x_retcode,
p_orig_sys => v_orig_sys,
p_orig_ref => v_orig_ref,
p_acc_account_name => v_acc_account_name,
p_acc_category => v_acc_category,
p_acc_attribute1 => ”,
p_acc_attribute2 => ”,
p_acc_attribute3 =>”,
p_party_id => v_part_id,
x_cust_account_id => x_cust_account_id);
end;