2007 Sep 20 10:13 AM
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.????????
Hi
The field is getting cleared in PBO or PAI
check for it, where it is getting cleared.
Reward if useful
regards
Anji
2007 Sep 20 10:15 AM
Hi
The field is getting cleared in PBO or PAI
check for it, where it is getting cleared.
Reward if useful
regards
Anji
2007 Sep 20 10:16 AM
doublclick on the field which disappeard and check property...
raj
2007 Sep 20 10:17 AM
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
2007 Sep 20 10:22 AM
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
| User | Count |
|---|---|
| 6 | |
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |