Application Development 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: 

dialog program

Former Member
0 Kudos

i created a dialog program to display sales doc detail and material details using tab-strip.

i have to perform insert,delate and update for corresponding tables.can any give a clue.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

use a table control instead its better to understand and perform fuctions such as insert delete update etc.

if u want to perform these function create a work area , take these values into WA and then update ur internal table or database table(if its not standard table)

4 REPLIES 4

Former Member
0 Kudos

use a table control instead its better to understand and perform fuctions such as insert delete update etc.

if u want to perform these function create a work area , take these values into WA and then update ur internal table or database table(if its not standard table)

KK07
Contributor
0 Kudos

hi Devendra,

the syntax for update is Update <ztab>.

the syntax for Delete is Delete <ztab>.

the syntax for insert is insert <ztab>.

if it is custom table then we can use direct statement then we can use,else it is not recomondable to use these staements also,instead of tabstrip u can use table controls.

Former Member
0 Kudos

Create a table control. You may use the wizard for the Table control so things will be a lot easier.

Former Member
0 Kudos

Hi devendra,

IT is not advisable to alter/insert standard table records, better you can use a ztable to do the modifications.

Regards

Karthik D