Product ideas | Community
Skip to main content

Filter by idea status

10000 Ideas

FrederikWerner
FrederikWernerNew Participant

User-defined, referable constantsNew

Description -In Analysis Workspace, users may want to define constant values (like a yearly sales goal or revenue-per-order threshold) and use them in multiple places, like multiple projects, segments, or calculated metrics. However, the only current way to achieve this is through calculated metrics, which come with a bunch of disadvantages:They can't be used in segmentsIf they are used in other calculated metrics, they are copied instead of referenced. Therefore, changes to the original metric will not be reflected in other metrics where the original has been usedThis makes this approach unmanageable for values that might change in the future, which can be especially true for sales goals.Why is this feature important to you -Avoid inconsistency in reporting and extreme maintenance overhead when working with goals or other, widely used metrics.How would you like the feature to work -In addition to the already available component types, introduce a "Constant" type of element. We should be able to create, edit, and delete them from within workspace, and also share them with users, groups, or the whole company. The interface for creating and editing them should be very simple and just allow us to input a number and a name. The constants would then show up in a list and be available in workspace and the editors for segments and calculated metrics. Any changes to the constant should then be reflected everywhere it has been used.Current Behaviour -😩

Ekaterina_Mamon
Ekaterina_MamonNew Participant

Ability to produce multiple links in Velocity-script loop that will end up with their distinctive token if trackedNew

<b>There is no Velocity in Language dropdown. Just because of that HTML/XML language was chosen here</b> <br><br> <b>Following links will work correct from Velocity:</b> <br><br> <a href="https://www.veeam.com" target="_blank">Example of static link to veeam.com</a> <br><br> #set ( $myLink01 = "www.veeam.com/how-to-videos.html" ) <a href="https://${myLink01}" target="_blank">Example of static link from variable to veeam.com/how-to-videos.html</a> <br> <br><br> ## --- Links with problem -- inside of the Array - s ## <b>Example of the problem: </b> <br> <br> if we generate links inside of the array -- when we are sending ecard to Test we will have the same links to Page with Title for <b>Veeam Basics (Americas)</b>: <br> But links should be different ones<br> It means that in test for All links we have link for the last item in array: <b>Veeam Basics (Americas)</b><br><br> #set( $arr_database = {} ) #set( $arr_database.array_0 = { "name": "Fundamentals of Data Protection (APJ)", "lp": "www.veeam.com/product-demo/fundamentals-data-protection-apj-live-product-demo-4487.html" }) #set( $arr_database.array_1 = { "name": "Veeam Backup for Microsoft Office 365 – Best Practices (EMEA)", "lp": "www.veeam.com/product-demo/backup-microsoft-office-365-best-practices-emea-live-product-demo-4331.html" }) #set( $arr_database.array_2 = { "name": "Veeam Basics (Americas)", "lp": "www.veeam.com/product-demo/basics-americas-live-product-demo-4238.html" }) #set( $arr_database = [ $arr_database.array_0, $arr_database.array_1, $arr_database.array_2 ]) #foreach ($arr_item in $arr_database ) #set( $webinar_lp = $arr_item.lp ) $arr_item.name <br> <a style="color: #00b336; text-decoration: none;" href="https://${webinar_lp}" target="_blank"> </a><br><br> link to landing page (works properly at Email Preview, doesn't work properly when email received: links should be different in this block) #end ## --- Links with problem -- inside of the Array - e ## Description - Velocity can't 'by design' produce multiples (different) links in a loop that will end up with their distinctive token if tracked Why is this feature important to you - it's extremely important for business users to track customer activity in order to nurture and score them. How would you like the feature to work - Velocity script-made links produce multiple links by array and all of them are different from each other with "Include mkt_tok" enabled as it shows on email preview. Current Behaviour - Velocity script-made links looks good (valid) on email preview (one different link per event), but become identical with "Include mkt_tok" enabled when email is sent. Velocity script can't 'by design' produce multiples links that will end up with their disctincive token if tracked. The idea is to fix this design feature.