RFTP_TEST_WEB_PLAN_BOOK is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RFTP_TEST_WEB_PLAN_BOOK into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: DEPARR5 = D Arrival/Departure
Selection Text: DEPARR6 = D Arrival/Departure
Selection Text: LOC = D Hotel Location
Selection Text: LOC_ARR1 = D End Location
Selection Text: LOC_ARR2 = D End Location
Selection Text: LOC_ARR3 = D End Location
Selection Text: LOC_ARR4 = D End Location
Selection Text: LOC_ARR5 = D End Location
Selection Text: LOC_ARR6 = D End Location
Selection Text: LOC_DEP1 = D Starting Location
Selection Text: LOC_DEP2 = D Starting Location
Selection Text: LOC_DEP3 = D Starting Location
Selection Text: LOC_DEP4 = D Starting Location
Selection Text: LOC_DEP5 = D Starting Location
Selection Text: LOC_DEP6 = D Starting Location
Selection Text: PERS_NR = D Personnel Number
Selection Text: RFCDEST = D RFC Destination
Selection Text: SCHEME = Schema
Selection Text: TELEPHON = D Telephone Number
Selection Text: TIME_RE1 = Time
Selection Text: TIME_RE2 = Time
Selection Text: TIME_RE3 = Time
Selection Text: TIME_RE4 = Time
Selection Text: TIME_RE5 = Time
Selection Text: TIME_RE6 = Time
Selection Text: TRIP_NR = D Trip Number
Selection Text: ZIPCODE = D Postal Code
Selection Text: ADDRESS = D Street and Number
Selection Text: BOOKING = Booking or Save
Selection Text: CITYCODE = D Town
Selection Text: COUNTRY = D Country
Selection Text: DATE_ARR = D Arrival Date
Selection Text: DATE_DEP = D Departure Date
Selection Text: DATE_RE1 = D Date in Format YYYYMMDD As C
Selection Text: DATE_RE2 = D Date in Format YYYYMMDD As C
Selection Text: DATE_RE3 = D Date in Format YYYYMMDD As C
Selection Text: DATE_RE4 = D Date in Format YYYYMMDD As C
Selection Text: DATE_RE5 = D Date in Format YYYYMMDD As C
INCLUDE P_TEST_WEB_PLAN_RESERVEF01.
INCLUDE P_TEST_WEB_PLAN_BOOKF01.
INCLUDE RFTP_WEB_HOTEL_COMPLETE_F01.
INCLUDE RFTP_WEB_HOTEL_COMPLETE_F02.
INCLUDE RFTP_WEB_HOTEL_COMPLETE_F03.
INCLUDE RFTP_WEB_HOTEL_COMPLETE_F04.
INCLUDE RFTP_WEB_HOTEL_COMPLETE_F05.
INCLUDE RFTP_WEB_HOTEL_COMPLETE_F06.
INCLUDE RFTP_WEB_HOTEL_COMPLETE_F07.
INCLUDE RFTP_WEB_HOTEL_COMPLETE_F08.
INCLUDE P_TEST_WEB_PLAN_BOOK_USER_CF01.
No SAP DATABASE tables are accessed within this REPORT code!
FITP_WEB_PLAN_GET CALL FUNCTION 'FITP_WEB_PLAN_GET' DESTINATION rfcdest EXPORTING i_personal_number = pers_nr i_trip_number = trip_nr i_mode = 'C' IMPORTING e_plan_out = l_plan_out TABLES et_item_service = lt_item_service et_return = t_return et_info = lt_info.
FITP_WEB_FLIGHT_AVAIL CALL FUNCTION 'FITP_WEB_FLIGHT_AVAIL' DESTINATION rfcdest EXPORTING i_personal_number = pers_nr i_flight_scheme = scheme i_flight_input1 = l_flight_input1 i_flight_input2 = l_flight_input2 i_flight_input3 = l_flight_input3 i_flight_input4 = l_flight_input4 i_flight_input5 = l_flight_input5 i_flight_input6 = l_flight_input6 TABLES et_return = t_return et_flight_list = et_flight_list.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = l_repid i_internal_tabname = 'lt_flight_list' i_structure_name = 'FTPS_WEB_FLIGHT_LIST' CHANGING ct_fieldcat = l_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING * I_INTERFACE_CHECK = ' ' * I_BYPASSING_BUFFER = ' ' * I_BUFFER_ACTIVE = ' ' i_callback_program = l_repid * I_CALLBACK_PF_STATUS_SET = ' ' i_callback_user_command = 'USER_COMMAND_FLIGHT' * I_CALLBACK_TOP_OF_PAGE = ' ' * I_CALLBACK_HTML_TOP_OF_PAGE = ' ' * I_CALLBACK_HTML_END_OF_LIST = ' ' * I_STRUCTURE_NAME = * I_BACKGROUND_ID = ' ' * I_GRID_TITLE = * I_GRID_SETTINGS = is_layout = gs_layout it_fieldcat = l_fieldcat * IT_EXCLUDING = * IT_SPECIAL_GROUPS = * IT_SORT = * IT_FILTER = * IS_SEL_HIDE = * I_DEFAULT = 'X' * i_save = l_save * is_variant = disvariant it_events = gt_events[] * IT_EVENT_EXIT = * IS_PRINT = * IS_REPREP_ID = * I_SCREEN_START_COLUMN = 0 * I_SCREEN_START_LINE = 0 * I_SCREEN_END_COLUMN = 0 * I_SCREEN_END_LINE = 0 * IT_ALV_GRAPHICS = * IT_HYPERLINK = * IT_ADD_FIELDCAT = * IT_EXCEPT_QINFO = * I_HTML_HEIGHT_TOP = * I_HTML_HEIGHT_END = * IMPORTING * E_EXIT_CAUSED_BY_CALLER = * ES_EXIT_CAUSED_BY_USER = TABLES t_outtab = lt_flight_list EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_EVENTS_GET CALL FUNCTION 'REUSE_ALV_EVENTS_GET' EXPORTING i_list_type = 0 IMPORTING et_events = rt_events.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING i_logo = 'ENJOYSAP_LOGO' it_list_commentary = gt_list_top_of_page.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.
This will then be available for everyone to easily find by simply searching on the report name RFTP_TEST_WEB_PLAN_BOOK or its description.
RFTP_TEST_WEB_PLAN_BOOK - Program TEST_Flight_Hotel_booking RFTP_TEST_WEB_PLAN_BOOK - Program TEST_Flight_Hotel_booking RFTP_TEST_WEB_PLAN_APPROVE - Test Status Change of Travel Plan RFTP_TEST_WEB_PLAN_APPROVE - Test Status Change of Travel Plan RFTP_TEST_WEB_PLAN_APIS - Program TEST_Flight_Hotel_booking RFTP_TEST_WEB_PLAN_APIS - Program TEST_Flight_Hotel_booking