SAP FBRC_MAP_PERIODS Function Module for Period Mapping (year, period, fiscal year variant)
FBRC_MAP_PERIODS is a standard fbrc map periods SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Period Mapping (year, period, fiscal year variant) 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 fbrc map periods FM, simply by entering the name FBRC_MAP_PERIODS into the relevant SAP transaction such as SE37 or SE38.
Function Group: FB_RC_SERVICES
Program Name: SAPLFB_RC_SERVICES
Main Program: SAPLFB_RC_SERVICES
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FBRC_MAP_PERIODS 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 'FBRC_MAP_PERIODS'"Period Mapping (year, period, fiscal year variant).
EXPORTING
ED_FYVAR_FROM = "From Fiscal Year Variant
ED_FYVAR_TO = "To Fiscal Year Variant
ED_RYEAR_FROM = "Fiscal Year
ED_PERID_FROM = "Posting period
IMPORTING
ID_RYEAR_TO = "Fiscal Year
ID_PERID_TO = "Posting period
IT_MESSAGE = "Message table message collector
EXCEPTIONS
EXC_FROM_FYVAR_NOT_DEFINED = 1 EXC_FROM_PERIOD_NOT_DEFINED = 2 EXC_TO_FYVAR_NOT_DEFINED = 3 EXC_TO_PERIOD_NOT_DEFINED = 4
IMPORTING Parameters details for FBRC_MAP_PERIODS
ED_FYVAR_FROM - From Fiscal Year Variant
Data type: PERIVOptional: No
Call by Reference: Yes
ED_FYVAR_TO - To Fiscal Year Variant
Data type: PERIVOptional: No
Call by Reference: Yes
ED_RYEAR_FROM - Fiscal Year
Data type: GJAHROptional: No
Call by Reference: Yes
ED_PERID_FROM - Posting period
Data type: POPEROptional: No
Call by Reference: Yes
EXPORTING Parameters details for FBRC_MAP_PERIODS
ID_RYEAR_TO - Fiscal Year
Data type: GJAHROptional: No
Call by Reference: Yes
ID_PERID_TO - Posting period
Data type: POPEROptional: No
Call by Reference: Yes
IT_MESSAGE - Message table message collector
Data type: TSMESGOptional: No
Call by Reference: Yes
EXCEPTIONS details
EXC_FROM_FYVAR_NOT_DEFINED - From Fiscal Year Variant Not Defined
Data type:Optional: No
Call by Reference: Yes
EXC_FROM_PERIOD_NOT_DEFINED - From Period Not Defined
Data type:Optional: No
Call by Reference: Yes
EXC_TO_FYVAR_NOT_DEFINED - To Fiscal Year Variant Not Defined
Data type:Optional: No
Call by Reference: Yes
EXC_TO_PERIOD_NOT_DEFINED - To Period Not Defined
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FBRC_MAP_PERIODS 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_id_ryear_to | TYPE GJAHR, " | |||
| lv_ed_fyvar_from | TYPE PERIV, " | |||
| lv_exc_from_fyvar_not_defined | TYPE PERIV, " | |||
| lv_ed_fyvar_to | TYPE PERIV, " | |||
| lv_id_perid_to | TYPE POPER, " | |||
| lv_exc_from_period_not_defined | TYPE POPER, " | |||
| lv_it_message | TYPE TSMESG, " | |||
| lv_ed_ryear_from | TYPE GJAHR, " | |||
| lv_exc_to_fyvar_not_defined | TYPE GJAHR, " | |||
| lv_ed_perid_from | TYPE POPER, " | |||
| lv_exc_to_period_not_defined | TYPE POPER. " |
|   CALL FUNCTION 'FBRC_MAP_PERIODS' "Period Mapping (year, period, fiscal year variant) |
| EXPORTING | ||
| ED_FYVAR_FROM | = lv_ed_fyvar_from | |
| ED_FYVAR_TO | = lv_ed_fyvar_to | |
| ED_RYEAR_FROM | = lv_ed_ryear_from | |
| ED_PERID_FROM | = lv_ed_perid_from | |
| IMPORTING | ||
| ID_RYEAR_TO | = lv_id_ryear_to | |
| ID_PERID_TO | = lv_id_perid_to | |
| IT_MESSAGE | = lv_it_message | |
| EXCEPTIONS | ||
| EXC_FROM_FYVAR_NOT_DEFINED = 1 | ||
| EXC_FROM_PERIOD_NOT_DEFINED = 2 | ||
| EXC_TO_FYVAR_NOT_DEFINED = 3 | ||
| EXC_TO_PERIOD_NOT_DEFINED = 4 | ||
| . " FBRC_MAP_PERIODS | ||
ABAP code using 7.40 inline data declarations to call FM FBRC_MAP_PERIODS
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