How to identify the bill-to-site location for a customer
Hi All,
How to identify the bill-to-site location for a customer.
I want to determine the language output of the AR invoice report based on the bill-to site address.
If the bill-to site is located in Sweden, the document should be in Swedish. If the bill-to site is located outside of Sweden, the document should be in English.
I have defined a query but not able to identify from which column I can identify the bill-site-location.
How to identify the bill-to-site location for a customer.
I want to determine the language output of the AR invoice report based on the bill-to site address.
If the bill-to site is located in Sweden, the document should be in Swedish. If the bill-to site is located outside of Sweden, the document should be in English.
I have defined a query but not able to identify from which column I can identify the bill-site-location.
select *--a_bill.org_id,party_name,account_number,a_bill.CUST_ACCT_SITE_ID
from
apps.hz_parties party
,apps.hz_party_sites party_site
0