Hello, we're using Dynamics AX 2012, one of the FR versions. I've added a display method to the ReqPO table:
display str60 mlReqItemCategory(ReqPO _reqPO)
{
str60 ret;
InventDim inventDim;
inventDim = _reqPO.inventDim();
ret = mlSalesLineInfo::getReqItemCategory(_reqPO.ItemId, inventDim.InventSiteId, inventDim.InventLocationId);
return ret;
}
but I can't see how to personalize this into the user grids on the planned PO screen. I've added the field to the Design of the ReqTransPOPurchListPage - String type with a DataSource of ReqPO and a DataMethod of mlReqItemCategory but still no visibility in personalizations. I'm not sure what step I've missed, if anyone could point me in the right direction I'd appreciate it!
Cheers,
Dave
*This post is locked for comments