機械翻訳について

Oracle Salesのプライマリ・パートナ住所は、どの表を参照しますか。

プライマリ・アドレスは、HZ_PARTIES表に格納されます。

パートナのParty_idがわかっている場合は、次の問合せを使用して住所情報を取得できます。
select l.address1, l.city, l.county, l.state, l.postal_code, l.country, p.party_name, ps.identifying_address_flag from hz_parties p, hz_locations l, hz_party_sites ps where p.party_id = ps.party_id and ps.location_id=l.location_id and p.party_id=&PartyID;
パートナの登録IDがわかっている場合は、次の問合せを使用して住所情報を取得できます。
select l.address1, l.city, l.county, l.state, l.postal_code, l.country, p.party_name, ps.identifying_address_flag from hz_parties p, hz_locations l, hz_party_sites pswhere p.party_id = ps.party_id and ps.location_id=l.location_id and p.party_number=&RegistryID;