Hi all,
I have created a user table that contains information about the business Partner. In this table, I added the field CardCode, and some other fields.
I'd like to show the information in the Business Partner Master Data form, in a new tab with a matrix.
I can't find a good event to catch to update my form.
The matrix has to be reloaded each time the business partner change.
There are 3 way to choose a Business Partner :
- using the explorer button menu (the arrow first, previous, next, last). I can here catch the event and start my update function.
- in a find mode, there is the Choose from list form that will move the form to the good record. I may also catch the even of this form. Also there is the event when the user directly enter the CardCode value
- Finally, there is the link arrow on the others forms. That arrow is on a lot of forms, and I think it's impossible to catch the event on each one.
That is 3 differents way to update the form.
I'm not aware of a "On data load" event that my be used, I'd like to catch if it's possible an event on the business partner form and not on others.
I have this problem not only for Business Partner, but also for the Item master data
Thanks for your help.
Sébastien
Message was edited by: Sébastien Danober
Sébastien ,
Why can't you try catching the menu event?
Say for example, with BP Master, the explorer button menu event that you have mentioned can be caught as...
...
...
Select Case gstrMenuItem
Case "1282"
resetNewTab
...
...
...
...
Yet another way is to catch the change event of item-5 (BP Code) text box.
Thanks,
Ajith
Add a comment