Is it possible to change or append the challenge questions from AVDB?
I need few other questions to be enabled for the user to enroll themselves.
Is it possible to change or append the challenge questions from AVDB?
I need few other questions to be enabled for the user to enroll themselves.
You really should not manually modify the database, so this should be an enhancement request to add the ability to create questions through the user interface.
However, this would do it:
insert into T_AV_CHALLENGE_QUESTION values (AV_CHALLENGE_QUESTION_SEQUENCE.NEXTVAL, 1, 0, AV_CHALLENGE_QUESTION_SEQUENCE.CURRVAL, 'What is the meaning of life?');
Weren't these available in the strings.properties?
So you can modify the text of the default questions or better override them with customer strings.
Vijayabaskar Balakrishnan Within string.properties search for "CHALLENGE_QUESTION_" (you will have 20 such keys) and modify the values. I doubt you need to keep all 20 default questions and I guess there is no need to do additional inserts in the database.
You can then save this as "customerstrings_en.properties" and upload it (Admin / User interface / Files / Customer Strings) which should override the default ones.
The challenge questions are customized by creating customerstrings.properties file with the below listed key/pair and uploading it through the Administrative Console as a Customer Strings file.
CHALLENGE_QUESTION_1=Question 1
CHALLENGE_QUESTION_2=Question 2
CHALLENGE_QUESTION_3=Question 3
.
.
.
.
.
CHALLENGE_QUESTION_20=Question 20
Note: You cannot have more than 20 questions.
Hi, Did it worked for you? If yes, please let me know as I had tried the same but it is not working for me? And is there any other solution for the same?
Thanks
Aastha
The challenge questions are customized by creating customerstrings.properties file with the below listed key/pair and uploading it through the Administrative Console as a Customer Strings file.
Note: You cannot have more than 20 questions.