-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathRead
More file actions
13 lines (11 loc) · 493 Bytes
/
Copy pathRead
File metadata and controls
13 lines (11 loc) · 493 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
DATA: lt_keys TYPE /iwbep/t_mgw_tech_pairs,
ls_key TYPE LINE OF /iwbep/t_mgw_tech_pairs.
"Keys to be read
lt_keys = io_tech_request_context->get_keys( ).
READ TABLE lt_keys INTO ls_key WITH KEY name = 'DOCUMENTNO'.
IF sy-subrc EQ 0.
lv_doc_number = ls_key-value.
ENDIF.
"Keys with COnversion routine applied
DATA: ls_finding TYPE <entity_type>.
io_tech_request_context->get_converted_keys( IMPORTING es_key_values = ls_finding ).