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: 

Need to add field "Programme Name" in VA01/02/03 under tab additional data at Header Level

amit_madkar
Explorer
0 Kudos

Need to add field " Programme Name " in VA01/02/03 under the TAB Additional Data at HEADER LEVEL.

1) It should be mandatory field for sales tpye Z***

2) Value should be picked from list for which we need separate table.

Valur should be as

SR no.    Programe Name

1.            Percale

2.            Rebuy

3.            Rollout

1 ACCEPTED SOLUTION

Former Member
0 Kudos


go to program SAPMV45A  and screen number 8309.

Under process before output create MODULE HEADER_DISPLAY.

Based on Sales type conditions wite the logic as required.

For making the field mandatory use as below in Loop at screen.

SCREEN-REQUIRED =  '1'.

For values to be displayed. Go to that particular field in VBAK and assign the foreign key relation to it and for check table assign your new z-table created with the entries mentioned by you.

Hope it solves your problem else feel free to share.

Regards,

Anand.

2 REPLIES 2

Former Member
0 Kudos


go to program SAPMV45A  and screen number 8309.

Under process before output create MODULE HEADER_DISPLAY.

Based on Sales type conditions wite the logic as required.

For making the field mandatory use as below in Loop at screen.

SCREEN-REQUIRED =  '1'.

For values to be displayed. Go to that particular field in VBAK and assign the foreign key relation to it and for check table assign your new z-table created with the entries mentioned by you.

Hope it solves your problem else feel free to share.

Regards,

Anand.

0 Kudos

Thank you Sir for your reply.