【转】SAP VF01/VF02/VF03 Tab Enhancemnt

来源:互联网 发布:工作流引擎数据库设计 编辑:程序博客网 时间:2024/06/05 04:26

1.Create the Z fields for VBRK.


2.Go to SE38, create report zzinvoice.


 

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


 

[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.  


原创粉丝点击