Thursday, 19 January 2017

Find the Query of SQL of all Related Tables of Suppliers or Vendors in Oracle Apps EBS R12

SELECT *
FROM AP_SUPPLIERS
WHERE VENDOR_NAME LIKE 'D%'


select * from PO_VENDORS
WHERE VENDOR_NAME LIKE 'D%'

select * from hz_parties
where PARTY_NAME like 'Dan%'

select * from HZ_PARTY_USG_ASSIGNMENTS
where PARTY_ID = 21135

select * from HZ_ORGANIZATION_PROFILES
where PARTY_ID = 21135

select * from IBY_EXTERNAL_PAYEES_ALL
where PAYEE_PARTY_ID= 21135

select * from POS_SUPPLIER_MAPPINGS
where PARTY_ID = 21135

select * from ZX_PARTY_TAX_PROFILE
where PARTY_ID = 21135

HZ_PARTIES   
HZ_PARTY_SITES   
HZ_LOCATIONS   
HZ_PARTY_USG_ASSIGNMENTS   
HZ_ORGANIZATION_PROFILES   
IBY_EXTERNAL_PAYEES_ALL   
POS_SUPPLIER_MAPPINGS

No comments:

Post a Comment

How to make responsibilities as read only in oracle apps EBS R12 Using Custom.Pll Or Creating a read only Responsibility in oracle apps EBS R12 Using Custom.Pll

  How to make responsibilities as read only in oracle apps EBS R12 Using Custom.Pll Or Creating a read only Responsibility in oracle apps ...