ibmi-brunch-learn

Announcement

Collapse
No announcement yet.

Command to show what version of AS400 we have:

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Command to show what version of AS400 we have:

    I open up iSeries navigator and i see V5R4. I think the OS itself is V5R3. How do I check for that thru iSeries navigator?

  • #2
    Re: Command to show what version of AS400 we have:

    On the Iseries Navigator right click on the system name and see the Properties. That will show you the OS400 version.
    Regards,
    KR

    Comment


    • #3
      Re: Command to show what version of AS400 we have:

      not sure where to look in iseries navigator...

      this rpg does return the 400 version

      PHP Code:
        Variable Definition                                         
        
      *                                                             
       
      d VerRelMod       S             10I 0                          
       d OSPlatform      S             10I 0                          
       d
      *Reply           S              1A                            
        
      * ================================================            
        * 
      M A I N   L I N E                                           
        
      * ================================================            
                                                                      
       
      c                   callb     'CEEGPID'                        
       
      c                   Parm                    VerRelMod          
       c                   Parm                    OSPlatform         
        
      *                                                             
       
      c                   If        VerRelMod >= 510                 
       c     VerRelMod     dsply                                      
       c     OsPlatform    dsply   
       c                   
      endif                                        
       
      c                   eval      *INLR = *on 

      Comment


      • #4
        Re: Command to show what version of AS400 we have:

        U can DSPSYSINF (Display System Information) command.
        Thanks,
        Giri

        Comment

        Working...
        X