I created that table :-
create table syn (col1 number , col2 number);
and in forms 6i ..... I determinate col1 as the value for "Synchronize with Item" .
and when I test it in runtime , it work correctly and after I saved the data and get out of forms and went to database to ensure the data existing ... I surprised that the data in col2 not existing at all .... wholly empty
SQL> select*from syn;
COL1 COL2
---------- ----------
1
2
3
4
5
6
7
8
8 rows selected.
why the item (COL2) don't save the data that inserted into it automatically by "Synchronize with Item" property ????
I attached the MODULE6.fmb file that explain what I mean practically .