Suddenly can't populate a field with CF INSERT
I have an INSERT command in a CF script to add a record to a data table. There are four fields I am populating. Fields three and four are being populated with the same data. Here’s the code:
INSERT INTO tblPQMS_Requests
(
PQMSReq_By,
PQMSReq_Status,
PQMS_Proj,
ERP_PQMS_Proj
)
VALUES
(
'LibMgr',
'1',
'#htmlEditFormat(projectno)#',
'#htmlEditFormat(projectno)#' <!--- Suddenly can't get this field filled! --->
)
You see my comment on the last line. I can’t get projectno into ERP_PQMS_Proj. In fact, I can’t get ANYTHING into the field named ERP_PQMS_Proj, even if I just try to stick a bit of text into this text field.
Furthermore, the procedure worked until a few days ago!
I have never experienced this "locked-field syndrome" before and have spent hours trying to figure out what is going on. Any ideas? Thanks!
