If you can simply answer to 2 folowing queries:
1)
I need to make editable one field in a tmp_tab .
I 've followed indication but the question is: can I make one tmp_tab field editable?
Effectively the fields is phisically not existing into the dbase so any update in a tmp_tab is not possible to me becuase it doe not go to chance any existing tab in te mysql.
If you can confirm.
--------------------------------------------------------------------
2) I need to edit a field date showing a calendar . So in the below
DROP PROCEDURE IF EXISTS sp_DBR_mobdemob_date_edit
$$ CREATE PROCEDURE sp_DBR_mobdemob_date_edit
(inco_id int,mob_demob date) BEGIN
/*chance Date*/
update u
set demob_date = mob_demob
where topic_id =inco_id;
END
$$
I've indicated the "DATE FIELD" in order to get the calendar appearing. However I cannot get the claendar and the field editable .
I might be wrong in the below command onto main report
select 'dbr.editable', 5, 'sp_DBR_mobdemob_date_edit', 'inco_id=9', 'type=date';
I'm not sure.
Thanks