Some Activities aren't called fro main but called with in a particular workflow

Hi,

I have created a workflow that consists of activities like create local directory and fetch files from Storage bucket and used variables.
When to the wf is executed using run file, all files are downloaded but when executed from main no file is downloaded.

Can anybody tell why it is happening??

Thanks!

@gsriv1298 Usually Main.xaml is the primary starting of the execution. So if you want to execute another workflow(.xaml file), you have to use Invoke workflow and call that workflow within Main.xaml.

Then it should work.