I am currently using "{{!TransView.UD03PartNum && !TransView.Qty && !TransView.FaultDesc}}" but it being TransView… I guess the UI doesn’t know the column has changed… I just keep getting the error message when I press “OK” but the data is present…
Do you think it’s possible to bolt columns onto this DataView
Via a BPM I have done a event which bolts them on via a erp-rest then row-update but it breaks so many other things… You’ve done this before with Job Entry but how would I bolt on columns from RMADtl?
I need couple UD columns from that and one native column…
Okay dokey! If you take a look at Case Entry (Kinetic)… ugh Kinetic… . You will notice a grid called “RMA” which is bound to a DataView called “HDCaseRMA” which seems to be generated from some internal code with just the RMA number on it and some other useless crap.
I need to get data from RMADtl a child of RMAHead -
My columns are ReturnReasonCode UD_DueDate_c LineNum
I thought this would be easy, I can just call a BAQ and pass some parameters to it and bind the data to a DataView of my own I named “RMABAQ” which worked perfectly, I seen my data then proceeded to do a row-update to add those columns to “HDCaseRMA” which worked…I seen my data in that dataview.
The annoying part is when I tried to go out of the current screen back to the landing page it would error saying HDCaseRMA has been updated which it has… I couldn’t figure out how to avoid it from doing it without breaking some base logic.
This the point I am at… Hence asking for the big hammer…
Would a FKV work? I haven’t tried this yet, but add a new dataview, make it a child of the one you are adding columns to, and then add your columns to the grid like before. Instead of row-update, set the new columns epi-binding to your child dataview.
Obviously, populate your child dataview with something at an appropriate load point.