Application Development 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: 

CALL_FUNCTION_PARM_UNKNOWN - REUSE_ALV_LIST_DISPLAY

Former Member
0 Kudos

Hi,

I am working on upgrade from 4.6 c to ECC 6.0, have problem in alv objects, one of the report, has parameter I_CALLBACK_TOP_OF_PAGE in FM REUSE_ALV_LIST_DISPLAY and in ECC 6.0 its giving dump saying - ' Function parameter "I_CALLBACK_TOP_OF_PAGE" is unknown '. - does any one faced this problem, please let me know how to solve it.

Thanks in advance

6 REPLIES 6

former_member191735
Active Contributor
0 Kudos

Yes there is no parameter called I_CALLBACK_TOP_OF_PAGE in

FM REUSE_ALV_LIST_DISPLAY . Check out the function module.

0 Kudos

Hi,

Thanks for the reply

I know there is no parameter called I_CALLBACK_TOP_OF_PAGE in FM REUSE_ALV_LIST_DISPLAY , but in 4.6C we still put this parameter to this FM to pass TOP OF PAGE.

I am getting dump in ECC 6.0.

Thanks

0 Kudos

Probably because you are now in a unicode environment. So take it out.

Rob

0 Kudos

Hi,

You are right, its now in unicode environment, but if I remove it, causing lot of variation in the output, is there any way I can keep this and still it will not give dump.

Thanks

0 Kudos

So it's beong used elsewhere. Just remove it from the FM call.

Rob

Former Member
0 Kudos

Instead of using I_CALLBACK_TOP_OF_PAGE, use the IT_EVENTS table to handle TOP_OF_PAGE event.