I noticed some errors in the SP invocations generated by Plum
1. The DeleteAction invocations reference a variable that doesn't
exist. The variable should be Form.ACSystemID in this case. The 'Old'
prefix was present for all tables generated.
<cfscript>
Application.ACSystem.DeleteACSystem(Form.OldACSystemID);
</cfscript>
Should be:
<cfscript>
Application.ACSystem.DeleteACSystem(Form.ACSystemID);
</cfscript>
2. The EditForm invocation references Form.PrimaryKey instead of
URL.PrimaryKey
<cfscript>
returnGetACSystem = Application.ACSystem.GetACSystem(Form.ACSystemID);
</cfscript>
Should be:
<cfscript>
returnGetACSystem = Application.ACSystem.GetACSystem(URL.ACSystemID);
</cfscript>
Same behavior if you are using tag-based invocations.
How we coming on the next build? Mine has expired.
Jeff
--
_______________________________
Jeff Fleitz
Tekquest, Ltd
Integrated Digital Solutions
http://www.tekquest.com
866.472.5868
_______________________________