现在的位置: 首页 > 综合 > 正文

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

2013年10月15日 ⁄ 综合 ⁄ 共 321字 ⁄ 字号 评论关闭

先把程序打开,菜单上 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键.

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

抱歉!评论已关闭.