mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-30 04:36:18 +08:00
t_arg fix when receiving non string value (#469)
This commit is contained in:
parent
904dc3623c
commit
8575cb66a9
|
@ -143,11 +143,13 @@ CLASS z2ui5_cl_fw_handler DEFINITION
|
||||||
RETURNING
|
RETURNING
|
||||||
VALUE(r_result) TYPE REF TO z2ui5_cl_fw_handler.
|
VALUE(r_result) TYPE REF TO z2ui5_cl_fw_handler.
|
||||||
|
|
||||||
|
protected section.
|
||||||
|
private section.
|
||||||
ENDCLASS.
|
ENDCLASS.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
CLASS z2ui5_cl_fw_handler IMPLEMENTATION.
|
CLASS Z2UI5_CL_FW_HANDLER IMPLEMENTATION.
|
||||||
|
|
||||||
|
|
||||||
METHOD app_set_next.
|
METHOD app_set_next.
|
||||||
|
@ -336,7 +338,7 @@ CLASS z2ui5_cl_fw_handler IMPLEMENTATION.
|
||||||
IF sy-subrc <> 0.
|
IF sy-subrc <> 0.
|
||||||
CONTINUE.
|
CONTINUE.
|
||||||
ENDIF.
|
ENDIF.
|
||||||
INSERT <val> INTO TABLE result->ms_actual-t_event_arg.
|
INSERT CONV string( <val> ) INTO TABLE result->ms_actual-t_event_arg.
|
||||||
ENDIF.
|
ENDIF.
|
||||||
|
|
||||||
ENDLOOP.
|
ENDLOOP.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user