/Dump
Created
February 4, 2020 16:47
ST22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Information on where terminated | |
Termination occurred in the ABAP program "SAPLKBPP" - in "BP_DETERMINE_OLEDNR". | |
The main program was "BPINDX03 ". | |
In the source code you have the termination point in line 2843 | |
of the (Include) program "LKBPPF04". | |
Source Code Extract | |
Line SourceCde | |
2813 FORM BP_DETERMINE_OLEDNR. | |
2814 | |
2815 CLEAR T_CU. | |
2816 | |
2817 DATA: L_PROF_TAB LIKE T_OBJ-PROF_TAB, | |
2818 L_CURTYP LIKE T_OBJ-CURTYP, | |
2819 L_ELEMENT LIKE BPDY-ELEMENT. | |
2820 | |
2821 LOOP AT T_OBJ. | |
2822 | |
2823 PERFORM READ_STEPLOOP USING T_OBJ-INDEX | |
2824 CHANGING DUMMY L_ELEMENT DUMMY. | |
2825 | |
2826 | |
2827 PERFORM GET_OBJ_CURRENCY USING BPIN-ORGWAER | |
2828 CHANGING T_OBJ-OWAER | |
2829 L_PROF_TAB | |
2830 L_CURTYP. | |
2831 | |
2832 | |
2833 IF T_CU-WAERS <> T_OBJ-OWAER. | |
2834 READ TABLE T_CU WITH KEY WAERS = T_OBJ-OWAER. | |
2835 ENDIF. | |
2836 MOVE T_CU-LEDNR TO T_OBJ-OLEDNR. | |
2837 MODIFY T_OBJ. | |
2838 | |
2839 ENDLOOP. | |
2840 | |
2841 EXPORT T_OBJ TO MEMORY ID 'T_OBJ'. | |
2842 | |
>>>>> ENDFORM. "bp_determine_olednr | |
2844 | |
2845 | |
2846 *&---------------------------------------------------------------------* | |
2847 *& |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment