Page 1 of 1

ErrMsg "Record occurences generated"

Posted: February 17th, 2014, 4:51 pm
by Stavros
Hi all. I am new to CSPro and I am creating a CAPO questionnaire for a household survey. The questionnaire has some screening questions to check if the respondent is eligible. If not I am using a skip for the last field which is just one field with an end of time function:
onfocus;
TIME_END = edit("99:99:99",systime());

after that if it is a new case CSPro asks if I want to accept it as a case and then I receice error messages "Record Occurences Generated for record X" which appers 22 times as many the skipped forms.

I am fo sure doing something wrong, so any advice,help, suggestions would be great.

Thanks,
Stavros

Re: ErrMsg "Record occurences generated"

Posted: February 17th, 2014, 11:31 pm
by Gregory Martin
You need to edit your dictionary, viewing the record listing. There is a column that says Required ... for records that you may skip, you will want to change that to Not Required. The error message you are seeing is CSPro telling you that you are trying to save a case, in which the dictionary says that you should have Record X, but that Record X was skipped by your data entry program. If you set Record X to Not Required, then those messages will go away.

Re: ErrMsg "Record occurences generated"

Posted: February 18th, 2014, 10:20 am
by Stavros
Thanks!