Which table can I pull the Attribute details of an Item Template
Summary
I need to know where can I get the Attribute info of Item TemplateContent
In R12, I can use this script to pull those information:
select it.template_name,
ita.attribute_name,
ita.attribute_value
from mtl_item_templates it,
mtl_item_templ_attributes ita
where it.template_id=ita.template_id
and ita.attribute_value is not null
order by 1, 2
I need to know what's the corresponding table in Fusion Cloud where I can get those information.
0