Creating Vendors through X++ in AX 2012- PART V --Create bank details for the vendor-- private void createBankDetails(WI_VendorRequestCreate _vendorRequestCreate, VendAccount _vendAcc) { VendBankAccount vendBankAccount; LogisticsLocation lLogisticsLocation; LogisticsPostalAddress logisticsPostalAddress; ; ttsBegin ; lLogisticsLocation.Description = _vendorRequestCreate.FirstName; lLogisticsLocation.insert(); logisticsPostalAddress.Street = _vendorRequestCreate.VendBankAddress; logisticsPostalAddress...(read more)
↧