---
sourceDocument: Australia Conversational Interfaces
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/pt-BR/conversational-interfaces

 Release :

    - australia

ft:locale :

    - pt-BR

ft:publication_title :

    - Australia Conversational Interfaces

ft:clusterId :

    - convint

bundleId :

    - convint

workflow :

    - Platform


---

# Send previous control to client

# Send previous control to client {#ariaid-title1}

* Versão de lançamento: Australia
* 
* Atualizado 12 de mar. de 2026
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 min. de leitura

Provide the ability to send previous control to client.
There are two ways to send previous control back from the server when a client requests:

* In inbound transformation, set `validation_message` in result. Previous control will be sent again with message provided in `validation_message`.
* In inbound transformer, set `send_prev_control` in result to true, previous control will be sent again. Use this method for Multi-Step controls.
{#send-previous-control-client__ul_idn_vmp_b4b}  
Example script:

    (function execute (inputs, outputs) {
      var result = {};
      var request_context = inputs.request_context;
      var typed_value = request_context ['typed_value'];
      if (typed_value.index0f("#") > -1)
        result["validation_message"] = "Invalid character, please don't enter special character '#'";
      result["value"] = typed_value;
      result["search_text"] = "";
      outputs.result - result;
    })(inputs, outputs);


