
report rsaqdvp_template.
*
*---------------------------------------------------------------------*
* declarations
* (insert your declarations in this section)
*---------------------------------------------------------------------*
data: rihaufk_list type rihaufk_list,
it_data type standard table of rihaufk_list.
field-symbols: <struc> type rihaufk_list.
tables: aufk.
data sel_tab type table of rihaufk_list with header line.
*-------------------------------------------------------------------*
* selection screen statements
*-------------------------------------------------------------------*
* (define your selection-screen here)
*select-options s_aufnr for aufk-aufnr.
* !! the following comment MUST NOT BE CHANGED !!
*<QUERY_HEAD>
*-------------------------------------------------------------------*
* read data into IT_DATA
*-------------------------------------------------------------------*
* (select your data here into internal table IT_DATA)
submit riaufk20 "with aufnr in s_aufnr
with dy_selm = 'D'
via selection-screen and return.
import sel_tab from memory id 'RIAUFK20'.
free memory id 'RIAUFK20'.
it_data[] = sel_tab[].
*------------------------------------------------------------*
* output of the data
* (this section can be left unchanged)
*------------------------------------------------------------*
loop at it_data assigning <struc>.
move-corresponding <struc> to rihaufk_list .
* !! the following comment MUST NOT BE CHANGED !!
*<QUERY_BODY>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
4 | |
4 | |
3 | |
3 | |
2 | |
2 | |
2 | |
2 | |
2 | |
2 |