EXIT_SAPLJKAMOPLAN_001 is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name EXIT_SAPLJKAMOPLAN_001 into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
XJKAMO
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'EXIT_SAPLJKAMOPLAN_001' "IS-M/SD: Find Amortization Condition Document in Buffer Table
EXPORTING
i_komk = " komk Pricing Interface: Header Data
i_komp = " komp Pricing Interface: Item Data
i_jkak = " jkak Order Header
i_jkap = " jkap Items
i_jkkd = " jkkd Business Data
i_jkep = " jkep Schedule Lines
i_jkprom = " jkprom Introduction Data
IMPORTING
e_amorate = " jkamoplan-amorate Amortization Installment from Buffer Table
e_knumv = " jkamoplan-knumv_amo Number of Condition Document from Buffer Table
CHANGING
c_xbuffered = " jpsd_xfeld Indicator: Condition Document found in Buffer Table
c_xcustomer_condition = " jpsd_xfeld Indicator: Customer-Specific Conditions Exist
. " EXIT_SAPLJKAMOPLAN_001
The ABAP code below is a full code listing to execute function module EXIT_SAPLJKAMOPLAN_001 including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).
| ld_e_amorate | TYPE JKAMOPLAN-AMORATE , |
| ld_e_knumv | TYPE JKAMOPLAN-KNUMV_AMO . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_c_xbuffered | TYPE JPSD_XFELD , |
| ld_e_amorate | TYPE JKAMOPLAN-AMORATE , |
| ld_i_komk | TYPE KOMK , |
| ld_c_xcustomer_condition | TYPE JPSD_XFELD , |
| ld_e_knumv | TYPE JKAMOPLAN-KNUMV_AMO , |
| ld_i_komp | TYPE KOMP , |
| ld_i_jkak | TYPE JKAK , |
| ld_i_jkap | TYPE JKAP , |
| ld_i_jkkd | TYPE JKKD , |
| ld_i_jkep | TYPE JKEP , |
| ld_i_jkprom | TYPE JKPROM . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name EXIT_SAPLJKAMOPLAN_001 or its description.
EXIT_SAPLJKAMOPLAN_001 - IS-M/SD: Find Amortization Condition Document in Buffer Table EXIT_SAPLJK12_002 - IS-M/SD: User Exit for Order Overview - Change Field Catalog and Layou EXIT_SAPLJK12_001 - IS-M/SD: User Exit for Order Overview - Selection of Additional Fields EXIT_SAPLJK11_001 - IS-M/SD: Convert Copy Number to Internal Format EXIT_SAPLJK04_001 - Determination of Shipping Preparation Date as Earliest Possible Item S EXIT_SAPLJK02_003 - IS-M/SD: Determination of Unloading Point for Voucher Shipping