F4 is not working in WRQ reflection s/w

rajesh4you

New Member
please help me...

In WRQ reflection software for MFGPRo, the F4 trigger is not working...

I had written a trigger program on WO release. Once whatever the WO's are released...i.e., if the status changes from 'f' to 'r' then some extract should generate...while releasing the file will be with extension .tmp and once it comes out of the program it should change the .tmp to .txt.

The same program is working in putty fine. I think i need to do some keyboard setup.

I am posting the logic below.

ON PF4, F4, ESC ANYWHERE DO:
MESSAGE v-outfile. PAUSE.
ASSIGN
FILE-INFO:FILE-NAME = v-outfile.
IF FILE-INFO:FILE-SIZE <> ? THEN
DO:
ASSIGN
v-outfile1 = SUBSTRING(v-outfile, 1, INDEX(v-outfile, ".")) + "txt".
OS-RENAME VALUE(v-outfile) VALUE(v-outfile1).
END.
END.

From the above logice, I am not getting even message and the logic is working in putty.
 
I think putty and reflection uses diffrent terminal settings.

Check reflection parameters:
1. Setup -> Terminal -> Terminal Type
2.
Connection -> connection setup -> more settings -> General -> Terminal type
Connection -> connection setup -> more settings -> Advanced -> Terminal defaults
 
Top