I have created 'Load Records from File' on Document Templates screen.

However, when I Import, the 'TemplateId' attribute is missing in Property Name

In the AUTemplateData table, there is the attribute 'TemplateId'


Here is my code
[PXImport(typeof(AUTemplateData))]
public PXSelectJoin<AUTemplateData,
InnerJoin<AUTemplate, On<AUTemplate.templateID, Equal<AUTemplateData.templateId>>>,
Where<AUTemplateData.templateId,Equal<Current<AUTemplate.templateID>>>> Items;
How can i fix it ? Can someone please help me.