I have a feedback button enabled on our webpage. I want to capture the Question & Answer given by the users in this feedback form & analyze them into adobe analytics. I have created a list variable for this & set the conversion classification and its hierarchy also. But in launch how should I configure or map that list variable so that whenever a user gives feedback it floats to adobe analytics?
Thanks,
jsvasu
Solved! Go to Solution.
Views
Replies
Total Likes
It will show as it is. How you are expecting to get showed in server call ? For classification, if you have applied classification rule builder than the values will classify as per the rule. You can check it by dragging the created classification dimension.
Views
Replies
Total Likes
@JyotiSharmaV There is no particular place to define the listVars in Launch. You will have to use it in the Custom code editor by following the same syntax used in AppMeasurement.js.
Please check the below link for list :-
https://experienceleague.adobe.com/docs/analytics/implementation/vars/page-vars/list.html?lang=en
@amgup is correct, you need to set the list var in custom code.
The only thing to add is that if you are passing a list var on a custom link tracking call you need to remember to add the variable to s.linkTrackVars in your custom code or else it won't pass through to Adobe (it's easy to forget this as Launch handles this for you when using the form based wizard). A good way to do this is to use the append to list https://experienceleague.adobe.com/docs/analytics/implementation/vars/plugins/apl.html
@Andrew_Wathen_ @amgup My button looks like this. When a user clicks on the Feedback button then the form opens like that & I want to capture the question and its corresponding Answer.
I am using the custom code as below but this is printing the complete string as such in the debugger that I have passed.
s.linkTrackVars = "list1";
s.list1 = "Desktop ,Mobile,Default Form,How would you rate our website?,Hate,Dislike,Neutral,Like,Love,What would you like to share with us";
Thanks
Views
Replies
Total Likes
Views
Replies
Total Likes
I put custom code like that:
s.linkTrackVars = "list1";
s.list1 = "Desktop,Mobile,Default Form,How would you rate our website?,Hate,Dislike,Neutral,Like,Love,What would you like to share with us";
This is how It is displaying in the server call
and also in debugger, the list variable is coming up as such:
I guess there is some problem with the custom code I put.
Views
Replies
Total Likes
It will show as it is. How you are expecting to get showed in server call ? For classification, if you have applied classification rule builder than the values will classify as per the rule. You can check it by dragging the created classification dimension.
Views
Replies
Total Likes
Views
Replies
Total Likes
This is the dummy table I am looking to show up in my report suite
Can we directly map List Variable name in the custom code editor? It dint show actually anything to me.
And when I tried to put the code like below the "List variable" list1 started appearing in the debugger but it showed the value "Feedback" which I passed in code:
s.linkTrackVars = "list1";
s.list1="Feedback";
However, I want it like when feedback is successfully submitted it should also capture all the details for the classifications we have built for the list variable:
which means capturing information regarding Button(Mobile or Desktop), Form (this is the default form in our case), Questions (that are in Form), Answer(given by users). However, nothing is appearing in the report suite.
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
@amgup well I tried creating the classification rules in classification rule builder like that
& tried testing it also before activating it. If I pass the string of key then I get the correct result. However, how it is solving my purpose?
How on successful feedback submission this info will get captured? How this is solving my purpose? @amgup @Andrew_Wathen_ Any thoughts on this? I am assuming there is something missing in launch for this list variable. Can you help me in correcting that?
Views
Replies
Total Likes
Views
Replies
Total Likes
@Brian_Johnson_ can you help on this issue? How I can get the list var defined in the launch so that the corresponding classification receives the data out of the feedback form when it is successfully submitted?
Thanks
Views
Replies
Total Likes
Views
Likes
Replies