How to show Lookup of all Standered and Customized Reports in d365 fo x++
We can show lookup of standered and Customized Report on form in d365 fo x++
The Following Code will show you the lookup
public void lookup()
{
SysTableLookup lookupTable = SysTableLookup::newParameters(tableNum(SysMetaReportNameLookup), this);
lookupTable.addLookupfield(fieldnum(SysMetaReportNameLookup, Name));
lookupTable.performFormLookup();
}
this lookup show all the standered and customizes Report in d365 fo x++.
Comments
Post a Comment