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,delete into database table using Table control???

Former Member
0 Likes
1,052

hi all,

<b>How to insert ,update,delete into database table using Table control???</b>

I want to insert update delete into database table using Table controls

thanks.

5 REPLIES 5
Read only

Former Member
0 Likes
813

Please have a look at these pgms

DEMO_DYNPRO_TABLE_CONTROL_1

DEMO_DYNPRO_TABLE_CONTROL_2

demo_dynpro_tabcont_loop_at.

Reward if useful

Read only

former_member196299
Active Contributor
0 Likes
813

hi ,

Please check this thread :

check for this thread also :

else for step by step process check this :

http://esnips.com/doc/48bd95e8-facc-4932-b923-465ba59bad24/Table-Control.pdf

Regards,

Ranjita

Message was edited by:

Ranjita Kar

Read only

Former Member
0 Likes
813

Hi,

Please check this sample code for table control.

SAVE_OK = OK_CODE.

CLEAR OK_CODE.

CASE SAVE_OK.

...

WHEN 'INSERT'.

READ TABLE TC-COLS INTO COL WITH KEY SCREEN-INPUT = '1'.

IF SY-SUBRC = 0.

LOOP AT I_BINLOC INTO ZMBINLOC WHERE ZMARK = 'X'.

CLEAR ZMBINLOC.

INSERT ZMBINLOC INTO I_BINLOC INDEX SY-TABIX.

ENDLOOP.

DESCRIBE TABLE I_BINLOC LINES TC-LINES.

ENDIF.

WHEN 'SAVE'.

SORT I_BINLOC ASCENDING BY WERKS LGORT ZBINLOC.

DELETE ADJACENT DUPLICATES FROM I_BINLOC.

IF NOT I_DELETE[] IS INITIAL.

DELETE ZMBINLOC FROM TABLE I_DELETE.

ENDIF.

MODIFY ZMBINLOC FROM TABLE I_BINLOC.

IF SY-SUBRC = 0.

MESSAGE S899(BD) WITH TEXT-002.

ENDIF.

WHEN OTHERS.

ENDCASE.

...

Also please<b> demo program RSDEMO02.</b>

check these links.

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/abap/abap-code-sam...

http://sap.niraj.tripod.com/id29.html

http://help.sap.com/saphelp_sm32/helpdata/en/9f/dbac9f35c111d1829f0000e829fbfe/frameset.htm

Regards

Read only

Former Member
0 Likes
813

see abap example program.

t_code abapdoc.