Request-local Variables

I am trying to define a bunch of Requests for SOAP actions. For each one, I’d like to set a variable that is local to the Request itself, such as “my_request_name”. That way I can set a bunch of Preset fields like “SOAPAction” : “http://myws.example.com/2020/07/MyWebService/IWebService/{{my_request_name}}”. Then all I have to do is specify “my_request_name” once in each Request, and all my added fields are customized.

I can’t use the Environment or Collection variable name spaces, because the variable would only be right for one of the Requests, not each of them.

This could be implemented as another Request tab, like the “Params” one, but for “Variables”. Normal variable scope nesting would apply, with the Request variables being applied above Environment variables and below Data variables.