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: 

Table control

Former Member
0 Kudos

Hi ,

I have a problem in table control ... in that if i enter a value and press enter the value gets disappeared can any one help????? why its happening.????????

4 REPLIES 4

Former Member
0 Kudos

Hi

The field is getting cleared in PBO or PAI

check for it, where it is getting cleared.

Reward if useful

regards

Anji

Former Member
0 Kudos

doublclick on the field which disappeard and check property...

raj

Former Member
0 Kudos

hi

don't clear the wa of itab

first insert or append the body of internal table and pass the value to the table control then u will get the values

it may works

Former Member
0 Kudos

hi,

in pAI u having chain endchai statment.

just look at this.

PROCESS AFTER INPUT.

MODULE exit_0100 AT EXIT-COMMAND.

*&SPWIZARD: PAI FLOW LOGIC FOR TABLECONTROL 'TAB1'

LOOP AT itab_det.

CHAIN.

  • FIELD itab_det-comp_code.

FIELD itab_det-bill_no.

FIELD itab_det-bill_date.

FIELD itab_det-vend_cust_code.

FIELD itab_det-bill_amt.

<b>MODULE tab1_modify ON CHAIN-REQUEST.</b>

ENDCHAIN.

FIELD itab_det-mark

MODULE tab1_mark ON REQUEST.

ENDLOOP.

make one module there as i made <b>MODULE tab1_modify.</b>

<b>MODULE tab1_modify INPUT.</b>

APPEND itab_det.

<b>ENDMODULE. </b> "TAB1_MODIFY INPUT

it will work