Thanks Khanh for the quick reply. i was doing exactly samething.
But For my workflow i didnt found any datasource in the start event after select the smartform.
Hi,
Is there a data source in your view?
Yes Khanh. In the view i have added datasource.
Hi,
I'm able to reproduce similar issue if the SmartObject is based on a stored procedure (no CRUD methods).
Can you confirm the SmartObject has the default methods similar to the one below?
Below is my smartobject Properties and methods. Note i have set primary key for my table.
Hi Khanh Also I tried for the table without primary key setting. Same issue I am facing. But this smart object doesn't have create , update , delete and read methods. Smart object only having getlist method.
Hi Rameshbabu,
As long as the form's views have the corrected data source (CRUD methods), it should work.
If you create a new workflow, then does it show up when going throuth Smartforms start event?
For new workflows also reference is not showing in the smartform start event.
Hi,
Could you try with a new SmartObject created from below SQL table?
CREATE TABLE [dbo].[Table_2](
[id_column] [int] IDENTITY(1,1) NOT NULL,
[name_column] [nvarchar](50) NULL,
[description_column] [nvarchar](max) NULL,
CONSTRAINT [PK_Table_2] PRIMARY KEY CLUSTERED
(
[id_column] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [primary]
) ON [primary] TEXTIMAGE_ON [primary]
GO
Thanks Khanh.
what is difference between creating table using below query and normal create table query.