Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Urgent problem, mate

Former Member
0 Likes
326

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
294

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.

1 REPLY 1
Read only

Former Member
0 Likes
295

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.