Is it possible to store binary information in a Dynamics field? For example, I'd like to store an MS Word document inside the Dynamics database.
相关问题
- How can I identify an Axapta class Name from the c
- How to hide enum values on a combo box at runtime?
- catching the warning message from aif web service
- How can you create a simple dialog box in Dynamics
- Updating a salesorder using AIF
相关文章
- CRUD operation in AX tables using C#
- How to create a lookup with fields from more than
- Table Update Event Handler
- Execute .exe in SSRS Report
- Nested notExists joins X++ (Dynamics AX3.0)
- Obtain Network Credentials from Current User in Wi
- View details control on ax 2012 form
- Update records that can be retrieved by multiple j
Yes, add a container field to the table, then use the BinData Class to read the file and convert the data to a container. For an examples of this, look at how the standard Document handling feature stores files in the database in the table method
DocuValue.writeDocuValue()
, or look at how image files are stored in theCompanyImage
form.