Rule to Generate Tags in Record List View

Hi, 

I am having difficulty running a rule on a column in a Record List View (Entity Backed).

I have a column that displays statuses, these may be multiple different statuses so to return them I call a rule to return the ID's. To run the rule I pass in the Record ID ...

a!tagField(
    tags: {
        a!forEach(
            items: rule!Get_Active_Statuses(
                fv!row['recordType!Record_Type.fields.record_ID']
                ),
            expression:
        a!tagItem(
            text: fv!item
            )   
        )
    }
)

This works in a "normal" interface, and if I hard code the id instead of looking for the record ID it works in the record view. 

What am I missing with getting the the ID to use within the record view?

Thanks!

  Discussion posts and replies are publicly visible

Parents Reply Children
No Data