Quantcast
Channel: SCN : Blog List - All Communities
Viewing all articles
Browse latest Browse all 2548

Select-options to RFC_READ_TABLE options

$
0
0

Hello.

 

This is not going to be rocket-science, but after searching SCN for some time not finding the answer/code I needed, but realizing that many people have the same/similar requirement to mine, I decided to share this code via this blog.

 

Summary:

* you have a report with select-options

* you need to collect data from remote systems and despite all the warnings that the RFC_READ_TABLE function module should not be used (although it is used in zillions of SAP standard programs as well as customer programs so it is zero chance SAP would ever change or remove this function module, I would say), you decided to go for RFC_READ_TABLE.

* you need to transfer the complex selection provided by the user to the remote system because downloading all the data to the local system and deleting the data based on the selection locally is just so inefficient and slow (try transferring huge tables via RFC once and you will understand why this blog...)

* ...which means you need to transfer the select-options to the remote system, because the selection is much smaller and faster to transfer than all the data in the table you need to download

 

Here is the code you need...

* first comes the part of the WHERE clause that you can easily specify manually/hardcode in the source code, because it never changes

* then comes the conversion of one select-option (so for more select-options you need to do this several times)

* ...and finally comes the code that puts the two together

 

cheers Otto

 

 DATA lt_options TYPE tt_option.   DATA lt_selopt TYPE TABLE OF ddshselopt.   DATA ls_selopt LIKE LINE OF lt_selopt.   DATA ls_option LIKE LINE OF et_options.   DATA lv_where TYPE string.   FIELD-SYMBOLS <so_fld> LIKE LINE OF so_fld.
 CLEAR ls_option.   CONCATENATE 'FROM_DAT <= ''' sy-datum ''' AND TO_DAT >= ''' sy-datum '''' INTO ls_option.   APPEND ls_option TO et_options.
CLEAR: lt_selopt[].   LOOP AT so_fld ASSIGNING <so_fld>.     CLEAR: ls_selopt.     MOVE-CORRESPONDING <so_fld> TO ls_selopt.     ls_selopt-shlpfield = 'FIELD'.     APPEND ls_selopt TO lt_selopt.   ENDLOOP.
CLEAR lv_where.   CALL FUNCTION 'F4_CONV_SELOPT_TO_WHERECLAUSE'     IMPORTING       where_clause = lv_where     TABLES       selopt_tab   = lt_selopt.   CLEAR: lt_options[].   PERFORM convert_where_to_rfc_options USING lv_where CHANGING lt_options.   IF lt_options IS NOT INITIAL.     APPEND 'AND' TO et_options.     APPEND LINES OF lt_options TO et_options.     CLEAR lt_options[].   ENDIF.
FORM convert_where_to_rfc_options USING iv_where TYPE rsstring CHANGING et_options TYPE tt_option.   DATA lv_where LIKE iv_where.   DATA lv_bit TYPE so_text.   DATA lv_len TYPE int4.   IF iv_where IS INITIAL.     RETURN.   ENDIF.   CLEAR lv_where.   lv_where = iv_where.   DO.     IF lv_where IS INITIAL.       EXIT.     ENDIF.     CLEAR lv_len.     lv_len = strlen( lv_where ).     IF lv_len <= 72.       APPEND lv_where TO et_options.       EXIT.     ELSE.       lv_bit = lv_where.       lv_len = 71.       DO 71 TIMES.         IF lv_bit+lv_len(1) = ' '.           EXIT.         ENDIF.         lv_len = lv_len - 1.       ENDDO.
*** Index of the last space is in LV_LEN now.       APPEND lv_bit(lv_len) TO et_options.       lv_where = lv_where+lv_len.     ENDIF.   ENDDO.
ENDFORM.

Viewing all articles
Browse latest Browse all 2548

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>