mirror of
https://github.com/abap2xlsx/abap2xlsx.git
synced 2025-05-05 11:06:15 +08:00
Merge pull request #597 from gregorwolf/master
Small additions do demo, check for break-points in abaplint
This commit is contained in:
commit
e1f8d5b268
|
@ -69,7 +69,7 @@
|
|||
"enabled": false
|
||||
},
|
||||
"breakpoint": {
|
||||
"enabled": false
|
||||
"enabled": true
|
||||
},
|
||||
"nesting": {
|
||||
"enabled": false,
|
||||
|
|
|
@ -2307,7 +2307,8 @@ METHOD load_worksheet.
|
|||
ls_datavalidation TYPE lty_datavalidation,
|
||||
lo_data_validation TYPE REF TO zcl_excel_data_validation,
|
||||
lv_datavalidation_range TYPE string,
|
||||
lt_datavalidation_range TYPE TABLE OF string.
|
||||
lt_datavalidation_range TYPE TABLE OF string,
|
||||
ex TYPE REF TO cx_root.
|
||||
|
||||
*--------------------------------------------------------------------*
|
||||
* §2 We need to read the the file "\\_rels\.rels" because it tells
|
||||
|
@ -2504,8 +2505,10 @@ METHOD load_worksheet.
|
|||
ls_ref_formula-ref = ls_formula_attributes-ref.
|
||||
ls_ref_formula-formula = lv_cell_formula.
|
||||
INSERT ls_ref_formula INTO TABLE me->mt_ref_formulae.
|
||||
CATCH cx_root.
|
||||
BREAK-POINT.
|
||||
CATCH cx_root INTO ex.
|
||||
RAISE EXCEPTION TYPE zcx_excel
|
||||
EXPORTING
|
||||
previous = ex.
|
||||
ENDTRY.
|
||||
ENDIF.
|
||||
*--------------------------------------------------------------------*
|
||||
|
|
|
@ -79,6 +79,7 @@ START-OF-SELECTION.
|
|||
SUBMIT zdemo_excel41 WITH rb_down = abap_true WITH rb_show = abap_false WITH p_path = p_path AND RETURN. "#EC CI_SUBMIT abap2xlsx Demo: Inheritance
|
||||
|
||||
SUBMIT zdemo_excel_comments WITH rb_down = abap_true WITH rb_show = abap_false WITH p_path = p_path AND RETURN. "#EC CI_SUBMIT abap2xlsx Demo: Comments
|
||||
SUBMIT ztest_excel_image_header WITH rb_down = abap_true WITH rb_show = abap_false WITH p_path = p_path AND RETURN. "#EC CI_SUBMIT abap2xlsx Demo: Image in Header and Footer
|
||||
"
|
||||
" Reader/Writer Demo must always run at the end
|
||||
" to make sure all documents where created
|
||||
|
|
|
@ -11,6 +11,12 @@
|
|||
<FIXPT>X</FIXPT>
|
||||
<UCCHECK>X</UCCHECK>
|
||||
</PROGDIR>
|
||||
<TPOOL>
|
||||
<item>
|
||||
<ID>R</ID>
|
||||
<LENGTH>34</LENGTH>
|
||||
</item>
|
||||
</TPOOL>
|
||||
<I18N_TPOOL>
|
||||
<item>
|
||||
<LANGUAGE>D</LANGUAGE>
|
||||
|
|
Loading…
Reference in New Issue
Block a user