BPM to default a checkbox to True

I’m trying to create a BPM to default the Backflush checkbox on the Part maintenance.

I have tried this as a Method Directive, Post Processing and as a Method Directive Pre Processing. Neither works.

I added the Set Field icon and then I selected the ttPartPlant table and the Backflush field and set the expression to true.

Does anyone have any suggestions?

Which method are you using to trigger the BPM?

I have GetNewPart for the Method.

~;)Karen

Karen,

I think the problem is that the PartPlant table isn’t populated with the first record until you save. I think you will have to do it in a data directive watching for new PartPlant records.

That is probably true, but I think there is another issue. I tried it on update(Part Detail) and the bpm triggers but doesn’t affect the backflush checkbox. But when I try modifying the site form then it checks the backflush. Both trigger it but only by changing the site form does it stick.

Thanks for the lead!

I made an In Transaction Data Directive on the PartPlant table that changes the Backflush flag to true for the added row. As long as the users know it doesn’t do it until the new part is saved, it works for us.

~;)Karen