ABAP 通过SQL修改某个程序的锁定状态

来源:互联网 发布:vb6.0连接ms SQL 编辑:程序博客网 时间:2024/06/06 02:44

先把程序打开,菜单上 Environment/Examples/Performance Examples 在空白处输入

要执行的程序,注意一定要正确,否则后果很严重,呵呵.

 

data: itab type table of TRDIR with header line.

select  *  from TRDIR into table itab
where NAME = 'ZHRRPT1011'.

read table itab with key name = 'ZHRRPT1011'.
itab-EDTX = SPACE.


modify TRDIR from itab.

 

怎么查找到是哪个表呢? 打开程序,菜单上有 转到/属性,把鼠标点一下Editor Lock,然后按F1键.

然后再 技术信息,就可以找到是哪个表了.

原创粉丝点击