report yrtest0012.
data: begin of itab_range_srvnr occurs 1,
sign(1),
option(2),
low like mara-matnr,
high like mara-matnr,
end of itab_range_srvnr.
*-----------------------------------------------------------------*
end-of-selection.
*-----------------------------------------------------------------*
perform complex_srvnr_selection tables itab_range_srvnr
using 'Material'
'MAT1'.
*&----------------------------------------------------------------*
*& Form COMPLEX_SRVNR_SELECTION
*&-----------------------------------------------------------------*
* text
*------------------------------------------------------------------*
form complex_srvnr_selection tables p_range_tab
using p_title
p_help_field.
call function 'COMPLEX_SELECTIONS_DIALOG'
exporting
title = p_title
search_help = p_help_field
tables
range = p_range_tab
exceptions
no_range_tab = 1
cancelled = 2
internal_error = 3
others = 4.
endform. " COMPLEX_SRVNR_SELECTION
'SAP > ABAP 개발' 카테고리의 다른 글
TEST - 생산오더 실적처리 - BAPI_PRODORDCONF_CREATE_TT (2) | 2010.06.28 |
---|---|
How to Use ALV Form Elements for Events (1) | 2010.06.26 |
SAP ABAP Programming.pdf (2) | 2010.06.26 |
BAPI for confirming a production order ( CO11N ) - 생산실적 처리 (1) | 2010.06.25 |
Selecting Lines (1) | 2010.06.25 |