Chinaunix首页 | 论坛 | 博客
  • 博客访问: 7126815
  • 博文数量: 655
  • 博客积分: 10264
  • 博客等级: 上将
  • 技术积分: 8278
  • 用 户 组: 普通用户
  • 注册时间: 2007-06-04 17:47
个人简介

ABAP顾问

文章分类

全部博文(655)

文章存档

2017年(2)

2014年(8)

2013年(3)

2012年(2)

2011年(18)

2010年(102)

2009年(137)

2008年(274)

2007年(134)

分类:

2008-05-25 12:47:04

Direct call of transactions, session handling:

/nxxxx       This terminates the current transaction, and starts transaction "xxxx", for example, "sa38" for reporting.

/n               This terminates the transaction. This generally corresponds to pressing F15 to go back.

/nend        This terminates all separate sessions and logs off (corresponds to "System -> Log off").

/nex          This terminates all separate sessions and logs off immediately (without warning!).

/oxxxx       This opens a new session and starts transaction xxxx in this session.

/o               This lists existing sessions and allows deletion or opening of a new session.

/I               This terminates the current session (corresponds to "System -> End session").

/i1, /i2,..  This terminates the session with the number given.

.xyzw        "Fast path": "xyzw" refers to the underlined letters in the menus. This type of navigation is uncommon and is provided more for emergencies (such as a defective mouse).

 

Batch input:

The following commands can be entered in correction mode ("Process in foreground" or "Display errors only") when processing a batch input session:

 

/n               This terminates the current batch input transaction and characterizes it as "Failed".

/bdel         This deletes the current batch input transaction.

/bend        This terminates batch input processing and sets the session to "Failed".

/bda          This switches from "Display errors only" to "Process in foreground".

/bde          This switches from "Process in foreground" to "Display errors only".

 

ABAP/4 debugging:

/h               This switches into debugging mode.

/hs             This switches into debugging mode and activates the debugging of system functions.

 

Buffer commands:

WARNING: Resetting buffers can significantly change the performance of the entire system for a long time. It should therefore only be used when there is a good reason to do so. As of release 3.0B system administator authorization is required (authorization object S_ADMI_FCD). The action is noted in the system log.

 

/$SYNC     This resets all buffers of the application server

/$CUA      This resets the CUA buffers of the application server

/$TAB       This resets the table buffers of the application server

/$NAM     This resets the nametab buffers of the application server

/$DYNP    This resets the screen buffers of the application server

 

Out-of-date commands:

Pxxx          From the menu system: Starts Transaction Pxxx

If an ABAP list is displayed: Sends command Pxxx to the list processor (for example, P+, P--, PRI)

From a transaction screen: Sends command Pxxx to this transaction

xyyy (where x is not 'P', '/', '=' or '.')

From the menu system: Starts Transaction xyyy

Within a transaction: Sends command xyyy to this transaction

/*xxxx       Starts Transaction xxxx and skips the first screen. So, it has the same effect as /nxxxx followed by ENTER.

=xxxx        This entry is still possible for compatibility reasons, but is no longer supported.

%sc           Searches for a string in lists (like "System -> List -> Find String")

%pc           Downloads lists

%pri          Prints lists

?STAT        Displays the status popup (like "System -> Status...)

阅读(3861) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~