Specifies the file to be used on the server to store state information.
  
 
	  
		Note: This routine is supported for native COBOL only. 
		
 
 
	  
 
	 Syntax:
 
		 
		call "MF_CLIENT_STATE_FILE" using filename
                                  server-status
 
	 Parameters:
 
		 
		 
		
 
			  
			  
			  
			  
				 
				  |  | Using call prototype (see 
					 Key) | Picture (32-bit systems) | 
 
			 
 
			  
				 
				  | filename | pic x(255). | pic x(255). | 
 
				 
				  | server-status | cblt-x1-compx | pic x comp-x. | 
 
			 
 
		  
 
 
	 Example:
 
		 
		 working-storage section. 
 ...
 01 state-status             pic x comp-x.
 01 state-filename           pic x(255)
               value "MF-STATE-SAVE.DAT".
 ...
 procedure division. 
 ...
     call "MF_CLIENT_STATE_FILE" using state-filename
                                       server-status
 ...