cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
AHorstmann
Level 3

Email Template: Getting License Model info while iterating over Line Items

Hi everyone,

I have a problem with my email template.

I'm currently iterating over my line items and building a table with information, like this:

...
[[FOR-EACH TAG="EntitlementLineItem"]]
    <tr>
        <td> [[ActivationID]] </td>
        [[FOR-EACH tag="EntitledProduct"]] 
            <td> [[Name]] </td>
            <td> [[Count]] </td>
        [[END FOR-EACH]] 
        <td>[[SeatCount]] </td>
        <td>[[StartDate]] </td>
        <td>[[ExpirationDate]] </td>
        <td>[[LicenseModel]] </td>
    </tr>
[[END FOR-EACH]] 
...

 

So far, so good.

However, I would like to filter this listing of line items by License Model, and for certain models (identified by name), I'd like to show additional information, like the Instance ID for CLS served items.

Now there are several problems with this. While there is a merge tag [[LicenseModel]], it apparently contains composite data; I don't know how to isolate the name from it so I can use it in an [[IF]].

Furthermore, I don't know how to get the Instance ID. There's [[DEFAULT_GLS_INSTANCE_ID]], but it only seems to be working from a global scope, not within my loop.

Can you give me some hints how I could solve this?

0 Kudos
(0) Replies