mirror of
https://github.com/abap2xlsx/abap2xlsx.git
synced 2025-05-05 13:46:17 +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
|
"enabled": false
|
||||||
},
|
},
|
||||||
"breakpoint": {
|
"breakpoint": {
|
||||||
"enabled": false
|
"enabled": true
|
||||||
},
|
},
|
||||||
"nesting": {
|
"nesting": {
|
||||||
"enabled": false,
|
"enabled": false,
|
||||||
|
|
|
@ -2307,7 +2307,8 @@ METHOD load_worksheet.
|
||||||
ls_datavalidation TYPE lty_datavalidation,
|
ls_datavalidation TYPE lty_datavalidation,
|
||||||
lo_data_validation TYPE REF TO zcl_excel_data_validation,
|
lo_data_validation TYPE REF TO zcl_excel_data_validation,
|
||||||
lv_datavalidation_range TYPE string,
|
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
|
* §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-ref = ls_formula_attributes-ref.
|
||||||
ls_ref_formula-formula = lv_cell_formula.
|
ls_ref_formula-formula = lv_cell_formula.
|
||||||
INSERT ls_ref_formula INTO TABLE me->mt_ref_formulae.
|
INSERT ls_ref_formula INTO TABLE me->mt_ref_formulae.
|
||||||
CATCH cx_root.
|
CATCH cx_root INTO ex.
|
||||||
BREAK-POINT.
|
RAISE EXCEPTION TYPE zcx_excel
|
||||||
|
EXPORTING
|
||||||
|
previous = ex.
|
||||||
ENDTRY.
|
ENDTRY.
|
||||||
ENDIF.
|
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_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 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
|
" Reader/Writer Demo must always run at the end
|
||||||
" to make sure all documents where created
|
" to make sure all documents where created
|
||||||
|
|
|
@ -11,6 +11,12 @@
|
||||||
<FIXPT>X</FIXPT>
|
<FIXPT>X</FIXPT>
|
||||||
<UCCHECK>X</UCCHECK>
|
<UCCHECK>X</UCCHECK>
|
||||||
</PROGDIR>
|
</PROGDIR>
|
||||||
|
<TPOOL>
|
||||||
|
<item>
|
||||||
|
<ID>R</ID>
|
||||||
|
<LENGTH>34</LENGTH>
|
||||||
|
</item>
|
||||||
|
</TPOOL>
|
||||||
<I18N_TPOOL>
|
<I18N_TPOOL>
|
||||||
<item>
|
<item>
|
||||||
<LANGUAGE>D</LANGUAGE>
|
<LANGUAGE>D</LANGUAGE>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user