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: 

How to insert/Update date into customized Table?

Former Member
0 Kudos

Dear Experts,

I have created a table with three fields.fileds are (kunnr,audat,zcost)

now i want to insert and update the table with selection screen kunnar,audat and zcost.

Can you plz tell me how to proceed?

Waiting for ur replies...

Thanks and Regards

sriii

1 ACCEPTED SOLUTION

KK07
Contributor
0 Kudos

hi,

if it is custom table table then u can go for direct statements like insert,update,...

for update just use the satement UPDATE,for insert INSERT,for delete DELETE.

press F1 on those to know how to use.

4 REPLIES 4

KK07
Contributor
0 Kudos

hi,

if it is custom table table then u can go for direct statements like insert,update,...

for update just use the satement UPDATE,for insert INSERT,for delete DELETE.

press F1 on those to know how to use.

Former Member
0 Kudos

write insert then press F1 You can learn by yourself too easy.

Regards,

Midhun abraham

Edited by: Midhun Abraham on Oct 8, 2008 7:16 AM

Former Member
0 Kudos

hii reddy,

selection-screen begin of block sel with frame title text-009.

parameters: objectid TYPE crmd_orderadm_h-object_id OBLIGATORY.

parameters: res_time TYPE Ztable-TIME OBLIGATORY.

selection-screen end of block sel.

UPDATE ZSOLMAN_SLA SET TIME = RES_TIME WHERE OBJECT_ID = OBJECTID AND STATUS = 'E0001'.

IF SY-SUBRC = 0.

WRITE : 'RESPONSE TIME SUCESSFULLY UPDATED '.

ELSE.

WRITE : 'COULDNOT BE UPDATED'.

ENDIF.

Similarly ,

use insert statement.

Regards,

sabari

Former Member
0 Kudos

issue completed