SAP TAW10_BASICS_CREATE_PLANELIST Function Module for
TAW10_BASICS_CREATE_PLANELIST is a standard taw10 basics create planelist 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 taw10 basics create planelist FM, simply by entering the name TAW10_BASICS_CREATE_PLANELIST into the relevant SAP transaction such as SE37 or SE38.
Function Group: TAW10_BASICS_FLIGHT
Program Name: SAPLTAW10_BASICS_FLIGHT
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function TAW10_BASICS_CREATE_PLANELIST 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 'TAW10_BASICS_CREATE_PLANELIST'".
EXPORTING
* IP_SEATSOCC = 0 "
IP_CARRID = "
IP_PAYMENTSUM = "
IP_CURRENCY = "
IMPORTING
EP_PLANELIST = "
EXCEPTIONS
NO_PLANES = 1
IMPORTING Parameters details for TAW10_BASICS_CREATE_PLANELIST
IP_SEATSOCC -
Data type: SFLIGHT-SEATSOCCOptional: Yes
Call by Reference: No ( called with pass by value option)
IP_CARRID -
Data type: SPFLI-CARRIDOptional: No
Call by Reference: No ( called with pass by value option)
IP_PAYMENTSUM -
Data type: SFLIGHT-PAYMENTSUMOptional: No
Call by Reference: No ( called with pass by value option)
IP_CURRENCY -
Data type: SFLIGHT-CURRENCYOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for TAW10_BASICS_CREATE_PLANELIST
EP_PLANELIST -
Data type: TAW10_TYPS_PLANETABOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_PLANES -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for TAW10_BASICS_CREATE_PLANELIST 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_no_planes | TYPE STRING, " | |||
| lv_ip_seatsocc | TYPE SFLIGHT-SEATSOCC, " 0 | |||
| lv_ep_planelist | TYPE TAW10_TYPS_PLANETAB, " | |||
| lv_ip_carrid | TYPE SPFLI-CARRID, " | |||
| lv_ip_paymentsum | TYPE SFLIGHT-PAYMENTSUM, " | |||
| lv_ip_currency | TYPE SFLIGHT-CURRENCY. " |
|   CALL FUNCTION 'TAW10_BASICS_CREATE_PLANELIST' " |
| EXPORTING | ||
| IP_SEATSOCC | = lv_ip_seatsocc | |
| IP_CARRID | = lv_ip_carrid | |
| IP_PAYMENTSUM | = lv_ip_paymentsum | |
| IP_CURRENCY | = lv_ip_currency | |
| IMPORTING | ||
| EP_PLANELIST | = lv_ep_planelist | |
| EXCEPTIONS | ||
| NO_PLANES = 1 | ||
| . " TAW10_BASICS_CREATE_PLANELIST | ||
ABAP code using 7.40 inline data declarations to call FM TAW10_BASICS_CREATE_PLANELIST
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 SEATSOCC FROM SFLIGHT INTO @DATA(ld_ip_seatsocc). | ||||
| "SELECT single CARRID FROM SPFLI INTO @DATA(ld_ip_carrid). | ||||
| "SELECT single PAYMENTSUM FROM SFLIGHT INTO @DATA(ld_ip_paymentsum). | ||||
| "SELECT single CURRENCY FROM SFLIGHT INTO @DATA(ld_ip_currency). | ||||
Search for further information about these or an SAP related objects