I am pretty new to Application Studio and am looking for the simplest approach to accomplish the following:
So I am adding three read-only text boxes to the End Labor Activity application that populates with the following information as reference for the user:
Total operation prod quantity
Quantity completed on the operation
Quantity remaining on the operation
So far, I have done the following:
created a BAQ that supplies the information and added it as a data view
Added the three text boxes, set them as read-only, and set their epbinding to .
Where I am hung up is getting the text boxes to populate with the necessary values from my BAQ. From my research, it sounds like there are a few different ways handle this, but I have not had much luck getting them to work yet. Honestly, the options have been overwhelming, especially when they involve tools I have zero experience with (BPMs), and I am looking for a little hand holding here.
Any help pointing me in the right direction would be greatly appreciated! Even if it’s pointers on what training material I should spend more time with to help myself.
I am assuming I will need to specify a ‘where’ condition under execution options which returns the baq values that correspond to the specified oprseq value?
This is the ‘where’ condition I am rolling with: JobOper_JobNum = ?{LaborDtl.JobNum} AND JobOper_OprSeq =?{LaborDtl.OprSeq}
So if I understand correctly, I can eliminate that condition if I configure the parent child relationship between the two dataviews in the same fashion?
Oh you’re in end activity not report qty, that’s why our binding is different. Yeah I would probably just do it with parameters in your BAQ. You can map the parameter values in the kinetic-baq widget in the get event. But yeah it should also be possible if you go into your dataview and add the parent relationship there.
So “End Activity” application opens with the operation seq already specified, which is based the operation I have selected from the Queue in MES. Does that fact change how I should be configuring the event?