when we use the ${document_id.sys_class_name} ${document_id.number} this syntax in Notifications
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2024 07:47 AM
Hi All,
Please let me know when we use the below syntax and please explain the script of this as per the below snip.
${document_id.sys_class_name} ${document_id.number}.
Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2024 12:46 AM
placeholders are typically used within templates or scripts to represent dynamic values that will be replaced with actual data when the template or script is executed.
To identify whether something is a placeholder name, you can look for certain patterns or conventions that are commonly used. placeholders often have a specific syntax, such as ${placeholder_name} or {{placeholder_name}}. They may also be surrounded by curly braces or other delimiters.
The ${} syntax indicates that document_id.sys_class_name is a placeholder name. This placeholder is likely to be replaced with the actual class name of a document when a notification is sent out.
Please Mark ✅Correct if this solves your query and also mark 👍Helpful if you find my response worthy based on the impact.
Thanks