简体   繁体   中英

how can I get values from the table

I concatenated values of select-options and a parameter. The condition of that query is based on the concatenated data. I can get all the data i need.

here's my code:

TABLES: bkpf.

SELECT-OPTIONS: s_belnr FOR bkpf-belnr NO-EXTENSION OBLIGATORY .
PARAMETERS: p_ghjahr LIKE bkpf-gjahr DEFAULT sy-datum(4) OBLIGATORY. "Fiscal

DATA: it_con TYPE TABLE OF BKPF,
      ls_con TYPE bkpf-AWKEY,
      lv_belnr   LIKE bkpf-belnr,
      IT TYPE STANDARD TABLE OF BKPF,
      WA TYPE BKPF.

IF s_belnr-high IS INITIAL.
  CONCATENATE s_belnr-low p_ghjahr INTO ls_con.
  APPEND ls_con TO it_con.
ELSE.  
  lv_belnr = s_belnr-low.
  WHILE lv_belnr LE s_belnr-high.
    CONCATENATE lv_belnr p_ghjahr INTO ls_con.
    APPEND ls_con TO it_con.
    ADD 1 TO lv_belnr.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        input  = lv_belnr
      IMPORTING
        output = lv_belnr.
  ENDWHILE.
ENDIF.
LOOP AT it_concats INTO ls_concats.
  SELECT BELNR
    FROM BKPF 
    INTO CORRESPONDING FIELDS OF TABLE IT 
    FOR ALL ENTRIES IN IT_CONCATS 
    WHERE AWKEY EQ IT_CONCATS-AWKEY.
ENDLOOP.

LOOP AT IT INTO WA.
  WRITE: / WA-BELNR.
ENDLOOP.

Ignoring (because your question is too vague), the type of document you are looking for, I'll suggest something like (WARNING, I do NOT provide full answers, just code snipets who you must tune to make it work; if someone wants to improve my answer, feel free to do it, and I'll gladly will vote the new one as the good one... if it is)

data: awkey_range type range of bkpf-awkey,
      awkey_line like  line of awkey_range.

* Fill the awkey_range with something like
awkey_line-sign = 'I'.
awkey_line-option = 'EQ'.
* loop at bkpf_table into bkpf_line.
*   concatenate bkpf_line-belnr bkpf_line-ghjahr into awkey_line-low.
*   append awkey_line to awkey_range.
* endloop.

* And then a single SQL
select *
  from bkpf
  into table IT "Ouch, what a name
  where awkey in awkey_range.

And it should work, if I'm not missing something.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM