Hi All,
I am having trouble connecting to data imported from the data modeler as an external data dictionary inside?@of a BSP.?@The "_default.Attribute000" attribute was explicitly defined within the process designer and is accessible,(i.e. it?@returns the desired?@content using the BSP to access the Sql table to the control presented by the Web Client ). The data which was imported to the Process Designer however, from the Data Modeler,("RI.dbo$RequestorInformation$FirstName" ) ,and which originated in?@the?@Data Modeler using an external data dictionary connection to?@a Sql Table,(RequestInformation),?@returns an error stating the data field cannot be found. I need some direction, I have played with attachments from within the Data Modeler, creating a form with ValueId = "RI.dbo$RequestorInformation$FirstName"?@ and have redeployed Data modeler project but the attachment does not present itself from within the Process Designer. Help!
Code snippet: // This snippet works and delivers data from Sql Table
objpi.SetField("_default.Attribute000", reader.GetValue(0).ToString());
Code Snippet: // This does not work and delivers "Data Field not found error" when the TCP Web client executes the step containing the BSP.
objpi.SetField( "RI.dbo$RequestorInformation$FirstName" , reader.GetValue(1).ToString());
For Clarification the "RI.dbo$RequestorInformation$FirstName" represents a field,(FirstName), within the SQL table,(RequestorInformation). And is built within the Data modeler when the External Data Dictionary connection is defined for this Table and field.