SAP HR_DE_SV_GET_ANNAHMESTELLE Function Module for









HR_DE_SV_GET_ANNAHMESTELLE is a standard hr de sv get annahmestelle 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 de sv get annahmestelle FM, simply by entering the name HR_DE_SV_GET_ANNAHMESTELLE into the relevant SAP transaction such as SE37 or SE38.

Function Group: HRDS_KK
Program Name: SAPLHRDS_KK
Main Program: SAPLHRDS_KK
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function HR_DE_SV_GET_ANNAHMESTELLE 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_DE_SV_GET_ANNAHMESTELLE'"
EXPORTING
* P_KKART = 01 "
* P_BTRNR = "
* P_KVSCH = "
* P_DATE = SY-DATUM "
* P_WERKS = "
* P_BTRTL = "

IMPORTING
PS_BNR = "
PS_BNR_WTL = "
PS_BNR_DAV = "

EXCEPTIONS
PARAMETER_MISSING = 1 NO_KVSCH = 2 NO_BTRNR = 3 NO_ZAV = 4
.



IMPORTING Parameters details for HR_DE_SV_GET_ANNAHMESTELLE

P_KKART -

Data type: P01_KKART
Default: 01
Optional: Yes
Call by Reference: Yes

P_BTRNR -

Data type: BTRNR
Optional: Yes
Call by Reference: Yes

P_KVSCH -

Data type: KVSCH
Optional: Yes
Call by Reference: Yes

P_DATE -

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

P_WERKS -

Data type: PERSA
Optional: Yes
Call by Reference: Yes

P_BTRTL -

Data type: BTRTL
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for HR_DE_SV_GET_ANNAHMESTELLE

PS_BNR -

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

PS_BNR_WTL -

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

PS_BNR_DAV -

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

EXCEPTIONS details

PARAMETER_MISSING -

Data type:
Optional: No
Call by Reference: Yes

NO_KVSCH -

Data type:
Optional: No
Call by Reference: Yes

NO_BTRNR -

Data type:
Optional: No
Call by Reference: Yes

NO_ZAV -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for HR_DE_SV_GET_ANNAHMESTELLE 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_ps_bnr  TYPE HRDESV_S_BNR, "   
lv_p_kkart  TYPE P01_KKART, "   01
lv_parameter_missing  TYPE P01_KKART, "   
lv_p_btrnr  TYPE BTRNR, "   
lv_no_kvsch  TYPE BTRNR, "   
lv_ps_bnr_wtl  TYPE HRDESV_S_BNR, "   
lv_p_kvsch  TYPE KVSCH, "   
lv_no_btrnr  TYPE KVSCH, "   
lv_ps_bnr_dav  TYPE HRDESV_S_BNR, "   
lv_no_zav  TYPE HRDESV_S_BNR, "   
lv_p_date  TYPE DATS, "   SY-DATUM
lv_p_werks  TYPE PERSA, "   
lv_p_btrtl  TYPE BTRTL. "   

  CALL FUNCTION 'HR_DE_SV_GET_ANNAHMESTELLE'  "
    EXPORTING
         P_KKART = lv_p_kkart
         P_BTRNR = lv_p_btrnr
         P_KVSCH = lv_p_kvsch
         P_DATE = lv_p_date
         P_WERKS = lv_p_werks
         P_BTRTL = lv_p_btrtl
    IMPORTING
         PS_BNR = lv_ps_bnr
         PS_BNR_WTL = lv_ps_bnr_wtl
         PS_BNR_DAV = lv_ps_bnr_dav
    EXCEPTIONS
        PARAMETER_MISSING = 1
        NO_KVSCH = 2
        NO_BTRNR = 3
        NO_ZAV = 4
. " HR_DE_SV_GET_ANNAHMESTELLE




ABAP code using 7.40 inline data declarations to call FM HR_DE_SV_GET_ANNAHMESTELLE

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.

 
DATA(ld_p_kkart) = 01.
 
 
 
 
 
 
 
 
 
DATA(ld_p_date) = SY-DATUM.
 
 
 


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!