SAP RLACST_A_CREATE_FROM_POSTINGS Function Module for NOTRANSL: Auszugs/Initialauszug aus Buchungen erzeugen
RLACST_A_CREATE_FROM_POSTINGS is a standard rlacst a create from postings SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Auszugs/Initialauszug aus Buchungen erzeugen 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 rlacst a create from postings FM, simply by entering the name RLACST_A_CREATE_FROM_POSTINGS into the relevant SAP transaction such as SE37 or SE38.
Function Group: RL_STATEMENT_AP
Program Name: SAPLRL_STATEMENT_AP
Main Program: SAPLRL_STATEMENT_AP
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RLACST_A_CREATE_FROM_POSTINGS 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 'RLACST_A_CREATE_FROM_POSTINGS'"NOTRANSL: Auszugs/Initialauszug aus Buchungen erzeugen.
EXPORTING
SEL_PARAMS = "DE-EN-LANG-SWITCH-NO-TRANSLATION
CREATE_INIT_ACST = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* DISPLAY_NO_LOG = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* CONTEXT = "Context for Account Statement Creation
IMPORTING
LOG_HANDLE = "Application Log: Log Handle
EXCEPTIONS
X_FATAL_CREATION_ERROR = 1
IMPORTING Parameters details for RLACST_A_CREATE_FROM_POSTINGS
SEL_PARAMS - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: VHURL_CREA_ACST_SELOptional: No
Call by Reference: Yes
CREATE_INIT_ACST - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: RM_FLAGOptional: No
Call by Reference: Yes
DISPLAY_NO_LOG - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: RM_FLAGOptional: Yes
Call by Reference: Yes
CONTEXT - Context for Account Statement Creation
Data type: RL_CONTXT_ACSTCREAOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for RLACST_A_CREATE_FROM_POSTINGS
LOG_HANDLE - Application Log: Log Handle
Data type: BALLOGHNDLOptional: No
Call by Reference: Yes
EXCEPTIONS details
X_FATAL_CREATION_ERROR - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for RLACST_A_CREATE_FROM_POSTINGS 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_log_handle | TYPE BALLOGHNDL, " | |||
| lv_sel_params | TYPE VHURL_CREA_ACST_SEL, " | |||
| lv_x_fatal_creation_error | TYPE VHURL_CREA_ACST_SEL, " | |||
| lv_create_init_acst | TYPE RM_FLAG, " | |||
| lv_display_no_log | TYPE RM_FLAG, " | |||
| lv_context | TYPE RL_CONTXT_ACSTCREA. " |
|   CALL FUNCTION 'RLACST_A_CREATE_FROM_POSTINGS' "NOTRANSL: Auszugs/Initialauszug aus Buchungen erzeugen |
| EXPORTING | ||
| SEL_PARAMS | = lv_sel_params | |
| CREATE_INIT_ACST | = lv_create_init_acst | |
| DISPLAY_NO_LOG | = lv_display_no_log | |
| CONTEXT | = lv_context | |
| IMPORTING | ||
| LOG_HANDLE | = lv_log_handle | |
| EXCEPTIONS | ||
| X_FATAL_CREATION_ERROR = 1 | ||
| . " RLACST_A_CREATE_FROM_POSTINGS | ||
ABAP code using 7.40 inline data declarations to call FM RLACST_A_CREATE_FROM_POSTINGS
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