[Stackoverflow] [Progress OpenEdge ABL] Why I am getting no entry point error 6456 for ASYNCHRONOUS RUN Method?

Status
Not open for further replies.
T

Thiru Malai

Guest
I just try to run the procedure as ASYNCHRONOUS on server but i am getting the error for no entry point. Error Message 6456. Could you please help this case? Let me share what I tried.

/* This is the query which i tried in our side*/

DEFINE VARIABLE hProcess AS HANDLE NO-UNDO.
DEFINE VARIABLE dProcessObj AS DECIMAL NO-UNDO.
DEFINE VARIABLE lError AS LOGICAL NO-UNDO.

RUN advschedulerengine.p ON SERVER gshAstraAppserver ASYNCHRONOUS
SET hProcess
EVENT-PROCEDURE "orderScheduler" IN THIS-PROCEDURE
(INPUT dProcessObj,
OUTPUT lError).
IF hProcess:COMPLETE THEN MESSAGE 'Completed'.

/* Note this query is running from window application */



The EVENT- PROCEDURE has same in and output parameter even though i am not sure why i am getting the error. Could you please give me an example for this?

Continue reading...
 
Status
Not open for further replies.
Top