SAP Reports / Programs | Financial Accounting | Travel Management | Travel Planning(FI-TV-PL) SAP FI

P_SYNCHRO_PREF_F01 SAP ABAP INCLUDE - PSYNCHROPREFF01







P_SYNCHRO_PREF_F01 is a standard ABAP INCLUDE 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 P_SYNCHRO_PREF_F01 into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT P_SYNCHRO_PREF_F01. "Basic submit
SUBMIT P_SYNCHRO_PREF_F01 AND RETURN. "Return to original report after report execution complete
SUBMIT P_SYNCHRO_PREF_F01 VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


INCLUDES used within this REPORT P_SYNCHRO_PREF_F01

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

FITP_RFC_CREATE_PREFERENCES * call function 'FITP_RFC_CREATE_PREFERENCES' destination bc_dest * exporting * ota_controlparameter = wa_control_param * ota_customer = pwa_ota_data-wa_customer * ota_address = pwa_ota_data-wa_address * ota_directbill = pwa_ota_data-wa_directbill * ota_airlinepref = pwa_ota_data-wa_airlinepref * ota_hotelpref = pwa_ota_data-wa_hotelpref * ota_vehiclerentalpref = pwa_ota_data-wa_vehiclerentalpref * ota_affiliations = pwa_ota_data-wa_affiliations * ota_commonpref = pwa_ota_data-wa_commonpref * importing * ota_warningerror = wa_error * tables * ota_telephoneinfo_tab = pwa_ota_data-t_telephoneinfo * ota_email_tab = pwa_ota_data-t_email * ota_costcenter_tab = pwa_ota_data-t_costcenter * ota_creditcard_tab = pwa_ota_data-t_creditcard * ota_custloyalty_tab = pwa_ota_data-t_custloyalty * ota_airlineloyaltyrph_tab = pwa_ota_data-t_airlineloyaltyrph * ota_airssr_tab = pwa_ota_data-t_airssr * ota_hotelloyaltyrph_tab = pwa_ota_data-t_hotelloyaltyrph * ota_hotelcompanycode_tab = pwa_ota_data-t_hotelcompanycode * ota_vehicleloyaltyrph_tab = pwa_ota_data-t_vehicleloyaltyrph * ota_vehiclecompanycd_tab = pwa_ota_data-t_vehiclecompanycode * ota_othersrvcpref_tab = pwa_ota_data-t_otherservcpref * exceptions * communication_failure = 1 * others = 2.

TP_CREATE_PREFERENCES CALL FUNCTION 'TP_CREATE_PREFERENCES' EXPORTING PROVIDER = pwa_connect_param-gds CONNECT_PARAM = PWA_CONNECT_PARAM ota_customer = pwa_ota_data-wa_customer ota_address = pwa_ota_data-wa_address ota_directbill = pwa_ota_data-wa_directbill ota_airlinepref = pwa_ota_data-wa_airlinepref ota_hotelpref = pwa_ota_data-wa_hotelpref OTA_VEHICLERENTALPREF = pwa_ota_data-wa_vehiclerentalpref OTA_COMMONPREF = pwa_ota_data-wa_commonpref tables ota_telephoneinfo_tab = pwa_ota_data-t_telephoneinfo ota_email_tab = pwa_ota_data-t_email ota_costcenter_tab = pwa_ota_data-t_costcenter ota_creditcard_tab = pwa_ota_data-t_creditcard ota_custloyalty_tab = pwa_ota_data-t_custloyalty ota_airlineloyaltyrph_tab = pwa_ota_data-t_airlineloyaltyrph ota_airssr_tab = pwa_ota_data-t_airssr ota_hotelloyaltyrph_tab = pwa_ota_data-t_hotelloyaltyrph ota_hotelcompanycode_tab = pwa_ota_data-t_hotelcompanycode ota_vehicleloyaltyrph_tab = pwa_ota_data-t_vehicleloyaltyrph OTA_VEHICLECOMPANYCD_TAB = pwa_ota_data-t_vehiclecompanycode OTA_OTHERSRVCPREF_TAB = pwa_ota_data-t_otherservcpref CHANGING PERNR_UPD = pwa_pernr_upd OTA_AFFILIATIONS = pwa_ota_data-wa_affiliations .

FITP_RFC_DELETE_PREFERENCES * call function 'FITP_RFC_DELETE_PREFERENCES' destination bc_dest * exporting * ota_controlparameter = wa_control_param * importing * ota_warningerror = wa_error * exceptions * communication_failure = 1 * others = 2.

TP_DELETE_PREFERENCES CALL FUNCTION 'TP_DELETE_PREFERENCES' EXPORTING PROVIDER = pwa_connect_param-gds CONNECT_PARAM = PWA_CONNECT_PARAM CHANGING PERNR_UPD = pwa_pernr_upd .

FITP_RFC_UPDATE_PREFERENCES * call function 'FITP_RFC_UPDATE_PREFERENCES' destination bc_dest * exporting * ota_controlparameter = wa_control_param * ota_customer = pwa_ota_data-wa_customer * ota_address = pwa_ota_data-wa_address * ota_directbill = pwa_ota_data-wa_directbill * ota_airlinepref = pwa_ota_data-wa_airlinepref * ota_hotelpref = pwa_ota_data-wa_hotelpref * ota_vehiclerentalpref = pwa_ota_data-wa_vehiclerentalpref * ota_affiliations = pwa_ota_data-wa_affiliations * ota_commonpref = pwa_ota_data-wa_commonpref * importing * ota_warningerror = wa_error * tables * ota_telephoneinfo_tab = pwa_ota_data-t_telephoneinfo * ota_email_tab = pwa_ota_data-t_email * ota_costcenter_tab = pwa_ota_data-t_costcenter * ota_creditcard_tab = pwa_ota_data-t_creditcard * ota_custloyalty_tab = pwa_ota_data-t_custloyalty * ota_airlineloyaltyrph_tab = pwa_ota_data-t_airlineloyaltyrph * ota_airssr_tab = pwa_ota_data-t_airssr * ota_hotelloyaltyrph_tab = pwa_ota_data-t_hotelloyaltyrph * ota_hotelcompanycode_tab = pwa_ota_data-t_hotelcompanycode * ota_vehicleloyaltyrph_tab = pwa_ota_data-t_vehicleloyaltyrph * ota_vehiclecompanycd_tab = pwa_ota_data-t_vehiclecompanycode * ota_othersrvcpref_tab = pwa_ota_data-t_otherservcpref * exceptions * communication_failure = 1 * others = 2.

TP_UPDATE_PREFERENCES CALL FUNCTION 'TP_UPDATE_PREFERENCES' EXPORTING PROVIDER = pwa_connect_param-gds CONNECT_PARAM = PWA_CONNECT_PARAM ota_customer = pwa_ota_data-wa_customer ota_address = pwa_ota_data-wa_address ota_directbill = pwa_ota_data-wa_directbill ota_airlinepref = pwa_ota_data-wa_airlinepref ota_hotelpref = pwa_ota_data-wa_hotelpref OTA_VEHICLERENTALPREF = pwa_ota_data-wa_vehiclerentalpref OTA_COMMONPREF = pwa_ota_data-wa_commonpref tables ota_telephoneinfo_tab = pwa_ota_data-t_telephoneinfo ota_email_tab = pwa_ota_data-t_email ota_costcenter_tab = pwa_ota_data-t_costcenter ota_creditcard_tab = pwa_ota_data-t_creditcard ota_custloyalty_tab = pwa_ota_data-t_custloyalty ota_airlineloyaltyrph_tab = pwa_ota_data-t_airlineloyaltyrph ota_airssr_tab = pwa_ota_data-t_airssr ota_hotelloyaltyrph_tab = pwa_ota_data-t_hotelloyaltyrph ota_hotelcompanycode_tab = pwa_ota_data-t_hotelcompanycode ota_vehicleloyaltyrph_tab = pwa_ota_data-t_vehicleloyaltyrph OTA_VEHICLECOMPANYCD_TAB = pwa_ota_data-t_vehiclecompanycode OTA_OTHERSRVCPREF_TAB = pwa_ota_data-t_otherservcpref CHANGING PERNR_UPD = pwa_pernr_upd OTA_AFFILIATIONS = pwa_ota_data-wa_affiliations .

BAL_LOG_MSG_CUMULATE call function 'BAL_LOG_MSG_CUMULATE' exporting * I_LOG_HANDLE = i_s_msg = l_s_msg * I_COMPARE_ATTRIBUTES = ' ' * I_COMPARE_CONTEXT = ' ' * I_COMPARE_PARAMETERS = ' ' * IMPORTING * E_S_MSG_HANDLE = * E_MSG_WAS_LOGGED = * E_MSG_WAS_DISPLAYED = * EXCEPTIONS * LOG_NOT_FOUND = 1 * MSG_INCONSISTENT = 2 * LOG_IS_FULL = 3 * OTHERS = 4 .

REUSE_ALV_FIELDCATALOG_MERGE call function 'REUSE_ALV_FIELDCATALOG_MERGE' exporting i_program_name = 'RFTP_SYNCHRO_PREF' i_internal_tabname = 'T_PERNR_UPD_ALV' * i_structure_name = 'FTPS_PNR_UPDATE' * I_CLIENT_NEVER_DISPLAY = 'X' i_inclname = 'RFTP_SYNCHRO_PREF' * I_BYPASSING_BUFFER = * I_BUFFER_ACTIVE = changing ct_fieldcat = t_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 = ' ' * I_CALLBACK_PF_STATUS_SET = ' ' * I_CALLBACK_USER_COMMAND = ' ' * I_CALLBACK_TOP_OF_PAGE = ' ' * I_CALLBACK_HTML_TOP_OF_PAGE = ' ' * I_CALLBACK_HTML_END_OF_LIST = ' ' * i_structure_name = 'FTPS_PNR_UPDATE' * I_BACKGROUND_ID = ' ' i_grid_title = text-014 * I_GRID_SETTINGS = is_layout = wa_layout_alv it_fieldcat = t_fieldcat * IT_EXCLUDING = it_special_groups = t_group_alv * IT_SORT = * IT_FILTER = * IS_SEL_HIDE = * I_DEFAULT = 'X' * I_SAVE = ' ' * IS_VARIANT = * IT_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 = * IMPORTING * E_EXIT_CAUSED_BY_CALLER = * ES_EXIT_CAUSED_BY_USER = tables t_outtab = t_pernr_upd_alv * EXCEPTIONS * PROGRAM_ERROR = 1 * OTHERS = 2 .

SAPGUI_PROGRESS_INDICATOR call function 'SAPGUI_PROGRESS_INDICATOR' exporting percentage = i_processed * TEXT = ' ' .

BAL_DSP_LOG_PRINT * call function 'BAL_DSP_LOG_PRINT' * exporting ** I_S_PRINT_OPTIONS = * i_s_list_append = 'X' ** I_S_DISPLAY_PROFILE = * i_t_log_handle = p_t_log_handle ** I_T_MSG_HANDLE = ** I_S_LOG_FILTER = ** I_S_MSG_FILTER = ** I_T_LOG_CONTEXT_FILTER = ** I_T_MSG_CONTEXT_FILTER = ** EXCEPTIONS ** PROFILE_INCONSISTENT = 1 ** INTERNAL_ERROR = 2 ** NO_DATA_AVAILABLE = 3 ** NO_AUTHORITY = 4 ** OTHERS = 5 * .

TP_CLOSE_SESSION_PREFERENCES CALL FUNCTION 'TP_CLOSE_SESSION_PREFERENCES' EXPORTING PROVIDER = pwa_connect_param-gds CONNECT_PARAM = PWA_CONNECT_PARAM .



Contribute (Add Comments)

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 P_SYNCHRO_PREF_F01 or its description.