RFTPPROF 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 RFTPPROF into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
TPPR - Travel Profile Display
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: PRV_VIEW = Provider View
Selection Text: PROFILE = Travel Profile
Selection Text: GEO_VIEW = Geographical View
Title: Travel Profile Display
Text Symbol: 018 = Minimum Travel Time
Text Symbol: 017 = Rail
Text Symbol: 016 = Rail Companies
Text Symbol: 015 = Minimum Usage
Text Symbol: 014 = Minimum Stay
Text Symbol: 013 = Not Specified
Text Symbol: 012 = Minimum Flight Duration
Text Symbol: 011 = Destination: Global
Text Symbol: 010 = Departure: Global
Text Symbol: 009 = Target:
Text Symbol: 008 = Departure:
Text Symbol: 007 = All Providers
Text Symbol: 006 = Car Rental Usage
Text Symbol: 005 = Hotel Stay
Text Symbol: 004 = Flight
Text Symbol: 003 = Car Rental Companies
Text Symbol: 002 = Hotel Chains
Text Symbol: 001 = Airlines
INCLUDE RFTPPROFTOP.
INCLUDE RFTPPROFFORM.
No SAP DATABASE tables are accessed within this REPORT code!
GET_PROFILE_COMPLEX CALL FUNCTION 'GET_PROFILE_COMPLEX' EXPORTING PROFILE = PROFILE IMPORTING ENTRIES = ENTRIES EXCEPTIONS NO_EXISTING_PROFILE = 1 ERROR_PROFILE_DEF = 2 OTHERS = 3.
RS_TREE_CREATE CALL FUNCTION 'RS_TREE_CREATE' EXPORTING ROOT_NAME = PROFILE ROOT_TYPE = 'W' * display_attributes = attributes IMPORTING ROOT_ID = ROOT_ID.
RS_TREE_DELETE_NODE CALL FUNCTION 'RS_TREE_DELETE_NODE' EXPORTING NODE_ID = ROOT_ID WITHOUT_ROOT = SPACE EXCEPTIONS ID_NOT_FOUND = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.