SAP OIC_PATTERN_ALL_UPDATE_DU Function Module for F&A Migr. - Save Results from Pattern Analysis
OIC_PATTERN_ALL_UPDATE_DU is a standard oic pattern all update du SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for F&A Migr. - Save Results from Pattern Analysis 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 oic pattern all update du FM, simply by entering the name OIC_PATTERN_ALL_UPDATE_DU into the relevant SAP transaction such as SE37 or SE38.
Function Group: OIC_MIGR_DU
Program Name: SAPLOIC_MIGR_DU
Main Program: SAPLOIC_MIGR_DU
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function OIC_PATTERN_ALL_UPDATE_DU 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 'OIC_PATTERN_ALL_UPDATE_DU'"F&A Migr. - Save Results from Pattern Analysis.
EXPORTING
* IV_COMMIT = ' ' "Character field length 1
TABLES
T_OICF1_MIGR_TAB = "Results from Pattern Analysis for Structure OICF1
T_OICF3_REQ_TAB = "Item Patterns per Run
T_FORM_REQ_TAB = "Formula Patterns per Run
* T_ANALLVL_TAB = "Pattern analysis level
* T_ANALLVLT_TAB = "Description of Level in Pattern Analysis
* T_ANALLVL_FLDS_TAB = "Fields Used in Pattern Analysis Levels
T_OICF2_MIGR_TAB = "Results from Pattern Analysis for Structure OICF2
T_OICF3_MIGR_TAB = "Results from Pattern Analysis for Structure OICF3
T_FO_PER_MIGR_TAB = "Formula Structure Pattern - Header and Period Pattern
T_FO_ITM_MIGR_TAB = "Formula Structure Pattern - Term Item Pattern
* T_CPE_FO_LINK_TAB = "Relationship Between F&A Formula and CPE Formula
* T_FORM_ATTRIB_TAB = "Attributes of Business Context for F&A Formula
T_OICF1_REQ_TAB = "Header Patterns per Run
T_OICF2_REQ_TAB = "Period Patterns per Run
IMPORTING Parameters details for OIC_PATTERN_ALL_UPDATE_DU
IV_COMMIT - Character field length 1
Data type: CHAR01Default: ' '
Optional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for OIC_PATTERN_ALL_UPDATE_DU
T_OICF1_MIGR_TAB - Results from Pattern Analysis for Structure OICF1
Data type: OICF1_MIGROptional: No
Call by Reference: Yes
T_OICF3_REQ_TAB - Item Patterns per Run
Data type: OICF3_MIGR_REQOptional: No
Call by Reference: Yes
T_FORM_REQ_TAB - Formula Patterns per Run
Data type: OIC_FO_MIGR_REQOptional: No
Call by Reference: Yes
T_ANALLVL_TAB - Pattern analysis level
Data type: OIC_ANALLVLOptional: Yes
Call by Reference: Yes
T_ANALLVLT_TAB - Description of Level in Pattern Analysis
Data type: OIC_ANALLVL_TOptional: Yes
Call by Reference: Yes
T_ANALLVL_FLDS_TAB - Fields Used in Pattern Analysis Levels
Data type: OIC_ANALLVL_FLDSOptional: Yes
Call by Reference: Yes
T_OICF2_MIGR_TAB - Results from Pattern Analysis for Structure OICF2
Data type: OICF2_MIGROptional: No
Call by Reference: Yes
T_OICF3_MIGR_TAB - Results from Pattern Analysis for Structure OICF3
Data type: OICF3_MIGROptional: No
Call by Reference: Yes
T_FO_PER_MIGR_TAB - Formula Structure Pattern - Header and Period Pattern
Data type: OIC_FO_PER_MIGROptional: No
Call by Reference: Yes
T_FO_ITM_MIGR_TAB - Formula Structure Pattern - Term Item Pattern
Data type: OIC_FO_ITM_MIGROptional: No
Call by Reference: Yes
T_CPE_FO_LINK_TAB - Relationship Between F&A Formula and CPE Formula
Data type: OIC_CPE_FO_LINKOptional: Yes
Call by Reference: Yes
T_FORM_ATTRIB_TAB - Attributes of Business Context for F&A Formula
Data type: OIC_FORM_ATTRIBOptional: Yes
Call by Reference: Yes
T_OICF1_REQ_TAB - Header Patterns per Run
Data type: OICF1_MIGR_REQOptional: No
Call by Reference: Yes
T_OICF2_REQ_TAB - Period Patterns per Run
Data type: OICF2_MIGR_REQOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for OIC_PATTERN_ALL_UPDATE_DU 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_commit | TYPE CHAR01, " ' ' | |||
| lt_t_oicf1_migr_tab | TYPE STANDARD TABLE OF OICF1_MIGR, " | |||
| lt_t_oicf3_req_tab | TYPE STANDARD TABLE OF OICF3_MIGR_REQ, " | |||
| lt_t_form_req_tab | TYPE STANDARD TABLE OF OIC_FO_MIGR_REQ, " | |||
| lt_t_anallvl_tab | TYPE STANDARD TABLE OF OIC_ANALLVL, " | |||
| lt_t_anallvlt_tab | TYPE STANDARD TABLE OF OIC_ANALLVL_T, " | |||
| lt_t_anallvl_flds_tab | TYPE STANDARD TABLE OF OIC_ANALLVL_FLDS, " | |||
| lt_t_oicf2_migr_tab | TYPE STANDARD TABLE OF OICF2_MIGR, " | |||
| lt_t_oicf3_migr_tab | TYPE STANDARD TABLE OF OICF3_MIGR, " | |||
| lt_t_fo_per_migr_tab | TYPE STANDARD TABLE OF OIC_FO_PER_MIGR, " | |||
| lt_t_fo_itm_migr_tab | TYPE STANDARD TABLE OF OIC_FO_ITM_MIGR, " | |||
| lt_t_cpe_fo_link_tab | TYPE STANDARD TABLE OF OIC_CPE_FO_LINK, " | |||
| lt_t_form_attrib_tab | TYPE STANDARD TABLE OF OIC_FORM_ATTRIB, " | |||
| lt_t_oicf1_req_tab | TYPE STANDARD TABLE OF OICF1_MIGR_REQ, " | |||
| lt_t_oicf2_req_tab | TYPE STANDARD TABLE OF OICF2_MIGR_REQ. " |
|   CALL FUNCTION 'OIC_PATTERN_ALL_UPDATE_DU' "F&A Migr. - Save Results from Pattern Analysis |
| EXPORTING | ||
| IV_COMMIT | = lv_iv_commit | |
| TABLES | ||
| T_OICF1_MIGR_TAB | = lt_t_oicf1_migr_tab | |
| T_OICF3_REQ_TAB | = lt_t_oicf3_req_tab | |
| T_FORM_REQ_TAB | = lt_t_form_req_tab | |
| T_ANALLVL_TAB | = lt_t_analltl_tab | |
| T_ANALLVLT_TAB | = lt_t_analltlt_tab | |
| T_ANALLVL_FLDS_TAB | = lt_t_analltl_flds_tab | |
| T_OICF2_MIGR_TAB | = lt_t_oicf2_migr_tab | |
| T_OICF3_MIGR_TAB | = lt_t_oicf3_migr_tab | |
| T_FO_PER_MIGR_TAB | = lt_t_fo_per_migr_tab | |
| T_FO_ITM_MIGR_TAB | = lt_t_fo_itm_migr_tab | |
| T_CPE_FO_LINK_TAB | = lt_t_cpe_fo_link_tab | |
| T_FORM_ATTRIB_TAB | = lt_t_form_attrib_tab | |
| T_OICF1_REQ_TAB | = lt_t_oicf1_req_tab | |
| T_OICF2_REQ_TAB | = lt_t_oicf2_req_tab | |
| . " OIC_PATTERN_ALL_UPDATE_DU | ||
ABAP code using 7.40 inline data declarations to call FM OIC_PATTERN_ALL_UPDATE_DU
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_iv_commit) | = ' '. | |||
Search for further information about these or an SAP related objects