Hi Viewers, Below is the code sample for Multi-select lookup in the SSRS report by UI builder class. In this example, I am using UI builder class - ItemListUIBuilder Contact class - ItemListContract DP class - ItemListDP In the contract class add a list-type parameter, as shown below. Contract class must decorated with attributes as shown below. give the ULBuilder class name to SysOperationContractProcessingAttribute [ DataContractAttribute, SysOperationContractProcessingAttribute(classStr(ItemListUIBuilder))] class ItemListContract { List ItemIDList; [ DataMemberAttribute, AifCollectionTypeAttribute("Item Id", Types::String) ] public List parmItemIdList(List _ItemIDList = ItemIDList) { ItemIDList = _ItemIDList; return ItemIDLis...
Hi viewers, To post the packing slip for the sales order from the shipment, we first have to close the containers, confirm the shipment, and then post the packing slip. these steps can be handled either through code or manually updated from the form by the user. I am sharing the code to update accordingly. To Close the container. public void closeContainer() { WHSContainerTable containerTable; WHSCloseContainerProfile closeContainerProfile; WHSShipmentTable shipmentTable; containerTable = WHSContainerTable::findByContainerId(PackageDetailsTable.ContainerId); closeContainerProfile = WHSCloseContainerProfile::find(containerTable.CloseContainerProfileId); ...
Custom label layouts and printing In D365 F&O Prerequisites To use custom label layouts, you must be running Microsoft Dynamics 365 Supply Chain Management version 10.0.33 or later. You don't have to use Feature management to enable the feature. Set up your system to show a Print button for custom labels Follow these steps to set up your system to automatically show a Print button on pages that handle data that a custom label is available for. Go to Warehouse management > Setup > Warehouse management parameters . On the Reports tab, on the Custom labels FastTab, set the Display custom label print buttons option to On all forms . Set up the data source for a custom label Follow these steps to define the data source that's used for a custom label and then select it in your label layout. Go to Warehouse management > Setup > Document routing > Label layout data source . Follow one of these steps...
Comments
Post a Comment