SAP FITV_RD_START_TABLEMOD Function Module for









FITV_RD_START_TABLEMOD is a standard fitv rd start tablemod SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 fitv rd start tablemod FM, simply by entering the name FITV_RD_START_TABLEMOD into the relevant SAP transaction such as SE37 or SE38.

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



Function FITV_RD_START_TABLEMOD 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 'FITV_RD_START_TABLEMOD'"
EXPORTING
WA_TRIP_DATEN = "Table of all Trip Destinations f. Processing Recurring Dest.
* TEST = ' ' "Test Run
* I_SIMULATION = ' ' "

TABLES
ZIEL_DATEN = "Table of all Trip Destinations f. Processing Recurring Dest.
* ET_TRIP_CHAIN_REROL = "
* ET_TRIP_CHAIN = "
* KONTI = "
* KOSTR = "
* KOSTZ = "
* ZIEL = "
.



IMPORTING Parameters details for FITV_RD_START_TABLEMOD

WA_TRIP_DATEN - Table of all Trip Destinations f. Processing Recurring Dest.

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

TEST - Test Run

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_SIMULATION -

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

TABLES Parameters details for FITV_RD_START_TABLEMOD

ZIEL_DATEN - Table of all Trip Destinations f. Processing Recurring Dest.

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

ET_TRIP_CHAIN_REROL -

Data type: PTRV_TRIP_CHAIN
Optional: Yes
Call by Reference: Yes

ET_TRIP_CHAIN -

Data type: PTRV_TRIP_CHAIN
Optional: Yes
Call by Reference: Yes

KONTI -

Data type: PTK17
Optional: Yes
Call by Reference: Yes

KOSTR -

Data type: PTK14
Optional: Yes
Call by Reference: Yes

KOSTZ -

Data type: PTK16
Optional: Yes
Call by Reference: Yes

ZIEL -

Data type: PTK05
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for FITV_RD_START_TABLEMOD 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_ziel_daten  TYPE STANDARD TABLE OF PTRV_TRIP_CHAIN, "   
lv_wa_trip_daten  TYPE PTRV_TRIP_CHAIN, "   
lv_test  TYPE XFELD, "   SPACE
lt_et_trip_chain_rerol  TYPE STANDARD TABLE OF PTRV_TRIP_CHAIN, "   
lv_i_simulation  TYPE XFELD, "   SPACE
lt_et_trip_chain  TYPE STANDARD TABLE OF PTRV_TRIP_CHAIN, "   
lt_konti  TYPE STANDARD TABLE OF PTK17, "   
lt_kostr  TYPE STANDARD TABLE OF PTK14, "   
lt_kostz  TYPE STANDARD TABLE OF PTK16, "   
lt_ziel  TYPE STANDARD TABLE OF PTK05. "   

  CALL FUNCTION 'FITV_RD_START_TABLEMOD'  "
    EXPORTING
         WA_TRIP_DATEN = lv_wa_trip_daten
         TEST = lv_test
         I_SIMULATION = lv_i_simulation
    TABLES
         ZIEL_DATEN = lt_ziel_daten
         ET_TRIP_CHAIN_REROL = lt_et_trip_chain_rerol
         ET_TRIP_CHAIN = lt_et_trip_chain
         KONTI = lt_konti
         KOSTR = lt_kostr
         KOSTZ = lt_kostz
         ZIEL = lt_ziel
. " FITV_RD_START_TABLEMOD




ABAP code using 7.40 inline data declarations to call FM FITV_RD_START_TABLEMOD

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_test) = ' '.
 
 
DATA(ld_i_simulation) = ' '.
 
 
 
 
 
 


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!