How to setup a new value for Contacts on the Notes tab
Summary:
How to setup a new value for Contacts on the Notes tab
Content (required):
Hello
The company wants to setup a new value on the notes tab, and I was not able to find that value, hence I was wondering if you can share with me how to get the lookup value.
Thanks
select a2.lookup_type,
a2.meaning "Lookup Type Meaning",
a2.description "Lookup Type Description",
a1.LOOKUP_CODE,
a1.meaning "Lookup Value Meaning",
a1.description "Lookup Value Description"
from
fnd_lookup_values a1,
fnd_lookup_types_VL a2
where a1.LOOKUP_CODE like 'General%'
and a1.lookup_type=a2.lookup_type
0