When working with Advanced SQL actions, there is the option to add test values to the parameters, and run the query with them.
The executed query is shown in the "Executed SQL" tab, which is great.
However, it would be very helpfull if that query could be extended with the parameters used.
e.g.
declare @company_id int;
set @company_id = 3;
SELECT [OSDEV1].dbo.[OSUSR_WU3_COMPANY].[ID]
, [OSDEV1].dbo.[OSUSR_WU3_COMPANY].[NAME]
FROM [OSDEV1].dbo.[OSUSR_WU3_COMPANY]
WHERE [OSDEV1].dbo.[OSUSR_WU3_COMPANY].[ID] = @company_id
That would make it possible to copy the query with the used parameter values, and paste it in the database tool and be able to run it directly (instead of having to configure the parameters again).
Please note that this is somewhat related to this idea, but I believe my suggestion is better: https://www.outsystems.com/ideas/8176/show-real-value-on-advanced-query-executed-sql/