SAP POTENTIALANALYSIS_FIX_DRILL_UP Function Module for NOTRANSL: Potentialanalyse: Fixierungseinstellungen nach Navigation
POTENTIALANALYSIS_FIX_DRILL_UP is a standard potentialanalysis fix drill up SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Potentialanalyse: Fixierungseinstellungen nach Navigation 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 potentialanalysis fix drill up FM, simply by entering the name POTENTIALANALYSIS_FIX_DRILL_UP into the relevant SAP transaction such as SE37 or SE38.
Function Group: MCPV
Program Name: SAPLMCPV
Main Program:
Appliation area: M
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function POTENTIALANALYSIS_FIX_DRILL_UP 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 'POTENTIALANALYSIS_FIX_DRILL_UP'"NOTRANSL: Potentialanalyse: Fixierungseinstellungen nach Navigation.
EXPORTING
I_OWNER_PLOB = "
I_KEYF_LINE = "
I_OK_CODE = "
TABLES
T_LINES = "
T_COLS = "
T_TAB_OLD = "
T_TAB = "
T_TAB_FIX_SUM = "
T_TAB_FIX_CEL = "
T_TAB_ATEL = "
T_TAB_FIX_OLD = "
IMPORTING Parameters details for POTENTIALANALYSIS_FIX_DRILL_UP
I_OWNER_PLOB -
Data type: PGAN-PLOBOOptional: No
Call by Reference: No ( called with pass by value option)
I_KEYF_LINE -
Data type: MCP6_LI-LINEOptional: No
Call by Reference: No ( called with pass by value option)
I_OK_CODE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for POTENTIALANALYSIS_FIX_DRILL_UP
T_LINES -
Data type: MCP6_LIOptional: No
Call by Reference: No ( called with pass by value option)
T_COLS -
Data type: PGCOLSOptional: No
Call by Reference: No ( called with pass by value option)
T_TAB_OLD -
Data type: MXSOPOptional: No
Call by Reference: No ( called with pass by value option)
T_TAB -
Data type: MXSOPOptional: No
Call by Reference: No ( called with pass by value option)
T_TAB_FIX_SUM -
Data type: MXSOPOptional: No
Call by Reference: No ( called with pass by value option)
T_TAB_FIX_CEL -
Data type: MXSOPOptional: No
Call by Reference: No ( called with pass by value option)
T_TAB_ATEL -
Data type: MCP6_ATELOptional: No
Call by Reference: No ( called with pass by value option)
T_TAB_FIX_OLD -
Data type: MXSOPOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for POTENTIALANALYSIS_FIX_DRILL_UP 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: | ||||
| lt_t_lines | TYPE STANDARD TABLE OF MCP6_LI, " | |||
| lv_i_owner_plob | TYPE PGAN-PLOBO, " | |||
| lt_t_cols | TYPE STANDARD TABLE OF PGCOLS, " | |||
| lv_i_keyf_line | TYPE MCP6_LI-LINE, " | |||
| lv_i_ok_code | TYPE MCP6_LI, " | |||
| lt_t_tab_old | TYPE STANDARD TABLE OF MXSOP, " | |||
| lt_t_tab | TYPE STANDARD TABLE OF MXSOP, " | |||
| lt_t_tab_fix_sum | TYPE STANDARD TABLE OF MXSOP, " | |||
| lt_t_tab_fix_cel | TYPE STANDARD TABLE OF MXSOP, " | |||
| lt_t_tab_atel | TYPE STANDARD TABLE OF MCP6_ATEL, " | |||
| lt_t_tab_fix_old | TYPE STANDARD TABLE OF MXSOP. " |
|   CALL FUNCTION 'POTENTIALANALYSIS_FIX_DRILL_UP' "NOTRANSL: Potentialanalyse: Fixierungseinstellungen nach Navigation |
| EXPORTING | ||
| I_OWNER_PLOB | = lv_i_owner_plob | |
| I_KEYF_LINE | = lv_i_keyf_line | |
| I_OK_CODE | = lv_i_ok_code | |
| TABLES | ||
| T_LINES | = lt_t_lines | |
| T_COLS | = lt_t_cols | |
| T_TAB_OLD | = lt_t_tab_old | |
| T_TAB | = lt_t_tab | |
| T_TAB_FIX_SUM | = lt_t_tab_fix_sum | |
| T_TAB_FIX_CEL | = lt_t_tab_fix_cel | |
| T_TAB_ATEL | = lt_t_tab_atel | |
| T_TAB_FIX_OLD | = lt_t_tab_fix_old | |
| . " POTENTIALANALYSIS_FIX_DRILL_UP | ||
ABAP code using 7.40 inline data declarations to call FM POTENTIALANALYSIS_FIX_DRILL_UP
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.| "SELECT single PLOBO FROM PGAN INTO @DATA(ld_i_owner_plob). | ||||
| "SELECT single LINE FROM MCP6_LI INTO @DATA(ld_i_keyf_line). | ||||
Search for further information about these or an SAP related objects