I have a store sequence where i have stored 4 variables so that it can get the data from queue
One of them is Productcode=queueitem.SpecificContent(“Product Code”).ToString
I want to know whether the value is stored in variable or not .
So i use Log Message activity with level as info
and message as (“ProductCode”+“Quantity”+“UnitPrice”+“CostCentre”).ToString
so that it displays all the value . I am not sure as this is not working .
Could anyone please let me know if I am using the correct syntax for Log message activity .
Hi,
According to my understanding, As you ProductCode has been already converted to string, while logging you don’t need to specifically again mention it to .toString. In Log message activity you can directly type ProductCode+Quantity+UnitPrice+CostCentre which prints the value stored in these variables.
If you use (“ProductCode”+“Quantity”+“UnitPrice”+“CostCentre”).ToString it just print the name you mentioned in double quotes.
I have attached the workflow where in 4.xaml, I have used the Log message acitivity . I am invoking the 4.xaml file in 1-3.xaml file .
I want to know whether the data is being pulled from the queue .
Could anyone of you help me out here
Thank you Nadim . That was exactly what i was looking for . I am not able to see any changes in the xaml file and in there is an error in the file “1 to 3.xaml” when i open it here .