In my workflow
from Main I have invoke another flow called InputExcel from this flow I have invoke another flow called Process flow.
I have pass out arguments from InputExcel flow to Process flow so those argument also reflect in Main flow
Suggest how I can correct it what mistake I am doing while invoking flows?
ashokkarale
(Ashok Karale)
September 30, 2024, 8:49am
2
@Sanket_Shinde1
Check if the arguments you are passing are not declared as arguments in the parent workflow from where you are invoking.
The variables should not be arguments in Main.xaml
1 Like
Main flow has only three out arguments
in main I have invoke InputExcel flow its show out arguments
last four out arguments which I have passed it from InputExcelFlow to Process Flow
ashokkarale
(Ashok Karale)
September 30, 2024, 9:48am
4
@Sanket_Shinde1 ,
Try creating a new project and check if it’s happening in that one also.
What’s the studio version your are using?
1 Like
I am using the latest . 2024.10.5
ashokkarale
(Ashok Karale)
September 30, 2024, 10:32am
6
ok. Is the behavior is same for new project as well?
1 Like
Anil_G
(Anil Gorthi)
September 30, 2024, 12:25pm
7
@Sanket_Shinde1
looks like the out arguments are declared in inputexcel.xaml instead of process xaml
can you please check the same
cheers
1 Like
Yes…I want to pass values from inputExcel.xaml to process.xaml
Anil_G
(Anil Gorthi)
September 30, 2024, 1:51pm
9
@Sanket_Shinde1
then the arguments needs to be declared as an input argument in process xaml and not out argument in inputexcel…out in inputexcel means they will go out from the xaml to the called xaml which is main
cheers
1 Like
ok, I need to store them in variables instead of out arguments right
Anil_G
(Anil Gorthi)
September 30, 2024, 2:01pm
11
@Sanket_Shinde1
if you are getting alue from process and need only in inputexcel xaml then…declare out in process and use variablea nd link it in invoke workflow
Hope this helps
cheers
I want to pass value from inputExcel.xaml to Process.xaml
Anil_G
(Anil Gorthi)
September 30, 2024, 2:05pm
13
@Sanket_Shinde1
then declare in argument in process and link the variable from inputexcel which is to be passed
cheers
1 Like
Thank you so much!!! @Anil_G
1 Like
system
(system)
Closed
October 3, 2024, 2:09pm
15
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.