1. Lookup for Customer Class Code :
select lookup_type,lookup_code,meaning
from ar_lookups
where lookup_type in (select class_category from HZ_CLASS_CATEGORIES);
2. Lookup for Customer Type :
select lookup_type,lookup_code,meaning
from ar_lookups
where lookup_type='CUSTOMER_TYPE';
3. Lookup for Party Type :
select lookup_type,lookup_code,meaning,description
from ar_lookups
where lookup_type='PARTY_TYPE';
4. Lookup for sales channel :
select lookup_type,lookup_code,meaning
from oe_lookups
where lookup_type='SALES_CHANNEL';
5. Lookup for SIC code :
select lookup_type,lookup_code,meaning
from ar_lookups
where lookup_type='SIC_CODE_TYPE';
6. Lookup for Status :
SELECT lookup_type,lookup_code,
meaning,
start_date_active,
end_date_active,
description
FROM ar_lookups
WHERE lookup_type = 'REGISTRY_STATUS'
AND enabled_flag = 'Y';
7. Lookup for Countries :
SELECT TERRITORY_CODE, NLS_TERRITORY
FROM FND_TERRITORIES;
select lookup_type,lookup_code,meaning
from ar_lookups
where lookup_type in (select class_category from HZ_CLASS_CATEGORIES);
2. Lookup for Customer Type :
select lookup_type,lookup_code,meaning
from ar_lookups
where lookup_type='CUSTOMER_TYPE';
3. Lookup for Party Type :
select lookup_type,lookup_code,meaning,description
from ar_lookups
where lookup_type='PARTY_TYPE';
4. Lookup for sales channel :
select lookup_type,lookup_code,meaning
from oe_lookups
where lookup_type='SALES_CHANNEL';
5. Lookup for SIC code :
select lookup_type,lookup_code,meaning
from ar_lookups
where lookup_type='SIC_CODE_TYPE';
6. Lookup for Status :
SELECT lookup_type,lookup_code,
meaning,
start_date_active,
end_date_active,
description
FROM ar_lookups
WHERE lookup_type = 'REGISTRY_STATUS'
AND enabled_flag = 'Y';
7. Lookup for Countries :
SELECT TERRITORY_CODE, NLS_TERRITORY
FROM FND_TERRITORIES;
No comments:
Post a Comment