Changing data of customers or contacts

Hello everyone!

Please let me help.
I have some customers made from contacts. When I change e.g. a house number on contact card, it changes automatically on customer card as well, and vice versa.
Now I made a new field in both tables, and then on both cards. But unfortunately it doesn’t work the same way. Changes made on contact card can not be seen on customer card, and vice versa.
What can be the problem?
Thanks in advance

The new field in both the tables should have same ID and data type.Did you take care of this.

Welcome to Dynamics User Group [:)]

I think, you have add following code in OnModify trigger of Customer table

(Contact <> xRec.Contact) OR
(Test <> xRec.Test)
THEN BEGIN

and

in OnModify function of Contact Table

(“Home Page” <> xRec.“Home Page”) OR
(Test <> xRec.Test)
THEN

Test is my new field in both tables with same ID

Thank you. :slight_smile:

I did, what you wrote, but unfortunately it is still not working.

Have you tried it? Has it worked for you?

Yes, it worked for me… recheck the code again and check with debugger also

It works. :slight_smile:

Thanks a lot.

Welcome [:)]