Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

screen

Former Member
0 Likes
366

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.

2 REPLIES 2
Read only

Former Member
0 Likes
344

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

Read only

Former Member
0 Likes
344

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.