Input_text.set_value - Where is the output going?

Hi there,

I am using the “input_text.setvalue” to write some data in “input_text.callmon_lastcaller”, but I can not find it anywhere … where I am supposed to look for the content of this “callmon_lastcaller” I have created ?

I thought it would create an entity, but I can not find it.

alias: callMon_setLastCaller
description: ""
trigger:
  - platform: state
    entity_id: sensor.fritz_box_7530_ax_call_monitor_repertoire_telephonique
    to: ringing
condition: []
action:
  - service: input_text.set_value
    target:
      entity_id: input_text.callmon_lastcaller
    data:
      value: >-
        {{
        state_attr("sensor.fritz_box_7530_ax_call_monitor_repertoire_telephonique",
        "from")}}  ({{
        state_attr("sensor.fritz_box_7530_ax_call_monitor_repertoire_telephonique",
        "from_name") }})
mode: single

Purpose is that I can then use it somewhere.
Man thanks !

Did you create that helper? If not, it’s not going anywhere.

thank a lot, indeed an helper needs to be created first, from the parameters menu.
Many thanks !!!