SAP HR_E_GET_JUPER_DATA Function Module for









HR_E_GET_JUPER_DATA is a standard hr e get juper data 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 hr e get juper data FM, simply by entering the name HR_E_GET_JUPER_DATA into the relevant SAP transaction such as SE37 or SE38.

Function Group: 34CT
Program Name: SAPL34CT
Main Program: SAPL34CT
Appliation area: P
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function HR_E_GET_JUPER_DATA 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 'HR_E_GET_JUPER_DATA'"
EXPORTING
P_JUPER = "
* P_ACTUAL_DATE = SY-DATUM "

IMPORTING
P_DELEG_HACIENDA = "
P_DIRECC_PUERTA = "
P_DIRECC_COD_POST = "
P_DIRECC_MUNCIPIO = "
P_DIRECC_PROVINCIA = "
P_PERSONA_TEL = "
P_PERSONA_NOMBRE = "
P_REPRESENT = "
P_JUPER_LIST = "
P_JUPER_DATA = "
P_ADMIN_HACIENDA = "
P_EMPRESA_NIF = "
P_EMPRESA_NOMBRE = "
P_DIRECC_SIGLA = "
P_DIRECC_VIA_PUB = "
P_DIRECC_NUMERO = "
P_DIRECC_ESCALERA = "
P_DIRECC_PISO = "

EXCEPTIONS
ERROR = 1
.



IMPORTING Parameters details for HR_E_GET_JUPER_DATA

P_JUPER -

Data type: T001P-JUPER
Optional: No
Call by Reference: No ( called with pass by value option)

P_ACTUAL_DATE -

Data type: D
Default: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for HR_E_GET_JUPER_DATA

P_DELEG_HACIENDA -

Data type: T5E02-DEHAC
Optional: No
Call by Reference: No ( called with pass by value option)

P_DIRECC_PUERTA -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_DIRECC_COD_POST -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_DIRECC_MUNCIPIO -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_DIRECC_PROVINCIA -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_PERSONA_TEL -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_PERSONA_NOMBRE -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_REPRESENT -

Data type: PESW0_JUPER_DATA-REPRESENT
Optional: No
Call by Reference: Yes

P_JUPER_LIST -

Data type: PESW0_JUPER_LIST_TAB
Optional: No
Call by Reference: Yes

P_JUPER_DATA -

Data type: PESW0_JUPER_DATA
Optional: No
Call by Reference: Yes

P_ADMIN_HACIENDA -

Data type: T5E02-ADHAC
Optional: No
Call by Reference: No ( called with pass by value option)

P_EMPRESA_NIF -

Data type: T5E02-FINNR
Optional: No
Call by Reference: No ( called with pass by value option)

P_EMPRESA_NOMBRE -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_DIRECC_SIGLA -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_DIRECC_VIA_PUB -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_DIRECC_NUMERO -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_DIRECC_ESCALERA -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

P_DIRECC_PISO -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

ERROR -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for HR_E_GET_JUPER_DATA 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_error  TYPE STRING, "   
lv_p_juper  TYPE T001P-JUPER, "   
lv_p_deleg_hacienda  TYPE T5E02-DEHAC, "   
lv_p_direcc_puerta  TYPE T5E02, "   
lv_p_direcc_cod_post  TYPE T5E02, "   
lv_p_direcc_muncipio  TYPE T5E02, "   
lv_p_direcc_provincia  TYPE T5E02, "   
lv_p_persona_tel  TYPE T5E02, "   
lv_p_persona_nombre  TYPE T5E02, "   
lv_p_represent  TYPE PESW0_JUPER_DATA-REPRESENT, "   
lv_p_juper_list  TYPE PESW0_JUPER_LIST_TAB, "   
lv_p_juper_data  TYPE PESW0_JUPER_DATA, "   
lv_p_actual_date  TYPE D, "   SY-DATUM
lv_p_admin_hacienda  TYPE T5E02-ADHAC, "   
lv_p_empresa_nif  TYPE T5E02-FINNR, "   
lv_p_empresa_nombre  TYPE T5E02, "   
lv_p_direcc_sigla  TYPE T5E02, "   
lv_p_direcc_via_pub  TYPE T5E02, "   
lv_p_direcc_numero  TYPE T5E02, "   
lv_p_direcc_escalera  TYPE T5E02, "   
lv_p_direcc_piso  TYPE T5E02. "   

  CALL FUNCTION 'HR_E_GET_JUPER_DATA'  "
    EXPORTING
         P_JUPER = lv_p_juper
         P_ACTUAL_DATE = lv_p_actual_date
    IMPORTING
         P_DELEG_HACIENDA = lv_p_deleg_hacienda
         P_DIRECC_PUERTA = lv_p_direcc_puerta
         P_DIRECC_COD_POST = lv_p_direcc_cod_post
         P_DIRECC_MUNCIPIO = lv_p_direcc_muncipio
         P_DIRECC_PROVINCIA = lv_p_direcc_provincia
         P_PERSONA_TEL = lv_p_persona_tel
         P_PERSONA_NOMBRE = lv_p_persona_nombre
         P_REPRESENT = lv_p_represent
         P_JUPER_LIST = lv_p_juper_list
         P_JUPER_DATA = lv_p_juper_data
         P_ADMIN_HACIENDA = lv_p_admin_hacienda
         P_EMPRESA_NIF = lv_p_empresa_nif
         P_EMPRESA_NOMBRE = lv_p_empresa_nombre
         P_DIRECC_SIGLA = lv_p_direcc_sigla
         P_DIRECC_VIA_PUB = lv_p_direcc_via_pub
         P_DIRECC_NUMERO = lv_p_direcc_numero
         P_DIRECC_ESCALERA = lv_p_direcc_escalera
         P_DIRECC_PISO = lv_p_direcc_piso
    EXCEPTIONS
        ERROR = 1
. " HR_E_GET_JUPER_DATA




ABAP code using 7.40 inline data declarations to call FM HR_E_GET_JUPER_DATA

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 JUPER FROM T001P INTO @DATA(ld_p_juper).
 
"SELECT single DEHAC FROM T5E02 INTO @DATA(ld_p_deleg_hacienda).
 
 
 
 
 
 
 
"SELECT single REPRESENT FROM PESW0_JUPER_DATA INTO @DATA(ld_p_represent).
 
 
 
DATA(ld_p_actual_date) = SY-DATUM.
 
"SELECT single ADHAC FROM T5E02 INTO @DATA(ld_p_admin_hacienda).
 
"SELECT single FINNR FROM T5E02 INTO @DATA(ld_p_empresa_nif).
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!