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

How to insert/Update date into customized Table?

Former Member
0 Likes
801

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
Read only

KK07
Contributor
0 Likes
758

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
Read only

KK07
Contributor
0 Likes
759

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.

Read only

Former Member
0 Likes
758

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

Read only

Former Member
0 Likes
758

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

Read only

Former Member
0 Likes
758

issue completed