Page 1 of 1

View is not loading

Posted: Thu Sep 13, 2012 2:44 pm
by nag123
Hi,

I have a TI process that builds the view and another TI process will use that view as a source and load. But in my case First process is creating view properly i can see the values but second process is completed but not loading any values. i used the same code as in second process and i created a view manually and able to load that.

any sugestions will appreciate.

Thanks,
nag

Re: View is not loading

Posted: Thu Sep 13, 2012 3:39 pm
by qml
I would suggest that maybe the view you create doesn't e.g. include rule-calculated values (whereas it should).

Check out these switches and use them to make sure your view actually returns what you expect it to.
ViewExtractSkipCalcsSet
ViewExtractSkipRuleValuesSet
ViewExtractSkipZeroesSet

To further debug the problem you can put some ASCIIOutput on your Data tab to see if it gets executed at all (it will not if the data source is empty).

Re: View is not loading

Posted: Thu Sep 13, 2012 3:46 pm
by nag123
I have added all these 3 and disabled. I can see data in view and verified properties but when i run second process its not going to data tab its ignoring i cant able to put ascii output.

Thanks,
nag

Re: View is not loading

Posted: Thu Sep 13, 2012 4:52 pm
by qml
Can you post your script from the first and second TI here?

And by the way, there is normally no need to create a view that will be used as your data source in a separate TI. Normally you can do it in the Prolog of the same process that will be using this view as Prolog is executed before opening the data source.