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: 

Adding table control to VA41 additional data tab

Former Member
0 Kudos

My requirement is to add table control in the addtional data tab of the t-code VA41 so that user has got some flexibilty to add some more data in the table control to the contract.

If user uses t-code VA42 should be able to change the entries in the table control field and then save then to the database as other normal entries.

If user uses t-code VA43 then the table control should display all entries added to the table control with other normal data.

1 REPLY 1

saranwin
Contributor
0 Kudos

Hi,

You can create Customized table control in the standard program SAPMV45A. Before creation you should get the access key from your basis consultant. Put the case condition like

Case sy-tcode.

when 'VA01'.

create.

When 'VA02.

change.

When 'VA03'.

display.

Endcase.

Refer some standard program coding to change the data in the table control.

Regards,

Saran