Permanent I/O error occurred in file xxx(C G D F).

时间:2015-10-13 ┊ 阅读:9,898 次 ┊ 标签: 编程 , 经验 , 系统 , 问题

这种错误是由as/400画面试图显示不可能显示的特殊字符导致的异常错误。
查找一下screen上字段反亮的字段数据来源,肯定有非法字符。
解决办法:
1.传数据到画面上前做validation,把非法字符过滤掉;
2.monitor此异常并做相应处理。
Permanent I/O error occurred in file xxx(C G D F).
Message ID . . . . . . : RPG1251 Severity . . . . . . . : 99
Message type . . . . . : Inquiry
Date sent . . . . . . : 13/10/15 Time sent . . . . . . : 14:33:37

Message . . . . : Permanent I/O error occurred (C G S D F).
Cause . . . . . : The RPG program xxx in library xxx at statement
161600 detected a permanent (not recoverable) file, session, or device
error. The session, device and/or program has been stopped. Examine the
major/minor return code value to determine the specific error that occurred.
If the major return code is 80 then a system or file error occurred and
programmer action is required to fix the problem. If the major return code
is 81 then a session or device error occurred, but use of another session or
device may be successful.
Recovery . . . : Enter C to cancel, G to continue processing at *GETIN, S
to obtain a system dump, or D to obtain an RPG formatted dump.
Possible choices for replying to message . . . . . . . . . . . . . . . :
D -- Obtain RPG formatted dump.
S -- Obtain system dump.
G -- Continue processing at *GETIN.
C -- Cancel.
F -- Obtain full formatted dump.

文章评论

仅有1条评论

  1. zero4 zero4

    这个不错,正是我要的

添加新评论

温馨提醒:如果您是第一次在本站留言,需要审核后才能显示哦!

相关文章

Whatsapp只能查看最近三天的聊天记录了怎么办?

Whatsapp只能查看最近三天的聊天记录了怎么办?

今天突然发现电脑上的WhatsApp只能查看最近3天的聊天记录了,显示要查看3天前的记录请到手机上查看。很是吃惊,以前一直是所有记录都自动同步到电脑版的啊,不论换电脑了还是换手机了,聊天记录从来没丢过。 查询一翻也没有找出来原因,怎么也同步不过去。 电脑版app重新安装了,也不行。 有个方法说...
阅读全文>>
ValueError: Error getting directory

ValueError: Error getting directory

ssl证书过期了 明明自动renew的 然后看log已经好久没更新成功了 查半天是当前server不信任远程连接 只能自己改代码 报错: 21-12-17 13:01:11 Generate CSR...amkevin.csr amkevin.csr generated. /home/www...
阅读全文>>
网页路径中的'.'和'..'还有'./'和'../'区别

网页路径中的'.'和'..'还有'./'和'../'区别

. 表示当前目录 .. 表示当前目录的上一级目录。 ./表示当前目录下的某个文件或文件夹,视后面跟着的名字而定 ../表示当前目录上一级目录的文件或文件夹,视后面跟着的名字而定。 例如: 文件夹 a 下面有 文件夹b c 和文件 d。 文件夹b下面有e.php 和文件f。 则e中的 . 表示...
阅读全文>>
Introduction to ILE RPG Activation Groups

Introduction to ILE RPG Activation Groups

Learn how activation groups can help your ILE RPG programs run more efficiently, how to specify the type of group to use, and closing and reclaimin...
阅读全文>>
popup.js怎么和content.js通信?[JQuery]

popup.js怎么和content.js通信?[JQuery]

这两天为了实现一个谷歌浏览器插件功能,研究了半天怎么让插件来改特定网页里的特定字段的值,而这个值又来自popup的网页预先设定,下一步实现动态加载,可以让更多组实现便利。 目的很简单,我们有一个list,需要填到网页的某个字段,当然是好几个,这些值是设定好的,网页系统我们没法改,input想...
阅读全文>>