This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LY_MOBIWEAVERF01 | |
*** 15,21 **** | |
data: | |
l_offset type i, | |
+ l_value type string, | |
l_title type string, | |
ls_xml type char255. | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*&---------------------------------------------------------------------* | |
*& Report ZJSON_DOCUMENT_TEST | |
*& | |
*&---------------------------------------------------------------------* | |
*& Test cases for the ZJSON class. To run the test cases use the | |
*& ABAP unit test framework (menu program > test > unit test) | |
*&---------------------------------------------------------------------* | |
report zjson_document_test. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data: number_re type ref to cl_abap_regex, | |
number_matcher type ref to cl_abap_matcher. | |
create object number_re | |
exporting | |
pattern = '(-?(?:0|[1-9]\d*))(\.\d+)?([eE][-+]?\d+)?'. | |
... | |
elseif <data_line>-value(1) cn '{['. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*&---------------------------------------------------------------------* | |
*& Report z_zake_fs_from_package | |
*&---------------------------------------------------------------------* | |
* Uses ZAKE to export to the filesystem the contents of a package as | |
* slinkees and to upload from the filesystem the objects into SAP. | |
*----------------------------------------------------------------------* | |
report z_zake_fs_from_package. | |
* zake subclass just for using the download/upload to filesystem | |
class lcl_zake_fs definition inheriting from zake. |