M204.1977: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
 
No edit summary
 
Line 3: Line 3:
An attempt has been made to open a file under one of the following conditions: </P>
An attempt has been made to open a file under one of the following conditions: </P>
<ul>
<ul>
<li>An attempt was made to remotely open a public file or a semi-public file without a valid password. This type of access is not permitted for the file unless the <var>OPENCTL</var> X'08' bit is on. </li>
<li>An attempt was made to remotely open a public file or a semi-public file without a valid password. This type of access is not permitted for the file unless the <var>[[OPENCTL parameter|OPENCTL]]</var> X'08' bit is on. </li>


<li>An attempt was made to remotely open a file outside of [[Application Subsystem development|APSY]] as part of a permanent group. This type of access is not permitted for the file unless the <var>OPENCTL</var> X'04' bit is on. </li>
<li>An attempt was made to remotely open a file outside of [[Application Subsystem development|APSY]] as part of a permanent group. This type of access is not permitted for the file unless the <var>OPENCTL</var> X'04' bit is on. </li>
Line 9: Line 9:
<li>An attempt was made to remotely open a private or semi-public file outside of APSY with a valid password. This type of access is not permitted for the file unless the <var>OPENCTL</var> X'02' bit is on. </li>
<li>An attempt was made to remotely open a private or semi-public file outside of APSY with a valid password. This type of access is not permitted for the file unless the <var>OPENCTL</var> X'02' bit is on. </li>


<li>An attempt was made to remotely open a file that participates in Date Time Stamp processing (<var>FOPT</var> X'10'). Date Time Stamp processing does not support remote file access.</li>
<li>An attempt was made to remotely open a file that participates in Date Time Stamp processing (<var>[[FOPT parameter|FOPT]]</var> X'10'). Date Time Stamp processing does not support remote file access.</li>
</ul>
</ul>
<p>
<p>

Latest revision as of 23:35, 16 March 2018

M204.1977  File fileName may not be accessed remotely

An attempt has been made to open a file under one of the following conditions:

  • An attempt was made to remotely open a public file or a semi-public file without a valid password. This type of access is not permitted for the file unless the OPENCTL X'08' bit is on.
  • An attempt was made to remotely open a file outside of APSY as part of a permanent group. This type of access is not permitted for the file unless the OPENCTL X'04' bit is on.
  • An attempt was made to remotely open a private or semi-public file outside of APSY with a valid password. This type of access is not permitted for the file unless the OPENCTL X'02' bit is on.
  • An attempt was made to remotely open a file that participates in Date Time Stamp processing (FOPT X'10'). Date Time Stamp processing does not support remote file access.

File manager response: Ensure that the file has the proper OPENCTL setting.

Message attributes:

RETCODEO=0Sets online return code
RETCODEB=4Sets batch (single user) return code
CLASS=EError class; the message can be suppressed with the X'04' bit setting of the MSGCTL parameter
AUDITERWrites the message with line type ER to the audit trail
COUNTIncrements the error count (ERCNT) parameter

Back to list of messages