Hi @Nikunj Patel ,
Welcome to Microsoft Q&A and thanks for your query.
Since you are having different parameter names for each SP, I would recommend having your SP list table schema like :
Id
, ProcedureName
, ProcedureParameterName
, ProcedureParameterValue
Then you can retrieve the ProcedureParameterName
and ProcedureParameterValue
from your lookup activity and pass it to ForEach activity.
And finally pass SP parameters name & value dynamically as using this expression in Stored procedure activity settings : @item().ProcedureParameterName= @item().ProcedureParameterValue
,
Example as below:
Hope this helps. Let us know if you have further query.
----------
Please do consider to click on "Accept Answer" and "Up-vote" on the post that helps you, as it can be beneficial to other community members