SAP Reports / Programs | Basis Components | ABAP Workbench, Java IDE and Infrastructure(BC-DWB) SAP BC

SAPBC_REPLICATE_FLIGHTS SAP ABAP Report - Replicate Flight Data in Travel Agency Systems (in Distributed Case)







SAPBC_REPLICATE_FLIGHTS is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Replicating Flight Data in Travel Agency Systems (in the distributed example) INCLUDE DOC_REPORT_DEMO OBJECT DOKU ID TX This report enables the system to replicate changed flights (entries in SFLIGHT) in a distributed environment (ALE) to the other systems...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

If you would like to execute this report or see the full code listing simply enter SAPBC_REPLICATE_FLIGHTS 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 SAPBC_REPLICATE_FLIGHTS. "Basic submit
SUBMIT SAPBC_REPLICATE_FLIGHTS AND RETURN. "Return to original report after report execution complete
SUBMIT SAPBC_REPLICATE_FLIGHTS VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: AIRLINE = Airline
Selection Text: CONNECT = Flight Number
Selection Text: FLDATE = Departure Date
Title: Replicate Flight Data in Travel Agency Systems (in Distributed Case)
Text Symbol: 002 = Use this report in a distributed environment only (ALE).
Text Symbol: 003 = You must read the documentation.
Text Symbol: 004 = Select Flights to Be Replicated


INCLUDES used within this REPORT SAPBC_REPLICATE_FLIGHTS

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:

ALE_ASYNC_BAPI_GET_RECEIVER call function 'ALE_ASYNC_BAPI_GET_RECEIVER' EXPORTING OBJECT = 'SFLIGHT' METHOD = 'SaveReplica' TABLES * RECEIVER_INPUT = RECEIVERS = lt_ale_rec_as FILTEROBJECT_VALUES = lt_filter EXCEPTIONS ERROR_IN_FILTEROBJECTS = 1 ERROR_IN_ALE_CUSTOMIZING = 2 OTHERS = 3.

ALE_FLIGHT_SAVEREPLICA call function 'ALE_FLIGHT_SAVEREPLICA' EXPORTING FLIGHTDATA = lv_flight_data * TESTRUN = ' ' OBJ_TYPE = 'SFLIGHT' SERIAL_ID = '0' TABLES * EXTENSIONIN = RECEIVERS = lt_ale_rec_as * COMMUNICATION_DOCUMENTS = * APPLICATION_OBJECTS = EXCEPTIONS ERROR_CREATING_IDOCS = 1 OTHERS = 2.



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