SAP Function Modules

RODPS_REPL_TEST_ODP_SEQUENCE SAP Function module







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
Normal function module settings


Pattern for FM RODPS_REPL_TEST_ODP_SEQUENCE - RODPS REPL TEST ODP SEQUENCE





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

ABAP code example for Function Module 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).

DATA:
ld_et_return  TYPE BAPIRETTAB .

DATA(ld_it_sequence) = 'Check type of data required'.
DATA(ld_ir_callback) = 'Check type of data required'.
DATA(ld_i_subscriber_type) = 'Check type of data required'.
DATA(ld_i_context) = 'Check type of data required'.
DATA(ld_i_search_pattern) = 'Check type of data required'.
DATA(ld_i_langu) = 'Check type of data required'.
DATA(ld_i_gradual) = 'Check type of data required'.
DATA(ld_i_father_node) = 'Check type of data required'.
DATA(ld_i_odpname) = 'Check type of data required'.
DATA(ld_it_langu) = 'Check type of data required'.
DATA(ld_i_subscriber_name) = 'Check type of data required'.
DATA(ld_i_subscriber_process) = 'Check type of data required'.
DATA(ld_i_subscriber_run) = 'Check type of data required'.
DATA(ld_i_extraction_mode) = 'Check type of data required'.
DATA(ld_i_maxpackagesize) = 'Check type of data required'.
DATA(ld_i_recovery_pointer) = 'Check type of data required'.
DATA(ld_i_explicit_close) = 'Check type of data required'.
DATA(ld_i_delta_extension_no_data) = 'Check type of data required'.
DATA(ld_i_realtime) = 'Check type of data required'.
DATA(ld_it_select) = 'Check type of data required'.
DATA(ld_it_projection) = 'Check type of data required'.
DATA(ld_i_maximum_rows) = 'Check type of data required'.
DATA(ld_i_encoding) = 'Check type of data required'.
DATA(ld_it_aggregation) = 'Check type of data required'.
DATA(ld_it_supported_xml_formats) = 'Check type of data required'.
DATA(ld_i_redo) = 'Check type of data required'.
DATA(ld_i_pointer) = 'Check type of data required'.
DATA(ld_i_package) = 'Check type of data required'.
DATA(ld_i_datefrom) = 'Check type of data required'. . CALL FUNCTION 'RODPS_REPL_TEST_ODP_SEQUENCE' EXPORTING it_sequence = ld_it_sequence * ir_callback = ld_ir_callback * i_subscriber_type = ld_i_subscriber_type * i_context = ld_i_context * i_search_pattern = ld_i_search_pattern * i_langu = ld_i_langu * i_gradual = ld_i_gradual * i_father_node = ld_i_father_node * i_odpname = ld_i_odpname * it_langu = ld_it_langu * i_subscriber_name = ld_i_subscriber_name * i_subscriber_process = ld_i_subscriber_process * i_subscriber_run = ld_i_subscriber_run * i_extraction_mode = ld_i_extraction_mode * i_maxpackagesize = ld_i_maxpackagesize * i_recovery_pointer = ld_i_recovery_pointer * i_explicit_close = ld_i_explicit_close * i_delta_extension_no_data = ld_i_delta_extension_no_data * i_realtime = ld_i_realtime * it_select = ld_it_select * it_projection = ld_it_projection * i_maximum_rows = ld_i_maximum_rows * i_encoding = ld_i_encoding * it_aggregation = ld_it_aggregation * it_supported_xml_formats = ld_it_supported_xml_formats * i_redo = ld_i_redo * i_pointer = ld_i_pointer * i_package = ld_i_package * i_datefrom = ld_i_datefrom IMPORTING et_return = ld_et_return . " RODPS_REPL_TEST_ODP_SEQUENCE
IF SY-SUBRC EQ 0. "All OK ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

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 .

ld_it_sequence = 'Check type of data required'.
ld_ir_callback = 'Check type of data required'.
ld_i_subscriber_type = 'Check type of data required'.
ld_i_context = 'Check type of data required'.
ld_i_search_pattern = 'Check type of data required'.
ld_i_langu = 'Check type of data required'.
ld_i_gradual = 'Check type of data required'.
ld_i_father_node = 'Check type of data required'.
ld_i_odpname = 'Check type of data required'.
ld_it_langu = 'Check type of data required'.
ld_i_subscriber_name = 'Check type of data required'.
ld_i_subscriber_process = 'Check type of data required'.
ld_i_subscriber_run = 'Check type of data required'.
ld_i_extraction_mode = 'Check type of data required'.
ld_i_maxpackagesize = 'Check type of data required'.
ld_i_recovery_pointer = 'Check type of data required'.
ld_i_explicit_close = 'Check type of data required'.
ld_i_delta_extension_no_data = 'Check type of data required'.
ld_i_realtime = 'Check type of data required'.
ld_it_select = 'Check type of data required'.
ld_it_projection = 'Check type of data required'.
ld_i_maximum_rows = 'Check type of data required'.
ld_i_encoding = 'Check type of data required'.
ld_it_aggregation = 'Check type of data required'.
ld_it_supported_xml_formats = 'Check type of data required'.
ld_i_redo = 'Check type of data required'.
ld_i_pointer = 'Check type of data required'.
ld_i_package = 'Check type of data required'.
ld_i_datefrom = 'Check type of data required'.

Contribute (Add Comments)

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.