Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jcslzr
Created February 4, 2020 16:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jcslzr/20ae5c521c41d72af0140548229e2035 to your computer and use it in GitHub Desktop.
Save jcslzr/20ae5c521c41d72af0140548229e2035 to your computer and use it in GitHub Desktop.
ST22
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