Why the process is completed after executing the if activity without executing further activities in workflow. It is showing a message box with value False. But there is no message box with value False in my workflow.
GlobalVariables and GlobalConstants ShippingProcess.zip (118.6 KB)
Hi @Rahul_Manu
Can you attach a screenshot of the result please ?
Hi @Rahul_Manu ;
Check this — you have placed the ‘=’ sign outside the double quotes, which is why you’re getting ‘False’ as the output.
Use this:
"Customer Name :-" + CustomerName + Environment.NewLine + "Customer Address :-" + CustomerAddress + Environment.NewLine + "Customer Type :-" + CustomerType + "Total Shipping cost with the tax rate : " + TaxRate.ToString + " is :- " + TotalOrderCost.ToString
Regards,
Vinit Mhatre
Issue solved, Thank you for your support
