SAP FMCA_AMD_BRF_MSG_MODIFY Function Module for
FMCA_AMD_BRF_MSG_MODIFY is a standard fmca amd brf msg modify 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 fmca amd brf msg modify FM, simply by entering the name FMCA_AMD_BRF_MSG_MODIFY into the relevant SAP transaction such as SE37 or SE38.
Function Group: FMCA_BRF_MSG
Program Name: SAPLFMCA_BRF_MSG
Main Program: SAPLFMCA_BRF_MSG
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FMCA_AMD_BRF_MSG_MODIFY 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 'FMCA_AMD_BRF_MSG_MODIFY'".
EXPORTING
IV_RETURN_ID = "
IT_BRF_MSG = "
* IX_SAVE = ' ' "
* IV_TIMESTAMP = "
* IV_CHECK_PARAMS = 'X' "
* IS_CONTROL = "
* IX_BRF = ' ' "
IMPORTING
ET_BRF_MSG_INSERT = "
ET_BRF_MSG_UPDATE = "
EV_CONTAIN_ERROR = "
EXCEPTIONS
MODIFY_FAILED = 1
IMPORTING Parameters details for FMCA_AMD_BRF_MSG_MODIFY
IV_RETURN_ID -
Data type: FMCA_RETURN_GUIDOptional: No
Call by Reference: Yes
IT_BRF_MSG -
Data type: FMCA_BRF_MSG_TOptional: No
Call by Reference: Yes
IX_SAVE -
Data type: XFELDDefault: SPACE
Optional: Yes
Call by Reference: Yes
IV_TIMESTAMP -
Data type: ERTSPOptional: Yes
Call by Reference: Yes
IV_CHECK_PARAMS -
Data type: XFELDDefault: 'X'
Optional: Yes
Call by Reference: Yes
IS_CONTROL -
Data type: FMCA_BRF_PROCESS_CONTROLOptional: Yes
Call by Reference: Yes
IX_BRF -
Data type: XFELDDefault: SPACE
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for FMCA_AMD_BRF_MSG_MODIFY
ET_BRF_MSG_INSERT -
Data type: FMCA_BRF_MSG_TOptional: No
Call by Reference: Yes
ET_BRF_MSG_UPDATE -
Data type: FMCA_BRF_MSG_TOptional: No
Call by Reference: Yes
EV_CONTAIN_ERROR -
Data type: XFELDOptional: No
Call by Reference: Yes
EXCEPTIONS details
MODIFY_FAILED -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FMCA_AMD_BRF_MSG_MODIFY 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_iv_return_id | TYPE FMCA_RETURN_GUID, " | |||
| lv_modify_failed | TYPE FMCA_RETURN_GUID, " | |||
| lv_et_brf_msg_insert | TYPE FMCA_BRF_MSG_T, " | |||
| lv_it_brf_msg | TYPE FMCA_BRF_MSG_T, " | |||
| lv_et_brf_msg_update | TYPE FMCA_BRF_MSG_T, " | |||
| lv_ix_save | TYPE XFELD, " SPACE | |||
| lv_ev_contain_error | TYPE XFELD, " | |||
| lv_iv_timestamp | TYPE ERTSP, " | |||
| lv_iv_check_params | TYPE XFELD, " 'X' | |||
| lv_is_control | TYPE FMCA_BRF_PROCESS_CONTROL, " | |||
| lv_ix_brf | TYPE XFELD. " SPACE |
|   CALL FUNCTION 'FMCA_AMD_BRF_MSG_MODIFY' " |
| EXPORTING | ||
| IV_RETURN_ID | = lv_iv_return_id | |
| IT_BRF_MSG | = lv_it_brf_msg | |
| IX_SAVE | = lv_ix_save | |
| IV_TIMESTAMP | = lv_iv_timestamp | |
| IV_CHECK_PARAMS | = lv_iv_check_params | |
| IS_CONTROL | = lv_is_control | |
| IX_BRF | = lv_ix_brf | |
| IMPORTING | ||
| ET_BRF_MSG_INSERT | = lv_et_brf_msg_insert | |
| ET_BRF_MSG_UPDATE | = lv_et_brf_msg_update | |
| EV_CONTAIN_ERROR | = lv_ev_contain_error | |
| EXCEPTIONS | ||
| MODIFY_FAILED = 1 | ||
| . " FMCA_AMD_BRF_MSG_MODIFY | ||
ABAP code using 7.40 inline data declarations to call FM FMCA_AMD_BRF_MSG_MODIFY
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_ix_save) | = ' '. | |||
| DATA(ld_iv_check_params) | = 'X'. | |||
| DATA(ld_ix_brf) | = ' '. | |||
Search for further information about these or an SAP related objects