‎2006 Oct 19 3:01 PM
hi friends,
i have created database table emp with eno , ename , depno.
on screen i have 3 fields eno,
ename,depno.
how to change entries in database table.
how to do through program.
thanx.
‎2006 Oct 19 3:05 PM
add one button to that screen
in the PAI of that screen add the code for that button
when 'CHANGE'.
ztable-field1 = field1.
ztable-field2 = field2.
ztable-field3 = field3.
modify ztable
‎2006 Oct 19 3:07 PM
declare three fields.
v_eno,
v_enmae,
v_depno and create fields on screen with these field names .
in the programe.
ztable-eno =v_eno.
ztable-ename= v_ename.
ztable-depno = v_depno.
modify ztable.