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

Table control Vs Table control wizard

Former Member
0 Likes
1,265

Hi all,

I used table control wizard for my previous progams.Recently I have seen a thread here about putting data from 2 tables into table control.

<b>zgkmaster: zgktran:</b>

eid eid

ename dept

now I want to display eid,ename and dept in table control.While using wizard I dont know how to increase columns?

Please let me know any good tutorial for table control (not the wizard one)?

Few more questions:

1) Like 'leave to screen 1000' which statement should we use in selection-screens.

2) How to set the cursor to next field after validating in selection screens.

3) Can anyone list out important topics in ABAP programming in real time environment?I know that it depends from company to company.In generic any topics to pay more concentration on them?

Thanks a lot.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
889

hi,

just add that field as u do when u create table without wizard.

Give name of I/O field like <b>itab-matnr.</b>

Add matnr into internal table itab into top module where u declare all data.

and in PAI add one line

<b>FIELD ITAB-MATNR.</b>

LOOP AT itab.

CHAIN.

<b>FIELD itab-matnr.</b>

FIELD itab-maktx.

FIELD itab-matkl.

  • MODULE itab_modify ON CHAIN-REQUEST.

ENDCHAIN.

ENDLOOP.

Hope it will b useful.

reward if helpful.

3 REPLIES 3
Read only

Former Member
0 Likes
889

Check the below links :

http://www.sapmaterial.com/tablecontrol_sap.html

Thanks

Seshu

Read only

Former Member
0 Likes
890

hi,

just add that field as u do when u create table without wizard.

Give name of I/O field like <b>itab-matnr.</b>

Add matnr into internal table itab into top module where u declare all data.

and in PAI add one line

<b>FIELD ITAB-MATNR.</b>

LOOP AT itab.

CHAIN.

<b>FIELD itab-matnr.</b>

FIELD itab-maktx.

FIELD itab-matkl.

  • MODULE itab_modify ON CHAIN-REQUEST.

ENDCHAIN.

ENDLOOP.

Hope it will b useful.

reward if helpful.