SAP FM_EA_SAMPLE_LEAVE Function Module for Gets the Policy document in PDF format
FM_EA_SAMPLE_LEAVE is a standard fm ea sample leave SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Gets the Policy document in PDF format 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 fm ea sample leave FM, simply by entering the name FM_EA_SAMPLE_LEAVE into the relevant SAP transaction such as SE37 or SE38.
Function Group: EH_EA_SAMPLE
Program Name: SAPLEH_EA_SAMPLE
Main Program: SAPLEH_EA_SAMPLE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FM_EA_SAMPLE_LEAVE 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 'FM_EA_SAMPLE_LEAVE'"Gets the Policy document in PDF format.
EXPORTING
IFD_PERNR = "Solution Type
IFD_EASTP = "Role
IFD_EAHFD = "Header Field
IFD_EAIOD = "Creation Date
IFD_R_MASSN = "Action Type
IFD_R_MASSG = "Reason for Action
IFD_R_EADRN = "Detailed Reason
IMPORTING
EST_VALUE = "Form Output (PDF, PDL)
EFD_ERRFG = "Error Flag
IMPORTING Parameters details for FM_EA_SAMPLE_LEAVE
IFD_PERNR - Solution Type
Data type: PERSNOOptional: No
Call by Reference: Yes
IFD_EASTP - Role
Data type: PIN_EASTPOptional: No
Call by Reference: Yes
IFD_EAHFD - Header Field
Data type: PIN_EAHFDOptional: No
Call by Reference: Yes
IFD_EAIOD - Creation Date
Data type: PIN_EAIODOptional: No
Call by Reference: Yes
IFD_R_MASSN - Action Type
Data type: MASSNOptional: No
Call by Reference: Yes
IFD_R_MASSG - Reason for Action
Data type: MASSGOptional: No
Call by Reference: Yes
IFD_R_EADRN - Detailed Reason
Data type: PIN_EADRNOptional: No
Call by Reference: Yes
EXPORTING Parameters details for FM_EA_SAMPLE_LEAVE
EST_VALUE - Form Output (PDF, PDL)
Data type: FPFORMOUTPUTOptional: No
Call by Reference: Yes
EFD_ERRFG - Error Flag
Data type: XFELDOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FM_EA_SAMPLE_LEAVE 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_est_value | TYPE FPFORMOUTPUT, " | |||
| lv_ifd_pernr | TYPE PERSNO, " | |||
| lv_efd_errfg | TYPE XFELD, " | |||
| lv_ifd_eastp | TYPE PIN_EASTP, " | |||
| lv_ifd_eahfd | TYPE PIN_EAHFD, " | |||
| lv_ifd_eaiod | TYPE PIN_EAIOD, " | |||
| lv_ifd_r_massn | TYPE MASSN, " | |||
| lv_ifd_r_massg | TYPE MASSG, " | |||
| lv_ifd_r_eadrn | TYPE PIN_EADRN. " |
|   CALL FUNCTION 'FM_EA_SAMPLE_LEAVE' "Gets the Policy document in PDF format |
| EXPORTING | ||
| IFD_PERNR | = lv_ifd_pernr | |
| IFD_EASTP | = lv_ifd_eastp | |
| IFD_EAHFD | = lv_ifd_eahfd | |
| IFD_EAIOD | = lv_ifd_eaiod | |
| IFD_R_MASSN | = lv_ifd_r_massn | |
| IFD_R_MASSG | = lv_ifd_r_massg | |
| IFD_R_EADRN | = lv_ifd_r_eadrn | |
| IMPORTING | ||
| EST_VALUE | = lv_est_value | |
| EFD_ERRFG | = lv_efd_errfg | |
| . " FM_EA_SAMPLE_LEAVE | ||
ABAP code using 7.40 inline data declarations to call FM FM_EA_SAMPLE_LEAVE
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