zoukankan      html  css  js  c++  java
  • ABAP Editors

    Shortcuts

    • Ctrl + D:Copy one line downward
    • Ctrl + /:Go to Command Filed at top left corner
    • Ctrl + J:Convert to Proper case where the first letter of every word becomes a capital letter. This is pretty useful when writing comments
    • Ctrl + T:Capitalize the first word of one sentence
    • Ctrl + I&Ctrl + Shift + I:Incremental search. This is a little improved 'Find' (Ctrl + F) function which searches as soon as you type.
    • Ctrl + K:Toggle between Upper case and Lower Case
    • Ctrl + L/U:All text lowercase/uppercase
    • Ctrl + N:Open a new Window in SAP
    • Shift + F1:Execute Pretty Printer
    • Ctrl + F2:Check Syntax
    • Ctrl + F3:Activate Object
    • Ctrl+G:Find next )
    • Ctrl+O:Go to line
    • Ctrl+H:Find and Replace
    • Ctrl+Shift+S:Save your program in Desktop in.abap format.
    • Ctrl+Shift+L/X:Deletes whole line
    • Ctrl+Shift+V:Gives All Paste options
    • Ctrl+Alt+T:Swaps line with Upper case
    • Tab & Shift tab:Increase and Decrease Intend
    • Ctrl + Space:Display options to complete a command
    • Ctrl + ] & Ctrl + [:Jump to previous or next paragraph.,Jump to previous or next paragraph.A paragraph is created by leaving an empty line between statements.

    Code Templates

    ​ this can be set at the bottom right corner of the abap editor

    • *--:--------------------------------------------------------------------

    • case:

      CASE |.
      	WHEN .
      	WHEN .
      	WHEN OTHERS.
      ENDCASE.
      
    • define:

      DEFINE |.
      %SurroundedText%"default space
      END-OF-DEFINITION.
      
    • do:

      DO | TIMES.
      %SurroundedText%
      ENDDO.
      
    • if:

      IF |.
      %SurroundedText%
      ENDIF.
      
    • ife:

      IF |.
      %SurroundedText%
      ELSE.
      
      ENDIF
      
    • loop:

      LOOP AT |.
      %SurroundedText%
      ENDLOOP.
      
    • region:

      "$. Region %Region Name%
      %SurroundedText%
      "$. Endregion %Region Name%
      
    • try:

      TRY |.
      %SurroundedText%
      CATCH .
      
      ENDTRY.
      
    • while:

      WHILE |.
      %SurroundedText%
      ENDWHILE.
      
    • def1:

      %type%:
          BEGIN OF %name%,
              |
          END OF %name%%dot or comma%
      
    • def2:

      BEGIN OF %name%,
          |
      END OF %name%%dot or comma%
      
  • 相关阅读:
    dp周训练 状态压缩
    计算几何 点对处理 #345 (Div. 2) C. Watchmen
    Codeforces Round #303 (Div. 2) D. Queue 水题贪心
    TTTTTTTTTTTTT 树的直径 Codeforces Beta Round #14 (Div. 2) D. Two Paths
    TTTTTTTTTTTTT CF Good Bye 2015 C- New Year and Domino(CF611C) 二维前缀
    巨蟒python全栈开发数据库前端8:jQuery框架2
    计时器练习
    onload事件,解决不能在head写代码
    js引入方式的弹框方法2
    pycharm中格式标准化代码
  • 原文地址:https://www.cnblogs.com/aurora-cj/p/10969489.html
Copyright © 2011-2022 走看看