Store and retrieve an image in a table for a record in AX
- Generally, most of the customers would request for a functionality to store an image for an item. For this, there is no need of high customization.
- Initially, Goto the Design in InventTable Form and add a Display Menu Item called CompanyLogo to its button Group.
- Change the label of the Menu item button in the form.
- Now, open the InventTable form and click on the menu item and load an image associated with a record.
- This image will be stored in the CompanyImage table as a BLOB in a container with the refRecId, RefTableId and RefCompanyId of the associated record(Here Record of InventTable).
- Retrieving it and saving to file system again is pretty easy with the help of binData Class. Here is the supporting code snippet….
thank you! just the info I needed 🙂