Hi,
I have a process with a SQL Operation which executes a query stored in a table :
DECLARE @sqlCommand nvarchar(1000)
SET @sqlCommand = :{CODE_SQL_ACTION}:
EXECUTE sp_executesql @sqlCommand .....
The query executed with the sp_executesql :
SELECT 1
FROM %x{$RAPPROCHEMENT/tech:physicalPath()}x%
WHERE 1 = 1 AND ....
My issue is that the %x{$RAPPROCHEMENT/tech:physicalPath()}x% is generated from metadata information during the build.
So when my process is executed, the %x{$RAPPROCHEMENT/tech:physicalPath()}x% is not replaced with metadata information.
Is there a synthax to do it?
Thanks