共計 983 個字符,預計需要花費 3 分鐘才能閱讀完成。
本篇內容介紹了“ABAP report 技術怎么使用”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓丸趣 TV 小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
report z. INCLUDE ole2incl.
DATA: ole TYPE ole2_object,
voice TYPE ole2_object,
text TYPE string.
text = With the advent of ES6 (referred to as ES2015 from here on), which not only made promises native to the language without requiring one of the countless available libraries, we also got generators. Generators have the ability to pause execution within a function, which means that by wrapping them in a utility function, we have the ability to wait for an asynchronous operation to finish before moving on to the next line of code. Suddenly your asynchronous code could start to look synchronous! .
DATA: it_tline TYPE STANDARD TABLE OF tline.
CREATE OBJECT voice SAPI.SpVoice .
CALL METHOD OF voice Speak = ole
EXPORTING #1 = text. *
用的也是很老的 OLE 技術:
report 代碼直接 call 的 MS 的 sound engine,通過 sapi.dll 暴露出來,
“ABAP report 技術怎么使用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注丸趣 TV 網站,丸趣 TV 小編將為大家輸出更多高質量的實用文章!
正文完