Skip to Main Content

Developer Community

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Rest API to get Attribute5 on the Supplier site by passing supplier contact email as input to api

Tanmay_ThagApr 30 2025
  • We have a requirement for fetching all the Attribute5 on the supplier site when we pass the supplier contact email as the only input. Currently we have achieved this using BIP, but looking for API based Approach to do the same.

    SQL
    -------------------------------------------
    select
    vs.ATTRIBUTE5 AS Supplier_Site_ID,
    vs.VENDOR_SITE_CODE
    from
    poz_supplier_sites_all_m vs,
    POZ_SUPPLIER_CONTACTS_V poc
    where 1=1
    and vs.VENDOR_SITE_ID = poc.VENDOR_SITE_ID
    and vs.ATTRIBUTE5 is not null
    and poc.email_address = :p_email
    ---------------------------------------------

    Please check this sql and suggest any solution to do this in API based approach.

Comments
Post Details
Added on Apr 30 2025
0 comments
140 views