In Kinetic 202X, how do I get the query results in a GetList method of an updatable BAQ

I am trying to build an updatable BAQ where it removes PPlanMtl records where the associated part table record has a certain ClassID. I want to be able to schedule this using the BAQ Export Process. When I go into the GetList method I do not see TTResults record set. How do I get the results of my BAQ in the GetList method.

Thanks in Advance,

Jeff

They changed is so it’s not TT tables anymore. It looks like in GetRows on the BAQ it’s a parameter “result”. Usually when I’m looking for the resident dataset, I just right click in the code window, and look at the parameters. Sometimes it’s result, sometimes it’s ds.results, so it depends on where you are.

image

image

2 Likes

That was it. Thank you so much.