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

VA01 Additional Data Tab

Former Member
0 Likes
719

Hello experts,

I have add some custom fields at VA01/Additional Data Tab B (header level). But these fields display for different document types which is the least I want. I tried to control the visibility of for different document types. I coded at the PBO of the screen of Additional Data Tab b. But it does not work. How can I achieve this. Thanx.

Best regards,

ts

1 ACCEPTED SOLUTION
Read only

Abhijit74
Active Contributor
0 Likes
630

Hello,

Try to add field inside the subscreen 8459 and then call modules PBO, PAI  modules to write code . Includes MV45AIZZ (PAI) , MV45AOZZ (PBO), MV45AFZZ(form) where you can write your code.  SSCR may be required.

Thanks,

Abhijit

3 REPLIES 3
Read only

Former Member
0 Likes
630

Hi,

Can you please describe your query so that I can be of any help?

Regards,

Gourav         

Read only

0 Likes
630

LOOP AT SCREEN.

  IF SCREEN-NAME = 'BOX_PI' OR SCREEN-NAME = 'BOX_PISO' OR SCREEN-NAME = 'BOX_SO' OR SCREEN-NAME = 'VBAK-ZPI_SPARE'.

     IF VBAK-AUART = 'TA'.

       SCREEN-INVISIBLE = '-'.

     ELSE.

       SCREEN-INVISIBLE = 'X'.

       SCREEN-ACTIVE    = '-'.

     ENDIF.

     MODIFY SCREEN.

   ENDIF.

ENDLOOP.

Read only

Abhijit74
Active Contributor
0 Likes
631

Hello,

Try to add field inside the subscreen 8459 and then call modules PBO, PAI  modules to write code . Includes MV45AIZZ (PAI) , MV45AOZZ (PBO), MV45AFZZ(form) where you can write your code.  SSCR may be required.

Thanks,

Abhijit