Next, the CRUD settings on the BO will need to match. If you are using the standard DDT naming convention (as shown above: TableName_Update, for example), then you will not have to supply the sproc name on the BO, but if it is a custom name or varies in any way from that naming convention, then you will have to supply the name on the BO. In this example, we are following the standards and do not need to supply the names on the BO, just indicate that we want to use the sprocs:
That is basically it. If you still get errors, then open up your sprocs (through SQL Server Management Studio) and make sure that they are being deployed.
Expected behavior? I have been working with DB2 so I dont have a lot of expereince using sprocs for my CRUD, I have it working but had to set the UpdateUsingStoredProcedures property back to false on the BO.
This was a small app that has to now grow so I think using CRUD sprocs is best, so I need to work this out. Keith Chisarik