Bruno v. Giorno, Ep.2

seen from Australia
seen from United States
seen from Singapore

seen from France
seen from Sweden

seen from Austria

seen from United States

seen from T1

seen from Greece
seen from Greece

seen from Greece
seen from South Korea

seen from United States
seen from Greece

seen from United Kingdom

seen from Hong Kong SAR China
seen from Austria

seen from Malaysia
seen from China

seen from T1
Bruno v. Giorno, Ep.2

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
VA02: Well Hidden - electronica compilation from Budapest label Farbwechsel - name your price
Well Hidden is a solid showcase of Farbwechsel's roster with 13 contributions from returning and new artists. From ambient or downtempo pieces to squelchy acid and uptempo tools. released January 6, 2016
mastered by Erik Banhalmi artwork by hEY-RES! (www.facebook.com/studioheyres/)
SAP VA02 增加功能按钮
REF: http://scn.sap.com/message/9018870#9018870
今天在VA02中增加一个按钮,用于触发到OA流程审批,参考了上面网页,记录如下:
1) create new program (ZVA_GUI_STATUS for example)
****SE38 创建一个新程序,用于存放增加按钮后的GUI STATUS(如:ZVA_GUI_STATUS,下文中将用到此程序名称,可按自己习惯命名).
2) copy GUI statuses A0 (for VA01) and A02 (for VA02) from SAPMV45B into ZVA_GUI_STATUS with the same names.
****SE38 从程序中SAPMV45B将GUI STATUS:A02复制到第一步创建的新程序中(我只改VA02,如需要同时改VA01,需要同时将GUI STATUS:A0复制过去)
3) change those statuses however u want (create new function code for SEARCH button, &SEARCH for example)
****SE38 在新程序ZVA_GUI_STATUS中将需要的按钮增加到GUI STATUS中,激活
4) create enhancement option in the end of CUA_SETZEN form in MV45AF0C_CUA_SETZEN include with code like this if MODUL-POOL eq 'SAPMV45B'. if T185V-STATUS eq 'A0' or T185V-STATUS eq 'A02'. SET PF-STATUS T185V-STATUS EXCLUDING CUA_EXCLUDE OF PROGRAM 'ZVA_GUI_STATUS'. endif. endif.
****SE38 在程序MV45AF0C_CUA_SETZEN的FROM CUA_SETZEN结尾处,加入代码,替代原GUI STATUS.
5) u can handle this function code at the begin of FORM fcode_bearbeiten of MV45AF0F_FCODE_BEARBEITEN include if fcode eq '&SEARCH'. ... endif.
****SE38 在程序MV45AF0F_FCODE_BEARBEITEN的FORM FCODE_BEARBEITEN开头处,加入代码,拦截fcode为你新增按钮的fcode事件,写逻辑触发对应事件.
在这过程中,遇到2个问题:
1.按上面5步做完后,测试点击新增按钮,系统DUMP
****解决:进入TCODE:VFBS,输入程序:SAPMV45B,选择功能代码,修改,参考系统按钮UER1,增加了同样的3条记录,最后程序运行正常
2.在FCODE_BEARBEITEN中运行了对应的代码后,会继续往后面运行,最终报错
****这个问题没有最终解决,有高手知道如何处理,提点一下 ****临时解决,在第5步的拦截的代码最后,利用RETURN.退回程序