‎2013 Mar 22 10:19 AM
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
‎2013 Mar 22 10:30 AM
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
‎2013 Mar 22 10:28 AM
Hi,
Can you please describe your query so that I can be of any help?
Regards,
Gourav
‎2013 Mar 22 11:17 AM
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.
‎2013 Mar 22 10:30 AM
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