@dillonlee02,
here is the deprecation notice
https://nation.marketo.com/t5/the-next-generation-experience/marketo-sky-deprecation-notice/ba-p/320115
Regards
@michaelstancil,
I think there is an understanding gap around how the foreach loop works:
#if( ! $display.alt($mergedOpptyAndAVMList,"").isEmpty() )
#foreach(ITEMFROMAVM in merg...
@Yan_Mak,
have you tried the solution put forward by@SanfordWhitemanand myself?
FWIW - you can split@SanfordWhiteman's version into three tokens. One that does the set up of the t...
@SanfordWhiteman,
I'm curious. When I was having the same conundrum as@michaelstancil, you gave me a 'long form' version..
namely:
#if( ! $display.alt($myList,"").isEmpty() )
Si...
Ahh.. I misread what you'd done there (it's been an overly long day 🙂 ).
Somewhere in my head I'd seen that you'd only had a single ! and bracketed the two .empty tests (goodness ...
@michaelstancil,
try wrapping all your core code in this #if( ! $display.alt($myList,"").isEmpty() )
(replacing myList with your lists)
#if( ! $display.alt($myList,"").isEmpty() )...
Oh... and as a third benefit, it also means you have less forms to manage/maintain. Imagine if the business requests you capture a new piece of information. In my world, I'm updati...