1.Create the Z fields for VBRK.

SAP VF01/VF02/VF03 Tab Enhancemnt

2.Go to SE38, create report zzinvoice.

SAP VF01/VF02/VF03 Tab Enhancemnt

 

3. In standard program SAPMV60A, provide 2 screens for customer additional datas, 6001 for header 6002 for details.

SAP VF01/VF02/VF03 Tab EnhancemntSAP VF01/VF02/VF03 Tab Enhancemnt

 

[html] view plain copy
  1. loop at screen.  
  2.   
  3.   if screen-name = 'TABSTRIP_TAB06'.  
  4.   
  5.   
  6.     gs_cust_tab-head_caption = 'TEST'.  
  7.     gs_cust_tab-head_program = 'ZZINVOICE'.  
  8.     gs_cust_tab-head_dynpro  = '0100'.  
  9.   
  10.     if gs_cust_tab-head_dynpro is not initial.  
  11.   
  12.       screen-active = 1.  
  13.       screen-invisible = 0.  
  14.       modify screen.  
  15.       tabstrip_tab06 = gs_cust_tab-head_caption.  
  16.     endif.  
  17.   
  18.   
  19.   endif.  
  20.   
  21.   
  22. endloop.  

SAP VF01/VF02/VF03 Tab Enhancemnt

相关文章:

  • 2021-12-10
  • 2022-03-09
  • 2021-07-03
  • 2021-08-13
  • 2021-09-30
  • 2022-12-23
猜你喜欢
  • 2021-08-18
  • 2022-12-23
  • 2022-12-23
  • 2021-08-14
  • 2021-10-14
  • 2021-05-08
  • 2021-10-21
相关资源
相似解决方案