看过前面的文章,我们已经可以轻松的在Oracle EBS中创建一个address,也可以轻松的创建好客户!

在Oracle EBS的开发中,这是很常见也很容易用到的!

     那么本篇文章就来介绍一下,怎么给客户添加地址,怎么把这个地址附加到客户上!

先看效果!

EBS创建客户的地址

 

这里可以下载代码

隐藏内容

此处内容需要权限查看

  • 普通10积分
  • 会员免费
  • 永久会员免费推荐
会员免费查看

 

declare
   v_cust_name varchar2(100):=’Customer188′; –客户名字 前面我们建好的客户名字
   v_part_id number ; —客户id
   v_location_Id number:=840654; —前面一步我们建好的location_Id
   x_errbuf number;
   x_retcode varchar2(400);
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_party_id => v_part_id,
         p_location_id => v_location_Id);
end;

发表回复

您的电子邮箱地址不会被公开。