SAP TP_1A_RAIL_SEAT_INFO Function Module for Format seat reservation attributes of an NVS rail booking
TP_1A_RAIL_SEAT_INFO is a standard tp 1a rail seat info SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Format seat reservation attributes of an NVS rail booking 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 tp 1a rail seat info FM, simply by entering the name TP_1A_RAIL_SEAT_INFO into the relevant SAP transaction such as SE37 or SE38.
Function Group: FITP_AMADEUS_RAIL
Program Name: SAPLFITP_AMADEUS_RAIL
Main Program: SAPLFITP_AMADEUS_RAIL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function TP_1A_RAIL_SEAT_INFO 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 'TP_1A_RAIL_SEAT_INFO'"Format seat reservation attributes of an NVS rail booking.
EXPORTING
COACH_TYPE = "COMPARTMENT, OPEN_PLAN, etc.
SEAT_TYPE = "WINDOW, CENTRE, AISLE, etc.
SMOKING_AREA = "'Y' = Smoking, 'N' = Non-smoking
* CONCATENATE_INFO = "'X' = Concatenate the seat information
* INFO_SEPARATOR = '/' "Separator of the seat information
CHANGING
* INITIAL_EXECUTION = "Used when concatenating seat information to initialise work areas
SEAT_INFORMATION = "Field for reformatting the seat reservation attributes
IMPORTING Parameters details for TP_1A_RAIL_SEAT_INFO
COACH_TYPE - COMPARTMENT, OPEN_PLAN, etc.
Data type: CHAR32Optional: No
Call by Reference: Yes
SEAT_TYPE - WINDOW, CENTRE, AISLE, etc.
Data type: CHAR32Optional: No
Call by Reference: Yes
SMOKING_AREA - 'Y' = Smoking, 'N' = Non-smoking
Data type: CHAR1Optional: No
Call by Reference: Yes
CONCATENATE_INFO - 'X' = Concatenate the seat information
Data type: CHAR1Optional: Yes
Call by Reference: No ( called with pass by value option)
INFO_SEPARATOR - Separator of the seat information
Data type: CHAR1Default: '/'
Optional: Yes
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for TP_1A_RAIL_SEAT_INFO
INITIAL_EXECUTION - Used when concatenating seat information to initialise work areas
Data type: CHAR1Optional: Yes
Call by Reference: Yes
SEAT_INFORMATION - Field for reformatting the seat reservation attributes
Data type: CHAR50Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for TP_1A_RAIL_SEAT_INFO 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_coach_type | TYPE CHAR32, " | |||
| lv_initial_execution | TYPE CHAR1, " | |||
| lv_seat_type | TYPE CHAR32, " | |||
| lv_seat_information | TYPE CHAR50, " | |||
| lv_smoking_area | TYPE CHAR1, " | |||
| lv_concatenate_info | TYPE CHAR1, " | |||
| lv_info_separator | TYPE CHAR1. " '/' |
|   CALL FUNCTION 'TP_1A_RAIL_SEAT_INFO' "Format seat reservation attributes of an NVS rail booking |
| EXPORTING | ||
| COACH_TYPE | = lv_coach_type | |
| SEAT_TYPE | = lv_seat_type | |
| SMOKING_AREA | = lv_smoking_area | |
| CONCATENATE_INFO | = lv_concatenate_info | |
| INFO_SEPARATOR | = lv_info_separator | |
| CHANGING | ||
| INITIAL_EXECUTION | = lv_initial_execution | |
| SEAT_INFORMATION | = lv_seat_information | |
| . " TP_1A_RAIL_SEAT_INFO | ||
ABAP code using 7.40 inline data declarations to call FM TP_1A_RAIL_SEAT_INFO
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_info_separator) | = '/'. | |||
Search for further information about these or an SAP related objects