‎2007 Sep 27 12:15 PM
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.
‎2007 Sep 27 12:44 PM
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.
‎2007 Sep 27 12:17 PM
Hi,
Table Control
http://help.sap.com/saphelp_erp2005vp/helpdata/en/d1/802338454211d189710000e8322d00/frameset.htm
Table Control Wizard
http://help.sap.com/saphelp_erp2005vp/helpdata/en/d1/802338454211d189710000e8322d00/frameset.htm
Tab Strip
http://help.sap.com/saphelp_erp2005vp/helpdata/en/04/10f2469e0811d1b4700000e8a52bed/frameset.htm
Tab Strip wizard
http://help.sap.com/saphelp_erp2005vp/helpdata/en/04/10f2469e0811d1b4700000e8a52bed/frameset.htm
Regards,
Priyanka.
‎2007 Sep 27 12:26 PM
‎2007 Sep 27 12:44 PM
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.