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的更多相关文章

  1. ABAP DEMO 年月的搜索帮助

    效果图: *&---------------------------------------------------------------------* *& Report YCX_ ...

  2. ABAP DEMO so批量导入

    *&---------------------------------------------------------------------* *& Report YDEMO_015 ...

  3. ABAP DEMO ole示例程序

    *&---------------------------------------------------------------------* *& Report YCX_021 * ...

  4. ABAP DEMO ALV-监听数据修改

    *&---------------------------------------------------------------------* *& Report YDEMO_006 ...

  5. ABAP DEMO ALVtree显示BOM层级

    展示效果: *&---------------------------------------------------------------------* *& Report YCX ...

  6. ABAP DEMO 下拉框

    效果展示: *&---------------------------------------------------------------------* *& Report YCX ...

  7. ABAP DEMO篇21 选择屏幕显示说明TEXT

    实现方式1: *&---------------------------------------------------------------------**& Report YCX ...

  8. SAP翔子_ABAP_DEMO篇索引

    序号 描述 SAP翔子_ABAP_DEMO篇1 ABAP DEMO篇1 单层反查BOM SAP翔子_ABAP_DEMO篇2 ABAP DEMO篇2 删除工艺路线 SAP翔子_ABAP_DEMO篇3 A ...

  9. ABAP ALV DEMO示例源码

    关于ALV表格颜色,感觉这种需求在项目中用到的时候不是很多,但是前一段时间面试的时候,面试官问了我关于ALV单元格颜色的问题. 以前了解过一点,回答的不是很好,后来百度了一下,大概了解了一些,今天工作 ...

随机推荐

  1. JS桌面应用

    一.图片预加载 var oImg = new Image(); oImg.onload=function(){ //alert('success'); } oImg.onerror=function( ...

  2. c# MVC中 @Styles.Render索引超出下标

    @Styles.Render( "~/Content/bootstrap/css", "~/Content/mycss") 提示索引超出下标 后来发现市boot ...

  3. IT公司100题-9-判断整数序列是不是二元查找树的后序遍历结果

    问题描述: 输入一个整数数组,判断该数组是不是某二元查找树的后序遍历的结果. 如果是返回true,否则返回false. 例如输入4, 8, 6, 12, 16, 14, 10,由于这一整数序列是如下树 ...

  4. android listview getviewtypecount和getItemViewType

    package newdemo.jeno.listviewdemo; import android.app.Activity;import android.os.Bundle;import andro ...

  5. C# WinForm程序向datagridview里添加数据

    在C#开发的winform程序中,datagridview是一个经常使用到的控件.它可以以类似excel表格的形式规范的展示或操作数据,我也经常使用这个控件.使用这个控件首先要掌握的就是如何向其中插入 ...

  6. Installing Cygwin and Starting the SSH Daemon

    This chapter explains how to install Cygwin and start the SSH daemon on Microsoft Windows hosts. Thi ...

  7. 【python】dict。字典

    特点:以空间换取时间,使用HASH算法通过key算出了value的内存地址,建立索引,拿到key后查找速度快,但内存浪费多 因为是用key值算的内存地址,所以key为不可变变量 (set,和dict类 ...

  8. HTML---6 运算符,类型转换

    1.类型转换: 分为自动转换和强制转换,一般用强制转换. 其他类型转换为整数:parseint(): 其他类型转换为小数:parsefloat(): 判断是否是一个合法的数字类型:isNaN(): 是 ...

  9. 找第k大的数

    (找第k大的数) 给定一个长度为1,000,000的无序正整数序列,以及另一个数n(1<=n<=1000000),接下来以类似快速排序的方法找到序列中第n大的数(关于第n大的数:例如序列{ ...

  10. TCP协议三次握手过程分析【图解,简单清晰】

    转自:http://www.cnblogs.com/rootq/articles/1377355.html TCP(Transmission Control Protocol) 传输控制协议 TCP是 ...