Hi community,
Has anyone tried adding the Excel export/import functionality on the Attributes tab?
I am trying to enable this on the Projects form but the Attribute column is not visible and so, the import does not update the records
This is what I have done
- On the Customization project, set AllowUpload true and InitNewRow True

- To allow importing and expose the AttributeID I added the following code
public class ProjectEntry_Ext : PXGraphExtension<PX.Objects.PM.ProjectEntry>
{
#region Event Handlers
[PXImport(typeof(PMProject))]
[PXViewName(Messages.ProjectAnswers)]
public CRAttributeList<PMProject> Answers;
public void PMProject_RowSelected(PXCache cache, PXRowSelectedEventArgs e)
{
PXUIFieldAttribute.SetVisible<CSAnswers.attributeID>(Base.Answers.Cache, null, true);
}
#endregion
}but still the Attribute is not shown on the import settings

Attached is the customization if anyone wants to take a peek
(I am testing on 24R1)