on 2005 Aug 02 6:15 PM
If a BP or Item Master Data record appears that contains notes in the "Details" tab, I'd like a message box to come up alerting the user to this fact. Seems like it would be fairly simple. I can do this when a BP or Item is brought up from a orange arrow without a problem. However, the tricky part seems to be trapping the navigation button event when the user navigates through the master data using the "VCR" buttons. I've not yet found the correct event to trap to do this reliably AFTER the master data loads from the VCR button press. Any ideas or advice would be appreciated.
Thanks,
Greg
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm 90% there. I've been able to trap a single record navigation, but still am not sure how to trap the event for "Move To First Record", and "Move To Last Record". Below is my code snippet:
If pVal.EventType = et_ITEM_PRESSED And _
pVal.FormMode = 1 And pVal.ItemUID = 18 And _ pVal.Before_Action = False Then
oSBO_Application.MessageBox ("Navigation happened.")
End If
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
105 | |
8 | |
6 | |
6 | |
5 | |
5 | |
4 | |
3 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.