SAP FV_UF_RENTAL_AGREEMENT_IMPORT Function Module for
FV_UF_RENTAL_AGREEMENT_IMPORT is a standard fv uf rental agreement import SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for fv uf rental agreement import FM, simply by entering the name FV_UF_RENTAL_AGREEMENT_IMPORT into the relevant SAP transaction such as SE37 or SE38.
Function Group: FVUFTMPL
Program Name: SAPLFVUFTMPL
Main Program:
Appliation area: A
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FV_UF_RENTAL_AGREEMENT_IMPORT pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'FV_UF_RENTAL_AGREEMENT_IMPORT'".
EXPORTING
I_VIMIMV = "
* I_T_VIMIK2 = "
* I_T_VZZUSP = "
* I_T_VZGPO = "
* I_T_VZZKOPO = "
* I_T_VIBEPP = "
* I_T_VIAK02 = "
* I_T_VIMI08 = "
* I_T_VIMI32 = "
* I_T_VIMI56 = "
* I_T_VIMIK1 = "
IMPORTING Parameters details for FV_UF_RENTAL_AGREEMENT_IMPORT
I_VIMIMV -
Data type: VIMIMVOptional: No
Call by Reference: No ( called with pass by value option)
I_T_VIMIK2 -
Data type: RE_T_VIMIK2Optional: Yes
Call by Reference: Yes
I_T_VZZUSP -
Data type: RE_T_VZZUSPOptional: Yes
Call by Reference: Yes
I_T_VZGPO -
Data type: RE_T_VZGPOOptional: Yes
Call by Reference: Yes
I_T_VZZKOPO -
Data type: RE_T_VZZKOPOOptional: Yes
Call by Reference: Yes
I_T_VIBEPP -
Data type: RE_T_VIBEPPOptional: Yes
Call by Reference: Yes
I_T_VIAK02 -
Data type: RE_T_VIAK02Optional: Yes
Call by Reference: Yes
I_T_VIMI08 -
Data type: RE_T_VIMI08Optional: Yes
Call by Reference: Yes
I_T_VIMI32 -
Data type: RE_T_VIMI32Optional: Yes
Call by Reference: Yes
I_T_VIMI56 -
Data type: RE_T_VIMI56Optional: Yes
Call by Reference: Yes
I_T_VIMIK1 -
Data type: RE_T_VIMIK1Optional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for FV_UF_RENTAL_AGREEMENT_IMPORT Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_i_vimimv | TYPE VIMIMV, " | |||
| lv_i_t_vimik2 | TYPE RE_T_VIMIK2, " | |||
| lv_i_t_vzzusp | TYPE RE_T_VZZUSP, " | |||
| lv_i_t_vzgpo | TYPE RE_T_VZGPO, " | |||
| lv_i_t_vzzkopo | TYPE RE_T_VZZKOPO, " | |||
| lv_i_t_vibepp | TYPE RE_T_VIBEPP, " | |||
| lv_i_t_viak02 | TYPE RE_T_VIAK02, " | |||
| lv_i_t_vimi08 | TYPE RE_T_VIMI08, " | |||
| lv_i_t_vimi32 | TYPE RE_T_VIMI32, " | |||
| lv_i_t_vimi56 | TYPE RE_T_VIMI56, " | |||
| lv_i_t_vimik1 | TYPE RE_T_VIMIK1. " |
|   CALL FUNCTION 'FV_UF_RENTAL_AGREEMENT_IMPORT' " |
| EXPORTING | ||
| I_VIMIMV | = lv_i_vimimv | |
| I_T_VIMIK2 | = lv_i_t_vimik2 | |
| I_T_VZZUSP | = lv_i_t_vzzusp | |
| I_T_VZGPO | = lv_i_t_vzgpo | |
| I_T_VZZKOPO | = lv_i_t_vzzkopo | |
| I_T_VIBEPP | = lv_i_t_vibepp | |
| I_T_VIAK02 | = lv_i_t_viak02 | |
| I_T_VIMI08 | = lv_i_t_vimi08 | |
| I_T_VIMI32 | = lv_i_t_vimi32 | |
| I_T_VIMI56 | = lv_i_t_vimi56 | |
| I_T_VIMIK1 | = lv_i_t_vimik1 | |
| . " FV_UF_RENTAL_AGREEMENT_IMPORT | ||
ABAP code using 7.40 inline data declarations to call FM FV_UF_RENTAL_AGREEMENT_IMPORT
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.Search for further information about these or an SAP related objects