Dynamic Query After field Change

I am looking for a way to trigger the update to and run the dynamic query once the part is retrieved on part tracker. I am using the data view binding for the field but i can get the after field change to trigger. Not sure what i can do. This does work when I click on a button and it runs correctly.

Blockquote

	{
		txtPartNum = (EpiTextBox)csm.GetNativeControlReference("7f272d9b-8a8e-4b95-9443-aaf76575b655");
		DynamicQueryAdapter dqa = new DynamicQueryAdapter(oTrans);
		dqa.BOConnect();
		QueryExecutionDataSet qeds = dqa.GetQueryExecutionParametersByID("PricelistDataView");
		qeds.ExecutionParameter.Clear();
		qeds.ExecutionParameter.AddExecutionParameterRow("PartNumber",txtPartNumPriceList.Text,"nvarchar",false,Guid.NewGuid(),"A");
		dqa.ExecuteByID("PricelistDataView",qeds);
		ugPartPriceList.DataSource = dqa.QueryResults.Tables["Results"];
	}````

Wondering if a BAQDataView might work - publish/subscribe?

Here are a couple topics on BAQDataView

Thanks for the reply yeah did see that and found it on one of @josecgomez you tube videos and it made the solution work thanks.