SAP TAXI_INITIALIZE_CARRIERSCREEN Function Module for









TAXI_INITIALIZE_CARRIERSCREEN is a standard taxi initialize carrierscreen 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 taxi initialize carrierscreen FM, simply by entering the name TAXI_INITIALIZE_CARRIERSCREEN into the relevant SAP transaction such as SE37 or SE38.

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



Function TAXI_INITIALIZE_CARRIERSCREEN 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 'TAXI_INITIALIZE_CARRIERSCREEN'"
EXPORTING
TABSTRIP_CAPTIONS = "
* GUI_PROGRAM = "
* GUI_STATUS = "
* GUI_TITLE = "
* GUI_TITLE_PARAM = "
.



IMPORTING Parameters details for TAXI_INITIALIZE_CARRIERSCREEN

TABSTRIP_CAPTIONS -

Data type: TAXI_TABSTRIP_CAPTIONS
Optional: No
Call by Reference: No ( called with pass by value option)

GUI_PROGRAM -

Data type: TAXI_PARAMS-PROG
Optional: Yes
Call by Reference: No ( called with pass by value option)

GUI_STATUS -

Data type: TAXI_PARAMS-GUI_STATUS
Optional: Yes
Call by Reference: No ( called with pass by value option)

GUI_TITLE -

Data type: TAXI_PARAMS-GUI_TITLE
Optional: Yes
Call by Reference: No ( called with pass by value option)

GUI_TITLE_PARAM -

Data type: TAXI_PARAMS-TITLE_PARAM
Optional: Yes
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for TAXI_INITIALIZE_CARRIERSCREEN 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_tabstrip_captions  TYPE TAXI_TABSTRIP_CAPTIONS, "   
lv_gui_program  TYPE TAXI_PARAMS-PROG, "   
lv_gui_status  TYPE TAXI_PARAMS-GUI_STATUS, "   
lv_gui_title  TYPE TAXI_PARAMS-GUI_TITLE, "   
lv_gui_title_param  TYPE TAXI_PARAMS-TITLE_PARAM. "   

  CALL FUNCTION 'TAXI_INITIALIZE_CARRIERSCREEN'  "
    EXPORTING
         TABSTRIP_CAPTIONS = lv_tabstrip_captions
         GUI_PROGRAM = lv_gui_program
         GUI_STATUS = lv_gui_status
         GUI_TITLE = lv_gui_title
         GUI_TITLE_PARAM = lv_gui_title_param
. " TAXI_INITIALIZE_CARRIERSCREEN




ABAP code using 7.40 inline data declarations to call FM TAXI_INITIALIZE_CARRIERSCREEN

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 PROG FROM TAXI_PARAMS INTO @DATA(ld_gui_program).
 
"SELECT single GUI_STATUS FROM TAXI_PARAMS INTO @DATA(ld_gui_status).
 
"SELECT single GUI_TITLE FROM TAXI_PARAMS INTO @DATA(ld_gui_title).
 
"SELECT single TITLE_PARAM FROM TAXI_PARAMS INTO @DATA(ld_gui_title_param).
 


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!