ABAP DEMO
|
Program |
Description |
|
BALVBT01 |
Example SAP program for displying multiple ALV reports on one page |
|
BCALV_GRID_DEMO |
ALV Dialog grid demo (4.6) |
|
SHOW_COLO |
Displays all colours available |
|
SHOW_ICON |
Displays all icon available |
|
RGUGBR00 |
Substitution/Validation and rules utility |
|
RKCTSEAR |
Search source code of various programs for up to two strings. Also see RPR_ABAP_SOURCE_SCAN or use search in source functionality via SE80 |
|
RPCIFU01 |
Display File |
|
RPCIFU03 |
Download Unix File to PC |
|
RPCIFU04 |
Upload PC File to Unix File |
|
RPR_ABAP_SOURCE_SCAN |
Search ABAP code for a string. Much more flexible than RSRSCAN1 or RKCTSEAR |
|
RSBDCBTC |
Submit a BDC job with an internal batch number and wait for the end of the batch input session |
|
RSBDCDRU |
Prints the contents of a Batch Input session. No options for error transactions only |
|
RSBDCOS0 |
Execute OS Command (Logged in SYSLOG and Trace Files) |
|
RSBDCSUB |
Process batch input sessions automatically |
|
RSBTCDEL |
Delete batch jobs |
|
RSCONN01 |
SAPconnect: Start Email Send Process |
|
RSCSAUTH |
Maintain/Restore Authorization Groups |
|
RSINCL00 |
Extended ABAP Program Reference List |
|
RSMODRES |
Restore enhancement projects after upgarde |
|
RSORAREL |
Check Oracle Version |
|
RSPARAM |
Display all instance parameters |
|
RSPO0041 |
Delete Old Spool Requests |
|
RSSNAPDL |
Reorganization Program for Table SNAP of Short Dumps |
|
RSTRANSP |
Transport Report Variants |
|
RSTXFCON |
SAPscript: Conversion of Page Format for Forms |
|
RSTXPDFT4 |
Convert spool request to PDF document |
|
RSTXPDFT5 |
GUI download of a spool request |
|
RSTXSCRP |
SAPscript Export to Dataset / SAPscript Import from Dataset (Upload and download SAPScript layout sets) |
|
RSTXTRAN |
Transfer of SAPscript Texts(standard texts) to a transport |
|
RSUSR003 |
Check the Passwords of Users SAP* and DDIC in All Clients |
|
RSUSR006 |
List of Users with Incorrect Logons |
|
RSVARFIT |
Adjust Variants to Modified Selections |
|
RSVTPROT |
Evaluation of change logs |
|
RSWBO052 |
Change Object Directory Entries |
|
RSWBO060 |
Include Objects in a Transport Request |
|
SAPMSUU0 |
Program for user maintenance(SU01), Maybe useful if you do not have access to the actual SU01 transaction code. |
ABAP DEMO的更多相关文章
- ABAP DEMO 年月的搜索帮助
效果图: *&---------------------------------------------------------------------* *& Report YCX_ ...
- ABAP DEMO so批量导入
*&---------------------------------------------------------------------* *& Report YDEMO_015 ...
- ABAP DEMO ole示例程序
*&---------------------------------------------------------------------* *& Report YCX_021 * ...
- ABAP DEMO ALV-监听数据修改
*&---------------------------------------------------------------------* *& Report YDEMO_006 ...
- ABAP DEMO ALVtree显示BOM层级
展示效果: *&---------------------------------------------------------------------* *& Report YCX ...
- ABAP DEMO 下拉框
效果展示: *&---------------------------------------------------------------------* *& Report YCX ...
- ABAP DEMO篇21 选择屏幕显示说明TEXT
实现方式1: *&---------------------------------------------------------------------**& Report YCX ...
- SAP翔子_ABAP_DEMO篇索引
序号 描述 SAP翔子_ABAP_DEMO篇1 ABAP DEMO篇1 单层反查BOM SAP翔子_ABAP_DEMO篇2 ABAP DEMO篇2 删除工艺路线 SAP翔子_ABAP_DEMO篇3 A ...
- ABAP ALV DEMO示例源码
关于ALV表格颜色,感觉这种需求在项目中用到的时候不是很多,但是前一段时间面试的时候,面试官问了我关于ALV单元格颜色的问题. 以前了解过一点,回答的不是很好,后来百度了一下,大概了解了一些,今天工作 ...
随机推荐
- NSDateFormatter 根据时间戳求出时间
NSDateFormatter 根据时间戳求出时间 - (void)detailWithStyle:(NSString*)style time:(NSInteger)time { // NSStrin ...
- numpy 总结
1.array.sum() from numpy import * import operator group = array([[1.0,1.1],[1.0,1.0],[0,0],[0,0.1]]) ...
- wp8.1 Study11:APP里文件读写和使用XML和Json序列化
一.文件读写 1.基本操作(使用FileIO API) 这个方法在上一个stduy已经学过,那么贴出来复习下,代码如下: private async void writeTextToLocalStor ...
- C语言:文件操作
以附加方式打开文件,输入数据,关闭文件. #include<stdio.h> #include<stdlib.h> int main() { FILE *fp = NULL; ...
- mysql 启动错误1026
进入“事件查看器”“应用程序”果然发现很多MySql的错误Default storage engine (InnoDB) is not available 于是进入MySql的安装目录找到my.ini ...
- DotNetBar v12.5.0.2 Fully Cracked
更新信息: http://www.devcomponents.com/customeronly/releasenotes.asp?p=dnbwf&v=12.5.0.2 如果遇到破解问题可以与我 ...
- JAVA之关于super的用法
JAVA之关于super的用法 路漫漫其修远兮,吾将上下而求索.——屈原<离骚> 昨天写this用法总结的时候,突然产生了一个问题,请教别人之后,有了自己的一点认识.还是把它写下来,为 ...
- 一个基于atomic的卖票测试
package testAtomic; import java.util.concurrent.atomic.AtomicInteger; import sun.security.krb5.inter ...
- poj2104 线段树 划分树
学习:http://www.cnblogs.com/pony1993/archive/2012/07/17/2594544.html 划分树的build: 划分树是分层构建的,在构建的t层时,我们可以 ...
- SQL中让某一字段更新时自动加1
update 表 set 字段名=字段名+1 where ....