Refer below link:
https://d365byjp.blogspot.com/2018/10/steps-to-configure-tfsvsts-workspace-in.html
Sarath varma blog for microsoft dynamics ax technical
Refer below link:
https://d365byjp.blogspot.com/2018/10/steps-to-configure-tfsvsts-workspace-in.html
Written Logic in Init method of PurchRFQEditLinesPrintOptions form
using this to get the dynamic subject and file name in print management
[DataEventHandler(tableStr(EcoResReleasedProductV2Entity), DataEventType::PostedLoad)]
public static void EcoResReleasedProductV2Entity_onPostedLoad(Common _sender, DataEventArgs _eventArgs)
{
InventItemInventSetup inventItemInventSetup;
EcoResReleasedProductV2Entity ecoResReleasedProductV2Entity = _sender as EcoResReleasedProductV2Entity;
select firstonly MultipleQty from inventItemInventSetup
where inventItemInventSetup.ItemId == ecoResReleasedProductV2Entity.ItemNumber;
if(inventItemInventSetup)
{
ecoResReleasedProductV2Entity.SalesQuantityMultiple = inventItemInventSetup.MultipleQty;
}
}
Refer below link: https://d365byjp.blogspot.com/2018/10/steps-to-configure-tfsvsts-workspace-in.html