| 
    
   | 
   | 
  
     
    
    
Changes the name of a procedure in the current Proc-file.
    
     
  REN[AME] old procedure name, new procedure name
 
For example:
  >RENAME UPCUST,UPACCT 
 
Where old procedure name = UPCUST and new procedure name = UPACCT
    
     
  - old procedure name
 
  is the name currently associated with the procedure.  
  - new procedure name
 
  is the name you want to use for the procedure in the future. Refer to
      the CREATE command for naming rules.  
 
    
     
    
Both procedure names must follow the rules defined in the CREATE command
description. An error message is printed if old procedure name
does not refer to an existing procedure in the current Proc-file.
  >PROC-FILE  =PROCACCT
  >DISPLAY LIST
  FINDACCT       FINDSALE      UPCUST       REPACCT      REPSALE
  >RENAME UPCUST,UPACCT
  >DISPLAY LIST
  FINDACCT       FINDSALE      UPACCT       REPACCT      REPSALE
 
    
    
     
    
     
   |