- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā06-03-2020 10:49 PM
Is it possible to set URL value in Configure a URL applet from system property?
-Currently URL is setting up as fixed value, suppose if i want to have this URL dynamically generated using system property would be great. otherwise for any changes to the URL section of the applet, i have to update URL manually on URL applet.
see example as URL set to '/mesp?id=sc_cart'
what if i want to get url values coming from system property.
Solved! Go to Solution.
- Labels:
-
Now Mobile

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā06-04-2020 06:21 AM
I don't think you can make that URL dynamic, but you could do something like setting the URL to a UI page or portal page that then looks at the system property and redirects the user accordingly.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā06-04-2020 06:21 AM
I don't think you can make that URL dynamic, but you could do something like setting the URL to a UI page or portal page that then looks at the system property and redirects the user accordingly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā06-08-2020 07:09 PM
Thanks Brad. This seems to be working.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā09-03-2020 10:58 PM
Hi Brad,
Thanks for your assistance regarding to set UI page to allow dynamic values from property. now i have system property to address KB article, when i use this UI page as URL applet call, KB opens up on mobile app, but it shows loading circle on the middle of the KB view
Have you come across this issue? I have tried with different KB and even clear cache, still same.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā06-18-2020 03:08 PM
Brad's idea works best. But alternatively there is a way to use parameterized(dynamic) URLs as well. Here's an example below
Use case: I want to create a smart button that allows my users to look up KB article URLs based on the short description field of my incident record.
Procedure
- In Studio, navigate to Mobile Development > Functions > Smart Buttons.
- Click the pop out icon to open the Smart buttons list in a tab.
- Click Create a new smart button.
- Enter the following information in the fields listed
- Name: View KB with Short Description
- Type: URL
- Checkmark the the relative URL checkbox (appends a short URL to the instance name)
- Table: Incident
- URL Label: View KB
- Relative link: sp?id=search&spa=1&t=kb&q={{short_description}}
**To explain: you type the short URL you want to append to the instance name and add your short description parameter in brackets {{}}.
For example, here is a static URL to find ānetworkā on Knowledge Base. āhttps://<instance_name>/sp?id=search&spa=1&t=kb&q=networkā
Extract your short URL and you get āsp?id=search&spa=1&t=kb&q=ā
After q= , you add your {{}} for your search criteria - Click save
More information in prod docs:
Best,
David