Starting from Strategy Mobile 9.4.0 on iPad/iPhone, users have the capability to implement a survey widget through Strategy.
Below is the step-by-step instruction to create a Survey Widget:
create table Survey (surveyID int not null, questionID int not null, questionTitle varchar(255) null, questionType int null, answerID int null, answerTitle varchar(255) null, answerValue varchar(255) null, currentAnswer varchar(255) null)



create table Response (surveyID int not null, questionID int not null, questionTitle varchar(255) null, questionType int null, answerID int null, answerTitle varchar(255) null, answerValue varchar(255) null, userInput varchar(255) null);

Begin Transaction INSERT INTO Response(surveyID, questionID, questionTitle, questionType, answerID, answerTitle, answerValue, unserInput) VALUES ([SurveyID@ID],[QuestionID@ID],[QuestionTitle@ID],[QuestionType@ID],[AnswerID@ID],[AnswerTitle@ID],[AnswerValue@ID],[CurrentAnswer@ID]) End Transaction





KB45567