Hi @Laxmi Kakarlapudi ,
Thanks for your reply, i think it really depends on the scenario you're facing, there're some variables that have not being considered within your specific question, if you want to do Web API Call then you could use ADF Web Activity component and send parameters for example by Body in JSON format, what i would not recommend is sending a huge amount of data this way, here's a link for documentation:
https://learn.microsoft.com/en-us/azure/data-factory/control-flow-web-activity
On the other hand if what you need is to apply some business rules based on two different data sources i would recommend is following the strategies bellow
- Create staging/bronce area into datalake then create data flow and add the different data sources to apply business rules there.
- Create staging area within database then apply business rules via stored proc to get final data into the DB, here you'll need to do stored procedure calls for example to execute your business rules.
Please let us know if that works for you, if so, could you please mark as Accepted Answer?, Accepted answers helps community as well as @ShaikMaheer-MSFT already mentioned.
Thanks!