ABAP 740裡的新語法 - LET表示式
A LET expression defines variables var1, var2, … or field symbols , , … as local auxiliary fields in an expression and assigned values to them. When declared, the auxiliary fields can be used in the operand positions of the expression. There is no way of accessing an auxiliary field statically outside its expression.
See example below:
- in line 25 and line 26 we define two auxiliary fields date and sep with keyword LET, which are used in LET expressions in line 27.
- in line 27 we define a LET expression by keyword IN
- finally the value of LET expression will be calculated and filled to inline variable isodate defined in line 24. We use CONV string to explicitly specify that inline defined variable isodate has type STRING.
Execution result:
Another example: Defines three local auxiliary variables, x, y, and z, in a constructor expression to construct the values of a structure. The values of the auxiliary variables are used for the structure components.
Execution result:
要獲取更多Jerry的原創文章,請關注公眾號"汪子熙":
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24475491/viewspace-2712214/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ABAP 740的新語法 - 使用BO association的方式進行內表連線操作
- ABAP 740新的OPEN SQL增強特性SQL
- 現代 ABAP 程式語言中的正規表示式
- 正規表示式語法
- 正規表示式的基本語法
- Java8 新語法習慣 (級聯 lambda 表示式)Java
- 正規表示式語法(轉)
- JDK1.8新特性:Lambda表示式語法和內建函式式介面JDK函式
- ABAP的語法高亮是如何在瀏覽器裡顯示的瀏覽器
- 正規表示式語法介紹
- 正規表示式教程——語法篇
- 利用ABAP 740的新關鍵字REDUCE完成一個實際工作任務
- Java正規表示式的語法與示例Java
- javascript中正規表示式的基礎語法JavaScript
- OC 正規表示式的語法及使用
- ABAP正規表示式 vs SPLIT INTO
- ABAP mesh表示式, JavaScript和Scala的 expressionJavaScriptExpress
- 一些 Next Generation ABAP Platform 的新語法用例Platform
- ABAP 程式語言裡的 Reference Semantic - 引用語義
- Lambda表示式基本語法與應用
- java 正規表示式語法學習Java
- 【Java8新特性】Lambda表示式基礎語法,都在這兒了!!Java
- sql裡的正規表示式SQL
- Python中lambda表示式的語法與應用Python
- js正規表示式基本語法學習JS
- 【棧】【字串語法】牛牛與字尾表示式字串
- rulex:Rust一種新的正規表示式語言Rust
- JavaScript6裡出現了哪些新語法、新特徵?JavaScript特徵
- C#12中的Collection expressions(集合表示式語法糖)C#Express
- 揭開正規表示式語法的神秘面紗 (轉)
- 通過js正規表示式例項學習正規表示式基本語法JS
- Python語法進階(2)- 正規表示式Python
- ES6語法——let和const
- 在ABAP Webdynpro裡顯示PDF的一種辦法Web
- ABAP Development Tools的語法高亮實現原理dev
- lambda表示式的寫法1
- PHP 7.4 新語法:箭頭函式PHP函式
- UNIX和LINUX系統的SHELL正規表示式語法(轉)Linux