Login  Register

disable PO

classic Classic list List threaded Threaded
2 messages Options Options
Embed post
Permalink
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

disable PO

Roshan
1294 posts
Is the script below going to disable the sceduled SRL Purchase Order Report and update the supplier email?

Script to update supplier's email

update  hz_contact_points
set   email_address ='Erpsupport@sunresorts.mu '
where   contact_point_id  in (select hcpe.contact_point_id
from hz_relationships hr,    
hz_contact_points hcpe,    
hz_parties hp ,
Ap_Suppliers aps
WHERE     hr.object_id = hp.party_id(+)    
AND hcpe.owner_table_id(+) = hr.party_id    
AND aps.party_id = hr.subject_id(+)    
AND hcpe.OWNER_TABLE_NAME = 'HZ_PARTIES'
and hcpe.EMAIL_ADDRESS is not null
AND hcpe.status = 'A');

commit;

Thanks,
Regards,
Roshan
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: disable PO

ErmanArslansOracleBlog
Administrator
5731 posts
We don't update the ebs standard tables.
We use APIs.

Anyways, this is not the place for asking this since It is a functional issue.

thx