SAP FMCA_SAMPLE_P593 Function Module for Check Event for Facts
FMCA_SAMPLE_P593 is a standard fmca sample p593 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Check Event for Facts 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 fmca sample p593 FM, simply by entering the name FMCA_SAMPLE_P593 into the relevant SAP transaction such as SE37 or SE38.
Function Group: PSFACTS
Program Name: SAPLPSFACTS
Main Program: SAPLPSFACTS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FMCA_SAMPLE_P593 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_SAMPLE_P593'"Check Event for Facts.
EXPORTING
IV_OBART = "Object Type
IV_OBJID = "Object ID
IT_FACTS_OLD = "DFACTS sorted table type
IT_FACTS_NEW = "DFACTS sorted table type
IMPORTING
ET_MSG = "ALV Control: Messages
IMPORTING Parameters details for FMCA_SAMPLE_P593
IV_OBART - Object Type
Data type: J_OBARTOptional: No
Call by Reference: Yes
IV_OBJID - Object ID
Data type: J_OBJIDOptional: No
Call by Reference: Yes
IT_FACTS_OLD - DFACTS sorted table type
Data type: DFACTS_T_TYPEOptional: No
Call by Reference: Yes
IT_FACTS_NEW - DFACTS sorted table type
Data type: DFACTS_T_TYPEOptional: No
Call by Reference: Yes
EXPORTING Parameters details for FMCA_SAMPLE_P593
ET_MSG - ALV Control: Messages
Data type: LVC_T_MSG1Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FMCA_SAMPLE_P593 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_et_msg | TYPE LVC_T_MSG1, " | |||
| lv_iv_obart | TYPE J_OBART, " | |||
| lv_iv_objid | TYPE J_OBJID, " | |||
| lv_it_facts_old | TYPE DFACTS_T_TYPE, " | |||
| lv_it_facts_new | TYPE DFACTS_T_TYPE. " |
|   CALL FUNCTION 'FMCA_SAMPLE_P593' "Check Event for Facts |
| EXPORTING | ||
| IV_OBART | = lv_iv_obart | |
| IV_OBJID | = lv_iv_objid | |
| IT_FACTS_OLD | = lv_it_facts_old | |
| IT_FACTS_NEW | = lv_it_facts_new | |
| IMPORTING | ||
| ET_MSG | = lv_et_msg | |
| . " FMCA_SAMPLE_P593 | ||
ABAP code using 7.40 inline data declarations to call FM FMCA_SAMPLE_P593
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