tables.USERS_table.fetchTable();
which executes OK but doesn't now contain the new data already committed to database in the profiles submit button ( this is checked in the database and the data is now current)
I am tracing the execution and can see the calls happening when I re-display the page, the old information persists even though the update stored procedure completed ok and I can confirm that the database is current.
The question is, is this call permissible from the platform point of view or should I be asking user to logout/in for the changes to take effect?
Code: Select all
tables.CREDENTIAL.insertRow();
tables.CREDENTIAL.ID.value="firstname";
tables.CREDENTIAL.VALUE.value=tables.USERS_table.firstname.value;
I have also tried to force a logoff after the profile commit and login again via code and still no joy.
sorry for the abstract nature of question.