‎2011 Jul 07 11:35 AM
Dear All,
I have config receipt indicator: X Stock Transport Order in MB51. It is Working Completely good in Development in Quality. But it is having dump during i run into production server.
Information on where terminated
Termination occurred in the ABAP program "SAPLKKBL" - in "GEN_FIELD_OUT2".
The main program was "RM07DOCS ".
In the source code you have the termination point in line 2839
of the (Include) program "LKKBLF99".
2825 ----
2826 * FORM GEN_FIELD_OUT2 *
2827 ----
2828 * ........ *
2829 ----
2830 form gen_field_out2.
2831 field-symbols <l_initial>.
2832
2833 case gs_out-field_colcount.
2834 when 001.
2835 if gs_out_flags-slave ne 'X'.
2836 assign <fm01> to <field>.
2837 gs_fc = gs_mfc01.
2838 else.
>>>>> assign <fs01> to <field>.
2840 gs_fc = gs_sfc01.
2841 endif.
Don't understand what happened. Let me have some solution AEAP.
Regards,
Swapnil Vaidya
‎2011 Jul 14 8:28 AM
please write down your run time error and system error details
‎2011 Jul 14 8:28 AM
please write down your run time error and system error details
‎2011 Jul 14 9:29 AM
Runtime Errors GETWA_NOT_ASSIGNED
Termination occurred in the ABAP program "SAPLKKBL" - in "GEN_FIELD_OUT2".
The main program was "RM07DOCS ".
In the source code you have the termination point in line 2839
of the (Include) program "LKKBLF99".
Source Code Extract
Line SourceCde
2809 of structure t_outtab_slave to <fs96>.
2810 gs_sfc96 = gs_out_fieldcat.
2811 when 97.
2812 assign component gs_out_fieldcat-fieldname
2813 of structure t_outtab_slave to <fs97>.
2814 gs_sfc97 = gs_out_fieldcat.
2815 when 98.
2816 assign component gs_out_fieldcat-fieldname
2817 of structure t_outtab_slave to <fs98>.
2818 gs_sfc98 = gs_out_fieldcat.
2819 when 99.
2820 assign component gs_out_fieldcat-fieldname
2821 of structure t_outtab_slave to <fs99>.
2822 gs_sfc99 = gs_out_fieldcat.
2823 endcase.
2824 endform. "field_assign_hier_slave
2825 ----
2826 * FORM GEN_FIELD_OUT2 *
2827 ----
2828 * ........ *
2829 ----
2830 form gen_field_out2.
2831 field-symbols <l_initial>.
2832
2833 case gs_out-field_colcount.
2834 when 001.
2835 if gs_out_flags-slave ne 'X'.
2836 assign <fm01> to <field>.
2837 gs_fc = gs_mfc01.
2838 else.
>>>>> assign <fs01> to <field>.
2840 gs_fc = gs_sfc01.
2841 endif.
2842 when 002.
2843 if gs_out_flags-slave ne 'X'.
2844 assign <fm02> to <field>.
2845 gs_fc = gs_mfc02.
2846 else.
2847 assign <fs02> to <field>.
2848 gs_fc = gs_sfc02.
2849 endif.
2850 when 003.
2851 if gs_out_flags-slave ne 'X'.
2852 assign <fm03> to <field>.
2853 gs_fc = gs_mfc03.
2854 else.
2855 assign <fs03> to <field>.
2856 gs_fc = gs_sfc03.
2857 endif.
2858 when 004.
‎2011 Jul 14 9:26 AM
Hi,
Please check SAP Note 1505421, it seems similar error in the same subroutine. I strongly belive that you need to look for a similar SAP Note for MB51 (I could not find any) or ask your functional team to raise a high priority OSS Message for SAP. They need to provide a fix for this.
Cheers,
Anid