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

FALV runtime wrong

JamesG
Participant
0 Likes
1,350

hi all,

i have a report,it call 'REUSE_ALV_GRID_DISPLAY',but in my use another report use 'submit' it, it's dump.

this is dump message.

this is dump code.

this is my FM code, gt_fieldcat,gs_lagout,gt_events and gt_itab are all right.

  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      i_callback_program      = sy-repid
      it_fieldcat   = gt_fieldcat
      is_layout     = gs_layout
      it_events     = gt_events
    TABLES
      t_outtab      = gt_itab
    EXCEPTIONS
      program_error = 1
      OTHERS        = 2.

this is my submit code.

SUBMIT Z_TFALV_DATA_CHANGED WITH carrid = carrid1
               AND RETURN EXPORTING LIST TO MEMORY.

anybody tell me why ?

thanks.

1 ACCEPTED SOLUTION
Read only

JamesG
Participant
0 Likes
1,300

i found it.just take out "exporting List memory" in submit code.

3 REPLIES 3
Read only

JamesG
Participant
0 Likes
1,301

i found it.just take out "exporting List memory" in submit code.

Read only

1,300

i can't take out 'exporting List memory' in submit code,because i need it.

so, anybody can help me?

thanks

Read only

1,300

it's another report have null value.now i delete it ,it's work.