Can i add a free text box for "Reason for Visit" within the Walk-up Location Queue for the Walk-up Experience?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-30-2019 03:17 AM
Hi All,
Has anyone added a free text box on check in portal for customers to enter what they are visiting for?
Thank you
- Labels:
-
Walk-Up Experience

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-28-2021 01:43 AM
I've found that the free form text replaces the reasons for visit in the Short Description field on the WUA appointment and IMS interaction record, which is not ideal.
Ideally the Reason for visit would be retained in the Short Description field and the free for text would be populated into another field - e.g. work notes or description
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-28-2021 09:48 PM
Having the same issue. Did anyone find a fix for this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-09-2023 07:54 PM
hi Rob,
I need this working exactly how you described it.
Did you ever find a solution?
please share.
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-26-2024 07:21 AM
Hey Ouzma, I found a solution for that
Steps:
1. on "wu_m2m_location_queue_reason" table, update the reason record and set "Text Entry" to "true"
2. Repeat for each reasons you want the text area to appear.
3. Update the "Create appointment" business rule (table: Walk-up Appointment [wu_appointment]):
ORIGINAL (line 142 - 147):
// -----------------------------------------------
// map additional fields
// -----------------------------------------------
current.short_description = reasonDescription;
current.wu_location_queue = locationQueue.getUniqueValue();
current.location = locationQueue.getValue('location');
UPDATED:
// -----------------------------------------------
// map additional fields
// -----------------------------------------------
current.short_description = _getResonDescription(reason);
current.description = reasonDescription;
current.wu_location_queue = locationQueue.getUniqueValue();
current.location = locationQueue.getValue('location');
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-15-2023 11:29 PM
Hello @Anuj28
Thanks It works for me but I had one issue can we show this field "mobility support" if Reason for visit "other" is selected.
i.e if we select reason for visit as other then only these free text box should be visible