Hi,
I am trying to convert the upper-case to lower-case in Cobol400 using the following statement.
example
INITIALIZE WS-USRPWD-IN.
STRING
USER DELIMITED BY ' '
' ' DELIMITED BY SIZE
PASSWORD DELIMITED BY ' '
INTO WS-USRPWD-IN
END-STRING.
MOVE LOWER-CASE(WS-USRPWD-IN) TO WS-USRPWD-IN.
when compiled I see the following message
93 MSGID: LBL1326 SEVERITY: 30 SEQNBR: 009500
Message . . . . : 'LOWER-CASE' not defined name. Default item
assumed.
Can someone explain how to circumvent this problem please. I have looked through the IBM manual on COBOL400 no detailed reference to this function.
Thank you
I am trying to convert the upper-case to lower-case in Cobol400 using the following statement.
example
INITIALIZE WS-USRPWD-IN.
STRING
USER DELIMITED BY ' '
' ' DELIMITED BY SIZE
PASSWORD DELIMITED BY ' '
INTO WS-USRPWD-IN
END-STRING.
MOVE LOWER-CASE(WS-USRPWD-IN) TO WS-USRPWD-IN.
when compiled I see the following message
93 MSGID: LBL1326 SEVERITY: 30 SEQNBR: 009500
Message . . . . : 'LOWER-CASE' not defined name. Default item
assumed.
Can someone explain how to circumvent this problem please. I have looked through the IBM manual on COBOL400 no detailed reference to this function.
Thank you