What does this mean,

Shahrukh04

Member
Hi there,
I'm getting this error message in JDE.Log (JDB3700001 - Failed to validate Request handle). What is going wrong with my report.

Kind Regards,
Shahrukh
 
which report ?
Could you be more precise !!!!!!!!!! !!!!!!!!! !!!!! !!!!
 
Failed to validate request handle means that you are trying to open a OneWorld table with an invalid hRequest.

Recall that OW uses the following pattern to access OW tables:

1. InitUser or InitBhvr (this gives you an hUser)
2. OpenTable or OpenView (this gives you an hRequest)

3. Table Operations - Select, Fetch, Insert, Update, Delete all use the hRequest. If the hRequest is invalid at this point you will get the error you are seeing in the jde.log

4. CloseTable - this frees up the hRequest (and you may not use the hRequest until you do another OpenTable or Open View)

5. Free hUser - this fress up the hUser

HTH
 
Thanks alot, the kernal failed of Enterprise. When I was running this report.
 
Back
Top