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

Reg. Table Control with wizard

Former Member
0 Likes
539

Hi,

I have some clarifications regarding Table Control with Wizard.

Actually my scenario is I have created one Table Control with Wizard using Internal Table, for this i have created one Workarea and Itab with onre Field and one selection field.

My Problem i have created that and system will create some code for that also. But the default icons like Select all, Deselect all, inset, etc are not working.

Once i entered something on the screen table control and click means every thing goes off. Whatever i typed in that table control rows gets disappear.

Any Body Knowing this and faced this type of scenario. Please help me how to proceed and if possible give me some sample code also. its urgent. Reply me as soon as possible.

Regards,

Mithun.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
514

hi,

Just modify your codings in PAI (shown in below ) to retrieve the values in table control.

        • this code already exist during TC creation with wizard

module TC_modify input.

modify ITAB from wa

index TC-current_line.

        • you have to write only this

if sy-subrc ne 0.

append itab.

endif.

        • thats it

endmodule.

reward if it is useful.

Senthil kumar

3 REPLIES 3
Read only

Former Member
0 Likes
514

Hi,

Please refer sample programs

======================

RSDEMO_TABLE_CONTROL

DEMO_DYNPRO_TABLE_CONTROL_1

DEMO_DYNPRO_TABLE_CONTROL_2

RSDEMO_TABLE_CONTROL

RSDEMO02

Thanks,

Aby Jacob

Read only

Former Member
0 Likes
515

hi,

Just modify your codings in PAI (shown in below ) to retrieve the values in table control.

        • this code already exist during TC creation with wizard

module TC_modify input.

modify ITAB from wa

index TC-current_line.

        • you have to write only this

if sy-subrc ne 0.

append itab.

endif.

        • thats it

endmodule.

reward if it is useful.

Senthil kumar

Read only

0 Likes
514

Hi Senthil,

Thanks for your valuable response. My problem resolved.

Regards,

Mithun.