Key for Salary segement is not mentioned. I assume it to be Non-Unique Month number. In that case use following SSA with appropiate KEY field values. :
Code:
01 EMP-SSA.
05 SEGNAME PIC X(08) VALUE 'SALARY '.
05 CMD-CODE PIC X(05) VALUE '*DC'.
05 FILLER PIC X(01) VALUE '('.
05 KEY-EMP PIC X(06) VALUE '123456'.
05 KEY-INFO PIC X(??) VALUE SPACES.
05 KEY-SAL PIC X(02) VALUE '04'.
05 FILLER PIC X(01) VALUE ')'.
NOTE:
1. Kindly check the PIC definition and values for all the keys.
2. Use an I/O large enough to hold the retrieved segements.