This is in specific regard to using unverified perl in constructed lists referencing pass in fields. (Perl works fine in other cases).
I have a predefined list called Products, and based on pass in fields I make a constructed list similar to this:
Begin Unverified Perl
if (VALUE("passinfield1") == 1)
{
ADD("Products",1);
}
if (VALUE("passinfield2")==1)
{
ADD("Products",2);
}
End Unverified
I then try to print out this information for respondent confirmation in a question using something like:
1. [%ListLabel (ApplicableAppliances,1)%]
2. [%ListLabel (ApplicableAppliances,2)%]
Test mode yields blank results, once uploaded to web server seems to work fine. If it could be tested locally it would save time in manual upload etc. process. Is there something I'm missing, is it a bug, or is that intended behavior?
How can I get unverified perl script to run in local test mode?
Resolved
2 replies