‎2007 Jul 13 7:18 PM
I am trying to use VL02n to do a PGI (post goods issue). The problem just started today when we activated a requirement on an output type. This error does not occur in development but only in Test. Below is the short dump of the error. Does anybody have any ideas what could have gone wrong when we activated the output type requirement?
Information on where terminated
The termination occurred in the ABAP program "SAPLKKBL" in
"K_KKB_LIST_DISPLAY".
The main program was "RSM13000 ".
The termination occurred in line 418 of the source code of the (Include)
program "LKKBLU01"
of the source code of program "LKKBLU01" (when calling the editor 4180).
The program "SAPLKKBL" was started in the update system.
388 l_fieldcat_state = '2'.
389 l_sort_state = '2'.
390 call function 'ALV_EXPORT_TO_BUFFER_KKBLO'
391 exporting
392 is_ltdxkey = ls_ltdxkey
393 * I_LANGU = SY-LANGU
394 it_fieldcat_kkblo = gt_stack-it_fieldcat
395 i_fieldcat_kkblo_state = l_fieldcat_state
396 it_sort_kkblo = gt_stack-it_sort
397 i_sort_kkblo_state = l_sort_state
398 it_filter_kkblo = gt_stack-t_filter
399 is_layout_kkblo = gt_stack-is_layout
400 exceptions
401 no_key = 0
402 no_export = 0
403 others = 0.
404 if sy-subrc ne 0.
405 endif.
406 endif.
407
408 *... Export Stack to Memory
409 perform stack_memory_export.
410
411 if i_screen_start_line ne 0.
412 gt_stack-is_layout-i_am_popup = 'X'.
413 endif.
414
415 if gt_stack-is_layout-detail_only is initial.
416 if gt_stack-is_layout-suppress_dynpro is initial.
417 if i_screen_start_line eq 0.
>>>>> call screen 500.
419 sy-pagno = g_sypagno. "wegen Dynpro 200 Spoolinfo bei F8+Druck
420 else.
421 call screen 501 starting at i_screen_start_column
422 i_screen_start_line
423 ending at i_screen_end_column
424 i_screen_end_line.
425 sy-pagno = g_sypagno.
426 endif.
427 else.
428 if gt_stack-is_layout-interface_complete is initial.
429 perform first_list_display.
430 else.
431 perform list_output_new tables t_outtab
432 gt_dummy.
433 endif.
434 endif.
435 else.
436 gs_selfield-tabindex = 1.
437 gs_selfield-tabname = gt_stack-i_tabname.
Regards,
Davis
‎2007 Jul 13 7:23 PM
What was the error message?
Have you searched OSS notes for this?
Rob
‎2007 Jul 13 7:30 PM
The error message is Posting_illegal_statement and yes I did search OSS (I always do that first) but I could not find anything relevant to my error.
Regards,
Davis