SAP JV_GET_PROPERTY_NAME Function Module for Get property name for venture/equity type level
JV_GET_PROPERTY_NAME is a standard jv get property name SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Get property name for venture/equity type level processing and below is the pattern details for this FM, 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 jv get property name FM, simply by entering the name JV_GET_PROPERTY_NAME into the relevant SAP transaction such as SE37 or SE38.
Function Group: GJEO
Program Name: SAPLGJEO
Main Program: SAPLGJEO
Appliation area: G
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function JV_GET_PROPERTY_NAME 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 'JV_GET_PROPERTY_NAME'"Get property name for venture/equity type level.
EXPORTING
I_BUKRS = "
I_VNAME = "
I_EGRUP = "
I_PARTN = "
I_PERIOD = "
I_YEAR = "
* I_DIRECT = ' ' "
IMPORTING
E_PROPERTY = "
IMPORTING Parameters details for JV_GET_PROPERTY_NAME
I_BUKRS -
Data type: T8JG-BUKRSOptional: No
Call by Reference: No ( called with pass by value option)
I_VNAME -
Data type: T8JG-VNAMEOptional: No
Call by Reference: No ( called with pass by value option)
I_EGRUP -
Data type: T8JG-EGRUPOptional: No
Call by Reference: No ( called with pass by value option)
I_PARTN -
Data type: T8JQ-PARTNOptional: No
Call by Reference: No ( called with pass by value option)
I_PERIOD -
Data type: BKPF-MONATOptional: No
Call by Reference: No ( called with pass by value option)
I_YEAR -
Data type: BKPF-GJAHROptional: No
Call by Reference: No ( called with pass by value option)
I_DIRECT -
Data type:Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for JV_GET_PROPERTY_NAME
E_PROPERTY -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for JV_GET_PROPERTY_NAME 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_bukrs | TYPE T8JG-BUKRS, " | |||
| lv_e_property | TYPE T8JG, " | |||
| lv_i_vname | TYPE T8JG-VNAME, " | |||
| lv_i_egrup | TYPE T8JG-EGRUP, " | |||
| lv_i_partn | TYPE T8JQ-PARTN, " | |||
| lv_i_period | TYPE BKPF-MONAT, " | |||
| lv_i_year | TYPE BKPF-GJAHR, " | |||
| lv_i_direct | TYPE BKPF. " ' ' |
|   CALL FUNCTION 'JV_GET_PROPERTY_NAME' "Get property name for venture/equity type level |
| EXPORTING | ||
| I_BUKRS | = lv_i_bukrs | |
| I_VNAME | = lv_i_vname | |
| I_EGRUP | = lv_i_egrup | |
| I_PARTN | = lv_i_partn | |
| I_PERIOD | = lv_i_period | |
| I_YEAR | = lv_i_year | |
| I_DIRECT | = lv_i_direct | |
| IMPORTING | ||
| E_PROPERTY | = lv_e_property | |
| . " JV_GET_PROPERTY_NAME | ||
ABAP code using 7.40 inline data declarations to call FM JV_GET_PROPERTY_NAME
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.| "SELECT single BUKRS FROM T8JG INTO @DATA(ld_i_bukrs). | ||||
| "SELECT single VNAME FROM T8JG INTO @DATA(ld_i_vname). | ||||
| "SELECT single EGRUP FROM T8JG INTO @DATA(ld_i_egrup). | ||||
| "SELECT single PARTN FROM T8JQ INTO @DATA(ld_i_partn). | ||||
| "SELECT single MONAT FROM BKPF INTO @DATA(ld_i_period). | ||||
| "SELECT single GJAHR FROM BKPF INTO @DATA(ld_i_year). | ||||
| DATA(ld_i_direct) | = ' '. | |||
Search for further information about these or an SAP related objects