BAQ DataView UltraGrid

Hi,
I have a custom BPM Dataform that query’s job materials based on the Job number and populates a UltraGrid.
My issue is that the UltraGrid won’t load on the form opening however if I change the job number it will pull in the data.

I think it is something to do with the Publisher waiting for a change to the column and I need to publish it on opening however I could be wrong.

public void CreateBPMTriggerDataview()
{
 	bPMTriggerDataview = new BAQDataView("JobMtlDataView");
    oTrans.Add("BPMTriggerDataview", bPMTriggerDataview);

    string pub1Binding = "BPMData.Character10";
    IPublisher pub1 = oTrans.GetPublisher(pub1Binding);
    if (pub1 == null)
    {
        //string pubName = Guid.NewGuid().ToString();//
       oTrans.PublishColumnChange(pub1Binding, "MyCustomPublish");
       pub1 = oTrans.GetPublisher(pub1Binding);
    }
    if (pub1 != null)
        bPMTriggerDataview.SubscribeToPublisher(pub1.PublishName, "JobMtl_JobNum");
		       
}

How are you populating BPMData.Character10?
Do you want the baq dataview to refresh on form load before there is a job number?

Character10 is coming from the BPM so it is there at the beginning

I don’t think there’s a BPM fired form load, but I’ll trust your statement.
You can add a manual refresh to the baq dataview to form load. (You could also populate BPM.Character10 on form load)