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 fiedls in VA05 output list

Former Member
0 Kudos

Hi,

I want add some fields in VA05 output list , please help in this regard.

Netaji.B

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Structure VBMTV is used in VA05 list display. Custom fileds can be included in the structure VBMTVZ. Custom fields can be filled in the Include 'V05TZZMO'.

Manoj

4 REPLIES 4

Former Member
0 Kudos

Structure VBMTV is used in VA05 list display. Custom fileds can be included in the structure VBMTVZ. Custom fields can be filled in the Include 'V05TZZMO'.

Manoj

Former Member
0 Kudos

Hello All,

Assume you want to add VBAK-VSBED to the VA05 ALV o/p. You may proceed as follows:

First add this field to structure VBMTV. Proceed as follows:

1. Table VBMTV: Replace the dummy field with VSBED in Include VBMTVZ.

2. Table T180A: Add a new data record via Transaction SE16.

TBNAM = 'VBMTV'

FDNAM = 'VSBED'

ZUART = 'D'

3. Update of VSBED:User exit PERFORM MOVE_USERFIELDS USING 'VBAK' in

LV05TFMO, Include V05TZZMO add the following line behind

WHEN 'VBAK':

MOVE LVBAK-VSBED TO LVBMTV-VSBED. <-- Insert

4. Activate Include V05TZZMO.

5. If then, you log on to the system again and call up Transaction VA05

the system displays 'Shipping Cond' field.

Regards,

Asmita...

0 Kudos

Do we require Access Key for doing the same?

0 Kudos

hello asmita ;

its working and you can add trick like a different tables.

when vbkd.

...........

M.Ozgur Unal