SAP FT_COCKPIT_EXP_AUSLIE_SELECT Function Module for NOTRANSL: Außenhandel: Cockpit: Datenselektion Exportlieferungen









FT_COCKPIT_EXP_AUSLIE_SELECT is a standard ft cockpit exp auslie select 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: Außenhandel: Cockpit: Datenselektion Exportlieferungen 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 ft cockpit exp auslie select FM, simply by entering the name FT_COCKPIT_EXP_AUSLIE_SELECT into the relevant SAP transaction such as SE37 or SE38.

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



Function FT_COCKPIT_EXP_AUSLIE_SELECT 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 'FT_COCKPIT_EXP_AUSLIE_SELECT'"NOTRANSL: Außenhandel: Cockpit: Datenselektion Exportlieferungen
EXPORTING
* I_REDUCED_SEL_LINES = "

TABLES
* I_RANGE_ELAND = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_RANGE_WERKS = "Plant
* ITAB_LIKP = "Reference structure for XLIKP/YLIKP
* ITAB_LIPS = "Reference structure for XLIPS/YLIPS
* ITAB_VBPA = "Sales Document: Partner
* I_RANGE_VBELN = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_RANGE_VSTEL = "Company Code
* I_RANGE_LFART = "Billing Type
* I_RANGE_ERNAM = "Created By
* I_RANGE_ERDAT = "Billing Document Date
* I_RANGE_VKORG = "Sales Organization
* I_RANGE_KU_AG = "Sold-To Party
* I_RANGE_KU_WE = "Goods Recipient

EXCEPTIONS
NO_DATA_SELECTED = 1
.



IMPORTING Parameters details for FT_COCKPIT_EXP_AUSLIE_SELECT

I_REDUCED_SEL_LINES -

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

TABLES Parameters details for FT_COCKPIT_EXP_AUSLIE_SELECT

I_RANGE_ELAND - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

I_RANGE_WERKS - Plant

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

ITAB_LIKP - Reference structure for XLIKP/YLIKP

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

ITAB_LIPS - Reference structure for XLIPS/YLIPS

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

ITAB_VBPA - Sales Document: Partner

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

I_RANGE_VBELN - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

I_RANGE_VSTEL - Company Code

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

I_RANGE_LFART - Billing Type

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

I_RANGE_ERNAM - Created By

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

I_RANGE_ERDAT - Billing Document Date

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

I_RANGE_VKORG - Sales Organization

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

I_RANGE_KU_AG - Sold-To Party

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

I_RANGE_KU_WE - Goods Recipient

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

EXCEPTIONS details

NO_DATA_SELECTED - No documents selected

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

Copy and paste ABAP code example for FT_COCKPIT_EXP_AUSLIE_SELECT 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_i_range_eland  TYPE STANDARD TABLE OF VFBS_RANGE_ELAND, "   
lv_no_data_selected  TYPE VFBS_RANGE_ELAND, "   
lv_i_reduced_sel_lines  TYPE VFTU_REC_AREA_SETUP-FTNOE, "   
lt_i_range_werks  TYPE STANDARD TABLE OF VFBS_RANGE_WERKS, "   
lt_itab_likp  TYPE STANDARD TABLE OF LIKPVB, "   
lt_itab_lips  TYPE STANDARD TABLE OF LIPSVB, "   
lt_itab_vbpa  TYPE STANDARD TABLE OF VBPA, "   
lt_i_range_vbeln  TYPE STANDARD TABLE OF VFBS_RANGE_VBELN, "   
lt_i_range_vstel  TYPE STANDARD TABLE OF VFBS_RANGE_VSTEL, "   
lt_i_range_lfart  TYPE STANDARD TABLE OF VFBS_RANGE_LFART, "   
lt_i_range_ernam  TYPE STANDARD TABLE OF VFBS_RANGE_ERNAM, "   
lt_i_range_erdat  TYPE STANDARD TABLE OF VFBS_RANGE_ERDAT, "   
lt_i_range_vkorg  TYPE STANDARD TABLE OF VFBS_RANGE_VKORG, "   
lt_i_range_ku_ag  TYPE STANDARD TABLE OF VFBS_RANGE_KU_AG, "   
lt_i_range_ku_we  TYPE STANDARD TABLE OF VFBS_RANGE_KU_WE. "   

  CALL FUNCTION 'FT_COCKPIT_EXP_AUSLIE_SELECT'  "NOTRANSL: Außenhandel: Cockpit: Datenselektion Exportlieferungen
    EXPORTING
         I_REDUCED_SEL_LINES = lv_i_reduced_sel_lines
    TABLES
         I_RANGE_ELAND = lt_i_range_eland
         I_RANGE_WERKS = lt_i_range_werks
         ITAB_LIKP = lt_itab_likp
         ITAB_LIPS = lt_itab_lips
         ITAB_VBPA = lt_itab_vbpa
         I_RANGE_VBELN = lt_i_range_vbeln
         I_RANGE_VSTEL = lt_i_range_vstel
         I_RANGE_LFART = lt_i_range_lfart
         I_RANGE_ERNAM = lt_i_range_ernam
         I_RANGE_ERDAT = lt_i_range_erdat
         I_RANGE_VKORG = lt_i_range_vkorg
         I_RANGE_KU_AG = lt_i_range_ku_ag
         I_RANGE_KU_WE = lt_i_range_ku_we
    EXCEPTIONS
        NO_DATA_SELECTED = 1
. " FT_COCKPIT_EXP_AUSLIE_SELECT




ABAP code using 7.40 inline data declarations to call FM FT_COCKPIT_EXP_AUSLIE_SELECT

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 FTNOE FROM VFTU_REC_AREA_SETUP INTO @DATA(ld_i_reduced_sel_lines).
 
 
 
 
 
 
 
 
 
 
 
 
 


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!