‎2008 Apr 16 2:29 AM
Hello experts:
Thank you in advance for all your replies.
there is a function--- ENQUEUE_EFPAYR failed with exception 8, who know the possible reason, how a function raise an exception, how to locate where it is , search by raise ? please
help me with that urgent problem .
couldn't thank you more.
Best regards.
‎2008 Apr 16 3:04 AM
Hi,
The ecxeption no 8 corresponds to the 8th exception that is listed in the exception tab of the FM when you open the FM in SE37.
Exceptions are raised inside the FM . The syntax is 'RAISE <EXCP> .' where <EXCP> is the name of exception.
For the enque FMs if you search for term 'raise' in the code you may not find the place where it is raised, as this FM calls some forms within it that are not part of the function groups so cannot be searched directly. You can debug it with breakpoint at statement 'RAISE' to locate it.
‎2008 Apr 16 3:04 AM
Hi,
The ecxeption no 8 corresponds to the 8th exception that is listed in the exception tab of the FM when you open the FM in SE37.
Exceptions are raised inside the FM . The syntax is 'RAISE <EXCP> .' where <EXCP> is the name of exception.
For the enque FMs if you search for term 'raise' in the code you may not find the place where it is raised, as this FM calls some forms within it that are not part of the function groups so cannot be searched directly. You can debug it with breakpoint at statement 'RAISE' to locate it.