SAP FVD_SKIP_OL_CHANGE Function Module for Change Skip Data - Internally









FVD_SKIP_OL_CHANGE is a standard fvd skip ol change SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Change Skip Data - Internally 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 fvd skip ol change FM, simply by entering the name FVD_SKIP_OL_CHANGE into the relevant SAP transaction such as SE37 or SE38.

Function Group: FVD_SKIP_OL
Program Name: SAPLFVD_SKIP_OL
Main Program: SAPLFVD_SKIP_OL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function FVD_SKIP_OL_CHANGE 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 'FVD_SKIP_OL_CHANGE'"Change Skip Data - Internally
EXPORTING
I_S_ACTIVITY = "Action Box Extension and Skip
I_S_STEER_UI = "
I_S_STEER_OL = "

CHANGING
C_S_EXTSKIP_NEW = "Interface Structure and Control Data Extension and Skip
C_TAB_ALL_ITEMS = "Table Type for Structure RVZZBEPP
C_TAB_ITEMS = "Table Type for Structure RVZZBEPP
C_TAB_ITEMS_SEL = "Table Type for Structure RVZZBEPP
C_S_KOKO_ACT = "Table Condition Header
C_S_KOPO_ACT = "View of VZZKOPO with Additional Info. from VKOPOSTEU
C_S_LOAN = "Structure Contract Object in the Business Operations
.



IMPORTING Parameters details for FVD_SKIP_OL_CHANGE

I_S_ACTIVITY - Action Box Extension and Skip

Data type: REXTSKIP_ACTIVITY
Optional: No
Call by Reference: Yes

I_S_STEER_UI -

Data type: REXTSKIP-STEER_UI
Optional: No
Call by Reference: Yes

I_S_STEER_OL -

Data type: REXTSKIP-STEER_OL
Optional: No
Call by Reference: Yes

CHANGING Parameters details for FVD_SKIP_OL_CHANGE

C_S_EXTSKIP_NEW - Interface Structure and Control Data Extension and Skip

Data type: REXTSKIP
Optional: No
Call by Reference: Yes

C_TAB_ALL_ITEMS - Table Type for Structure RVZZBEPP

Data type: TRTY_RVZZBEPP
Optional: No
Call by Reference: Yes

C_TAB_ITEMS - Table Type for Structure RVZZBEPP

Data type: TRTY_RVZZBEPP
Optional: No
Call by Reference: Yes

C_TAB_ITEMS_SEL - Table Type for Structure RVZZBEPP

Data type: TRTY_RVZZBEPP
Optional: No
Call by Reference: Yes

C_S_KOKO_ACT - Table Condition Header

Data type: VZZKOKO
Optional: No
Call by Reference: Yes

C_S_KOPO_ACT - View of VZZKOPO with Additional Info. from VKOPOSTEU

Data type: TRTY_VVZZKOPO
Optional: No
Call by Reference: Yes

C_S_LOAN - Structure Contract Object in the Business Operations

Data type: FVD_TYP_LOAN
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FVD_SKIP_OL_CHANGE 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_i_s_activity  TYPE REXTSKIP_ACTIVITY, "   
lv_c_s_extskip_new  TYPE REXTSKIP, "   
lv_i_s_steer_ui  TYPE REXTSKIP-STEER_UI, "   
lv_c_tab_all_items  TYPE TRTY_RVZZBEPP, "   
lv_c_tab_items  TYPE TRTY_RVZZBEPP, "   
lv_i_s_steer_ol  TYPE REXTSKIP-STEER_OL, "   
lv_c_tab_items_sel  TYPE TRTY_RVZZBEPP, "   
lv_c_s_koko_act  TYPE VZZKOKO, "   
lv_c_s_kopo_act  TYPE TRTY_VVZZKOPO, "   
lv_c_s_loan  TYPE FVD_TYP_LOAN. "   

  CALL FUNCTION 'FVD_SKIP_OL_CHANGE'  "Change Skip Data - Internally
    EXPORTING
         I_S_ACTIVITY = lv_i_s_activity
         I_S_STEER_UI = lv_i_s_steer_ui
         I_S_STEER_OL = lv_i_s_steer_ol
    CHANGING
         C_S_EXTSKIP_NEW = lv_c_s_extskip_new
         C_TAB_ALL_ITEMS = lv_c_tab_all_items
         C_TAB_ITEMS = lv_c_tab_items
         C_TAB_ITEMS_SEL = lv_c_tab_items_sel
         C_S_KOKO_ACT = lv_c_s_koko_act
         C_S_KOPO_ACT = lv_c_s_kopo_act
         C_S_LOAN = lv_c_s_loan
. " FVD_SKIP_OL_CHANGE




ABAP code using 7.40 inline data declarations to call FM FVD_SKIP_OL_CHANGE

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 STEER_UI FROM REXTSKIP INTO @DATA(ld_i_s_steer_ui).
 
 
 
"SELECT single STEER_OL FROM REXTSKIP INTO @DATA(ld_i_s_steer_ol).
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!