SAP HR_GBASPP_CREATE_D_MARK Function Module for Create NCALE
HR_GBASPP_CREATE_D_MARK is a standard hr gbaspp create d mark SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Create NCALE 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 hr gbaspp create d mark FM, simply by entering the name HR_GBASPP_CREATE_D_MARK into the relevant SAP transaction such as SE37 or SE38.
Function Group: HRGB_ASPP
Program Name: SAPLHRGB_ASPP
Main Program: SAPLHRGB_ASPP
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function HR_GBASPP_CREATE_D_MARK 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_GBASPP_CREATE_D_MARK'"Create NCALE.
EXPORTING
P_PERNR = "Personnel number
P_PERIOD_START = "Date
P_PERIOD_END = "Date
P_PDATE = "Date
P_KITDAY = "Checkbox
P_SW_PROT = "Checkbox
CHANGING
P_MARK = "User field for cluster PC (national)
P_EXCLUSION = "Statutory leave payments exclusion reason indicator
TABLES
P_P0000 = "HR Master Record: Infotype 0000 (Actions)
P_P0001 = "HR Master Record: Infotype 0001 (Org. Assignment)
P_P0086 = "HR Master Record: Infotype 0086 (SSP/SMP Exclusions GB)
P_P0088 = "HR Master Record: Infotype 0088 (SMP Record - GB)
P_ERROR = "Transfer Structure with all Sy Fields for T100
P_PLOG_TEXT = "Structure for HR Function Log
IMPORTING Parameters details for HR_GBASPP_CREATE_D_MARK
P_PERNR - Personnel number
Data type: P_PERNROptional: No
Call by Reference: No ( called with pass by value option)
P_PERIOD_START - Date
Data type: DATUMOptional: No
Call by Reference: No ( called with pass by value option)
P_PERIOD_END - Date
Data type: DATUMOptional: No
Call by Reference: No ( called with pass by value option)
P_PDATE - Date
Data type: DATUMOptional: No
Call by Reference: No ( called with pass by value option)
P_KITDAY - Checkbox
Data type: XFELDOptional: No
Call by Reference: No ( called with pass by value option)
P_SW_PROT - Checkbox
Data type: XFELDOptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for HR_GBASPP_CREATE_D_MARK
P_MARK - User field for cluster PC (national)
Data type: CHAR25Optional: No
Call by Reference: No ( called with pass by value option)
P_EXCLUSION - Statutory leave payments exclusion reason indicator
Data type: SSPXROptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for HR_GBASPP_CREATE_D_MARK
P_P0000 - HR Master Record: Infotype 0000 (Actions)
Data type: P0000Optional: No
Call by Reference: No ( called with pass by value option)
P_P0001 - HR Master Record: Infotype 0001 (Org. Assignment)
Data type: P0001Optional: No
Call by Reference: No ( called with pass by value option)
P_P0086 - HR Master Record: Infotype 0086 (SSP/SMP Exclusions GB)
Data type: P0086Optional: No
Call by Reference: No ( called with pass by value option)
P_P0088 - HR Master Record: Infotype 0088 (SMP Record - GB)
Data type: P0088Optional: No
Call by Reference: No ( called with pass by value option)
P_ERROR - Transfer Structure with all Sy Fields for T100
Data type: EDIMESSAGEOptional: No
Call by Reference: No ( called with pass by value option)
P_PLOG_TEXT - Structure for HR Function Log
Data type: PLOG_TEXTOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for HR_GBASPP_CREATE_D_MARK 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_p_mark | TYPE CHAR25, " | |||
| lt_p_p0000 | TYPE STANDARD TABLE OF P0000, " | |||
| lv_p_pernr | TYPE P_PERNR, " | |||
| lt_p_p0001 | TYPE STANDARD TABLE OF P0001, " | |||
| lv_p_exclusion | TYPE SSPXR, " | |||
| lv_p_period_start | TYPE DATUM, " | |||
| lt_p_p0086 | TYPE STANDARD TABLE OF P0086, " | |||
| lv_p_period_end | TYPE DATUM, " | |||
| lt_p_p0088 | TYPE STANDARD TABLE OF P0088, " | |||
| lv_p_pdate | TYPE DATUM, " | |||
| lt_p_error | TYPE STANDARD TABLE OF EDIMESSAGE, " | |||
| lv_p_kitday | TYPE XFELD, " | |||
| lv_p_sw_prot | TYPE XFELD, " | |||
| lt_p_plog_text | TYPE STANDARD TABLE OF PLOG_TEXT. " |
|   CALL FUNCTION 'HR_GBASPP_CREATE_D_MARK' "Create NCALE |
| EXPORTING | ||
| P_PERNR | = lv_p_pernr | |
| P_PERIOD_START | = lv_p_period_start | |
| P_PERIOD_END | = lv_p_period_end | |
| P_PDATE | = lv_p_pdate | |
| P_KITDAY | = lv_p_kitday | |
| P_SW_PROT | = lv_p_sw_prot | |
| CHANGING | ||
| P_MARK | = lv_p_mark | |
| P_EXCLUSION | = lv_p_exclusion | |
| TABLES | ||
| P_P0000 | = lt_p_p0000 | |
| P_P0001 | = lt_p_p0001 | |
| P_P0086 | = lt_p_p0086 | |
| P_P0088 | = lt_p_p0088 | |
| P_ERROR | = lt_p_error | |
| P_PLOG_TEXT | = lt_p_plog_text | |
| . " HR_GBASPP_CREATE_D_MARK | ||
ABAP code using 7.40 inline data declarations to call FM HR_GBASPP_CREATE_D_MARK
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