Hello,
It is pretty easy to have a multiple attachment view. Start by creating your table. Make sure your table has a column to store a process ID. This is going to me the ID from the main form. An example.
CREATE TABLE [dbo].[MULTIPLE_ATTACHMENTS](
[id] [int] IDENTITY(1,1) NOT NULL,
[PROCESS_ID] [int] NULL,
[Attachments] [nvarchar](max) NULL,
After the smartobject has been created you will need to update it in designer. The attachments field type will need to be changed from "Memo" to "File".
I hope this helps. Good Luck.
Thanks,
Bryan Peters
Hi Bryant,
When you execute the "Create" rule. K2 is automatically save the file (data) back to the database?