RODPS_REPL_TEST_ODP_SEQUENCE is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name RODPS_REPL_TEST_ODP_SEQUENCE into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
RODPS_REPL_TEST
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'RODPS_REPL_TEST_ODP_SEQUENCE' "
EXPORTING
it_sequence = " rodps_repl_test_t_sequence
* ir_callback = " if_rodps_repl_test_sequence
* i_subscriber_type = " odq_subscriber_type
* i_context = " rodps_context
* i_search_pattern = " rodps_odpname
* i_langu = " langu
* i_gradual = " odq_boolean
* i_father_node = " rodps_repl_node
* i_odpname = " rodps_odpname
* it_langu = " rodps_repl_t_langu
* i_subscriber_name = " odq_subscriber_id
* i_subscriber_process = " rodps_repl_process
* i_subscriber_run = " rodps_repl_run
* i_extraction_mode = " rodps_repl_mode
* i_maxpackagesize = " rodps_repl_size
* i_recovery_pointer = " rodps_repl_pointer
* i_explicit_close = " odq_boolean
* i_delta_extension_no_data = " odq_boolean
* i_realtime = " odq_boolean
* it_select = " rodps_repl_t_selection
* it_projection = " rodps_repl_t_projection
* i_maximum_rows = " i
* i_encoding = " abap_encod
* it_aggregation = " rodps_repl_t_aggregation
* it_supported_xml_formats = " rodps_repl_t_xml_format
* i_redo = " odq_boolean
* i_pointer = " rodps_repl_pointer
* i_package = " rodps_repl_extraction_package
* i_datefrom = " tzntstmps
IMPORTING
et_return = " bapirettab
. " RODPS_REPL_TEST_ODP_SEQUENCE
The ABAP code below is a full code listing to execute function module RODPS_REPL_TEST_ODP_SEQUENCE including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| ld_et_return | TYPE BAPIRETTAB . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_et_return | TYPE BAPIRETTAB , |
| ld_it_sequence | TYPE RODPS_REPL_TEST_T_SEQUENCE , |
| ld_ir_callback | TYPE IF_RODPS_REPL_TEST_SEQUENCE , |
| ld_i_subscriber_type | TYPE ODQ_SUBSCRIBER_TYPE , |
| ld_i_context | TYPE RODPS_CONTEXT , |
| ld_i_search_pattern | TYPE RODPS_ODPNAME , |
| ld_i_langu | TYPE LANGU , |
| ld_i_gradual | TYPE ODQ_BOOLEAN , |
| ld_i_father_node | TYPE RODPS_REPL_NODE , |
| ld_i_odpname | TYPE RODPS_ODPNAME , |
| ld_it_langu | TYPE RODPS_REPL_T_LANGU , |
| ld_i_subscriber_name | TYPE ODQ_SUBSCRIBER_ID , |
| ld_i_subscriber_process | TYPE RODPS_REPL_PROCESS , |
| ld_i_subscriber_run | TYPE RODPS_REPL_RUN , |
| ld_i_extraction_mode | TYPE RODPS_REPL_MODE , |
| ld_i_maxpackagesize | TYPE RODPS_REPL_SIZE , |
| ld_i_recovery_pointer | TYPE RODPS_REPL_POINTER , |
| ld_i_explicit_close | TYPE ODQ_BOOLEAN , |
| ld_i_delta_extension_no_data | TYPE ODQ_BOOLEAN , |
| ld_i_realtime | TYPE ODQ_BOOLEAN , |
| ld_it_select | TYPE RODPS_REPL_T_SELECTION , |
| ld_it_projection | TYPE RODPS_REPL_T_PROJECTION , |
| ld_i_maximum_rows | TYPE I , |
| ld_i_encoding | TYPE ABAP_ENCOD , |
| ld_it_aggregation | TYPE RODPS_REPL_T_AGGREGATION , |
| ld_it_supported_xml_formats | TYPE RODPS_REPL_T_XML_FORMAT , |
| ld_i_redo | TYPE ODQ_BOOLEAN , |
| ld_i_pointer | TYPE RODPS_REPL_POINTER , |
| ld_i_package | TYPE RODPS_REPL_EXTRACTION_PACKAGE , |
| ld_i_datefrom | TYPE TZNTSTMPS . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name RODPS_REPL_TEST_ODP_SEQUENCE or its description.