CIM Program help

jchellap

Member
QAD Version : M F G / P R O Release eB2.1 SP5.

Progress version : OpenEdge Release 10.1B0365. (Character version)

The below query is not showing the report properly . I am not sure what is the reason behind.

{mfdeclre.i}
define variable nbr as char init "604N". /* Any Purchase requisiton nbr */
OUTPUT TO poreq.cim.
PUT UNFORMATTED nbr SPACE
nbr SKIP
"PAGE" SKIP.
output close.

INPUT FROM poreq.cim.
{gprun.i ""rqrqrp5.p""}
INPUT CLOSE.

The program is working fine. However, it is not allowing me the see the full repot eventhough it is showing the message as below.

Use cursor and page keys to navigate, F4 to exit. [Line 1]
Use cursor and page keys to navigate, F4 to exit. [Line 1]
Press space bar to continue.


Can anyone help me to fix this issue? Thanks in advance.
 
Last edited:

jchellap

Member
QAD Version :M F G / P R O Release eB2.1 SP5 as of Oct 6 2006

Progress version : OpenEdge Release 10.1B0365.

Character version.

The below query is not showing the report properly . I am not sure what is the reason behind.

{mfdeclre.i}
define variable nbr as char init "604N". /* Any Purchase requisiton nbr */
OUTPUT TO poreq.cim.
PUT UNFORMATTED nbr SPACE
nbr SKIP
"PAGE" SKIP.
output close.

INPUT FROM poreq.cim.
{gprun.i ""rqrqrp5.p""}
INPUT CLOSE.

The program is working fine. However, it is not allowing me the see the full repot eventhough it is showing the message as below.

Use cursor and page keys to navigate, F4 to exit. [Line 1]
Use cursor and page keys to navigate, F4 to exit. [Line 1]
Press space bar to continue.


Can anyone help me to fix this issue? Thanks in advance.
 

TheMadDBA

Active Member
Then I suggest you head over to the QAD forums I linked to and see if you can get some help there. This is pretty specific to QAD and that screen so you will have better luck there.
 
I think it is a problem of Output Parameter. You are trying to output on PAGE in a batch mode. I think that is not allowed.

Try to give output on a file or any printer setup in 36.13.2 .
 
Top