cancel
Showing results for 
Search instead for 
Did you mean: 

ZNOTIF_CREATE - ABAP error: ABAP_BOOL

Former Member
0 Kudos

Hello,

We are working in our own definition of tickets based on standard SFLN. In that ticket ZLFN we are adjusting our definitions. We also wanted to use our own version of the NOTIF_CREATE so that we can call this new transaction. We have copy the report we have copied the original program into Z_RDSWP_NOTIF_CREATE, and also copy the standard function into Z_DSWP_NOTIF_READ_PROCESS_TYPE, only changing the document:

pf_process_type = 'ZLFN'.

However, when we try to activate this function module we are getting an abap error:

The type "ABAP_BOOL" is unknown.

We have compare to the original function module DSWP_NOTIF_READ_PROCESS_TYPE and we found that they are the same except for the small modification.

Is there any ABAP expert who can help me with this error??

Many thanks

Esteban

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Esteban,

you likely forgot to check the TOP-Include of the function group in which the original function module is stored.

There you will find the statement Andreas mentioned. If you include it as the first statement in your function module it should work!

Regards,

Christoph

Former Member
0 Kudos

Many thanks for your answers

Esteban Hartzstein

Answers (3)

Answers (3)

Former Member
0 Kudos

Question answered

Former Member
0 Kudos

to award point

Former Member
0 Kudos

Hello Esteban,

you might try

type-pools: abap. 

Best regards,

Andreas