Is this forum just for PB 2017 questions or can I ask a PFC question?
i have created a master detail relationship with multiple DWs using the PFC linkage service. The master is on the top part of the window and the details DWs are on separate tabs in a tab container UO in the bottom half of the screen. I have registered all the child DWs with the Master DW and it all work well and retrieves all of the child DWs when I retrieve the Parent. On one of the child tabs there is a list of detail rows (from a child table), you can add a row by pressing a button, filling in the required data and the pressing close. A save is triggered by the response window and a new child record is created in the table. What event do I trigger to re-retrieve the DW on the tab to refresh the list of child records. I've looked through the various PFC info sites and can't find the answer.
Thanks for for your help, and I apologize if this is not the right forum for this type of question.
HTH
The way to do that is to POST the call to your dw.EVENT pfc_retrieve () event. Please ensure that any errors are caught in that event and any notifications to the user are handled at the bottom of the event.
When you close the response window you are right back to the calling event in the master window, and you can pass back a status code if further processing is required as a result of the activity in the response window.
Good Luck,
Olan