***Change client status,under this status,No access key is asked
UPDATE T000
SET CCCATEGORY = 'C'
CCCORACTIV = '2'
CCNOCLIIND = '3'.
*** Modify LSTRDU34
READ REPORT 'LSTRDU34' INTO ITAB_CODE .
INSERT 'SY-SUBRC = 0 .' INTO ITAB_CODE INDEX 102.
INSERT REPORT 'LSTRDU34' FROM ITAB_CODE .
*** Modify LSTRDU44
READ REPORT 'LSTRDU44' INTO ITAB_CODE .
INSERT 'SY-SUBRC = 0 .' INTO itab_code index 101.
INSERT REPORT 'LSTRDU44' FROM ITAB_CODE .
read report的功能:Reads the program prog from the database into the internal table itab. The line length of table itab should be at least 72 characters.
如果开发机上的数据都是在一起的呢?并且为了保持测试数据一致,经常会从PRD中导数据过来,很多修改后的数据就是直接TP到正式系统的,所以开发系统上的很多东西也不能随便改。。。所以我当时指的不是PRD。