Transformation Not working

Hi all, I have a Number Item that will receive a 1 or a 0 and I want to transform that into “Secured” or “Not Secured”. I followed the “transforming” configuration page (http://docs.openhab.org/configuration/items.html) but am a still only getting 1 or 0 to display. The Item gets updated via a Rule.

Item-
Number BreachAlert “System Status: [MAP(System.map):%s]”

System.map-
0=Secured
1=Breach
NULL=NULL
-=NULL

test.sitemap-
sitemap demo label=“My home automation” {
Frame label=“HomePi” {
Text item=BreachAlert
}

Rule-
BreachAlert.postUpdate(1)

What are you seeing in the openhab.log?
When I first tried transformation in OH2 i had the same effect; in the logs would be something like “transform thingy not found…”. Basically I wasn’t aware that you had to install the “Map transformation” via PaperUI, Addons, Transformations for this to work.
HTH,
-OLI

@Oli I was missing the “Map transformation”. Restarted and it worked!

Kewl :thumbsup: