Reputation: 21
I'm getting an Error when ever i'm trying to debug the RPGLE program within turnover. But compilation, there is no error
Error message CPF4203 appeared during OPEN for file LFFLEED (C S D F).
LFFLEED is a logical file
can any one help me how to overcome this problem
Upvotes: 0
Views: 683
Reputation: 1607
The text for CPF4203 is "Member &4 cannot be opened while UPDPROD(*NO)"
This means that Debug was started with UPDPROD(*NO) which means do not allow files in a production library to be opened for update. File LFFLEED must be a logical over a physical file in a production library and is being opened for Update, thus the error.
If you want to be able to debug you will need to use UPDPROD(*YES) or to use another version of the files in a *Test library if you don't want to update any production files.
Upvotes: 4