Jeff, These are not intended for direct use, because we don't know where your variables are coming from (Form, URL, Session, etc.); they are intended to be copied, pasted, and tweaked slightly to suit your application.
"Old" refers to the old value of the editable primary key (so it knows what to lookup). Respectfully, Adam Phillip Churvis Member of Team Macromedia Advanced Intensive Training: * C# & ASP.NET for ColdFusion Developers * ColdFusion MX Master Class * Advanced Development with CFMX and SQL Server 2000 http://www.ColdFusionTraining.com Download CommerceBlocks V2.1 and LoRCAT from http://www.ProductivityEnhancement.com The ColdFusion MX Bible is in bookstores now! ----- Original Message ----- From: "Jeff Fleitz" <[EMAIL PROTECTED]> To: "[email protected]" <[email protected]> Sent: Tuesday, August 31, 2004 10:05 AM Subject: [plum] SP Invocation Errors > 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 > _______________________________ > > >
