becks2203
28th August 2014, 17:04
Hi All,

I have one MMT session .It has three tabs all referring to different main tables .My situation is if I update a value in one field of a tab,the same value should get updated in the field of another tab.By different tabs I mean different main tables

bhushanchanda
5th September 2014, 14:25
Hi,

There can be number of ways to do that. You can write a DAL for 1st main table and in its after.save.object() update the other table, or you can use UE DLL function after.after.save.., or you can use main.table.io() in your program script in before.write()/before.rewrite().

Depends on how you want to do it.

NPRao
9th September 2014, 19:55
Alternatively, you can use - Process Change Manager Code Examples (http://www.baanboard.com/programmers_manual_baanerp_help_functions_prcm_examples)

becks2203
11th September 2014, 14:56
Hi All,
Thanks for your valuable suggestions .FInally I have achieved it .I used the code in after.save and updated the other table via dal .worked fine for me.Thanks in tonnes everyone :)