|
|
发表于 2013/7/8 11:34:02
|
显示全部楼层
ap_po_vendors_apis_pkg.insert_new_vendor_site(p_vendor_site_code => '南京', -----这个导Site
p_vendor_id => 11335,
p_org_id => 108,
p_address_line1 => '南京',
p_address_line2 => null,
p_address_line3 => null,
p_address_line4 => null,
p_city => '南京',
p_state => NULL,
p_zip => NULL,
p_province => NULL,
p_county => NULL,
p_country => 'CN',
p_area_code => NULL,
p_phone => NULL,
p_fax_area_code => NULL,
p_fax => NULL,
p_email_address => NULL,
p_purchasing_site_flag => 'Y',
p_pay_site_flag => 'Y',
p_rfq_only_site_flag => 'N',
x_vendor_site_id => x_vendor_site_id,
x_status => x_status,
x_exception_msg => x_exception_msg);
IF nvl(x_status, 'F') <> 'S' THEN
dbms_output.put_line('Status ' || x_status);
dbms_output.put_line('Message ' || x_exception_msg);
ROLLBACK;
RETURN;
ELSE
dbms_output.put_line('成功导入Vendor Sites:'); |
|