SAP WCFJ_FCODE_EXECUTE_EXTERNAL Function Module for WCM: Execute a Function Code (From External Application)
WCFJ_FCODE_EXECUTE_EXTERNAL is a standard wcfj fcode execute external SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for WCM: Execute a Function Code (From External Application) 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 wcfj fcode execute external FM, simply by entering the name WCFJ_FCODE_EXECUTE_EXTERNAL into the relevant SAP transaction such as SE37 or SE38.
Function Group: WCFJ
Program Name: SAPLWCFJ
Main Program: SAPLWCFJ
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function WCFJ_FCODE_EXECUTE_EXTERNAL 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 'WCFJ_FCODE_EXECUTE_EXTERNAL'"WCM: Execute a Function Code (From External Application).
EXPORTING
I_INF = "General WCM Structure
I_FCODE = "Function Code
I_CATTAB_EXEC = "I/O-Table of Catalogs
I_CATTAB_BEFORE = "I/O-Table of Catalogs
IMPORTING
E_CATTAB = "I/O-Table of Catalogs
E_MSGTAB = "Table with Messages
E_DONECNT = "Number of Processed Entries
EXCEPTIONS
ERROR = 1
IMPORTING Parameters details for WCFJ_FCODE_EXECUTE_EXTERNAL
I_INF - General WCM Structure
Data type: WCTP1_INF_TYPEOptional: No
Call by Reference: No ( called with pass by value option)
I_FCODE - Function Code
Data type: WCTPF_FCODE_TYPEOptional: No
Call by Reference: No ( called with pass by value option)
I_CATTAB_EXEC - I/O-Table of Catalogs
Data type: WCTCATALOGOptional: No
Call by Reference: No ( called with pass by value option)
I_CATTAB_BEFORE - I/O-Table of Catalogs
Data type: WCTCATALOGOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for WCFJ_FCODE_EXECUTE_EXTERNAL
E_CATTAB - I/O-Table of Catalogs
Data type: WCTCATALOGOptional: No
Call by Reference: No ( called with pass by value option)
E_MSGTAB - Table with Messages
Data type: BAL_T_MSGOptional: No
Call by Reference: No ( called with pass by value option)
E_DONECNT - Number of Processed Entries
Data type: WCTP1_CNT_TYPEOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for WCFJ_FCODE_EXECUTE_EXTERNAL 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_error | TYPE STRING, " | |||
| lv_i_inf | TYPE WCTP1_INF_TYPE, " | |||
| lv_e_cattab | TYPE WCTCATALOG, " | |||
| lv_i_fcode | TYPE WCTPF_FCODE_TYPE, " | |||
| lv_e_msgtab | TYPE BAL_T_MSG, " | |||
| lv_e_donecnt | TYPE WCTP1_CNT_TYPE, " | |||
| lv_i_cattab_exec | TYPE WCTCATALOG, " | |||
| lv_i_cattab_before | TYPE WCTCATALOG. " |
|   CALL FUNCTION 'WCFJ_FCODE_EXECUTE_EXTERNAL' "WCM: Execute a Function Code (From External Application) |
| EXPORTING | ||
| I_INF | = lv_i_inf | |
| I_FCODE | = lv_i_fcode | |
| I_CATTAB_EXEC | = lv_i_cattab_exec | |
| I_CATTAB_BEFORE | = lv_i_cattab_before | |
| IMPORTING | ||
| E_CATTAB | = lv_e_cattab | |
| E_MSGTAB | = lv_e_msgtab | |
| E_DONECNT | = lv_e_donecnt | |
| EXCEPTIONS | ||
| ERROR = 1 | ||
| . " WCFJ_FCODE_EXECUTE_EXTERNAL | ||
ABAP code using 7.40 inline data declarations to call FM WCFJ_FCODE_EXECUTE_EXTERNAL
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