Punchout sites

If you're an Oracle EBS administrator or a user curious about the Punchout sites configured in your instance, you might be wondering how to retrieve a list of all Punchout sites. Fortunately, it's relatively straightforward to do this by running a SQL query against the Oracle EBS database.

select name, url
  from icx_cat_content_zones_vl tv
 where 1 = 1
   and tv.type = 'PUNCHOUT'
order by upper(name)