Skip to content

Commit 7657d35

Browse files
authored
Merge pull request #5 from zenrosadira/zenrosadira-patch-1
Update README.md
2 parents 1571d23 + 0104add commit 7657d35

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
## Requirement
66
:cloud: ABAP for Cloud Development edition
77

8+
Looking for *On-Premise* edition? Switch to *onprem-main* branch.
9+
810
## Quick Start
911

1012
:office_worker: **I need to read a CSV, how can I do it?**
@@ -87,14 +89,14 @@ csv_reader->detranspose( EXPORTING i_transposed = csv_tab_t IMPORTING e_table =
8789
- ``csv_man->quotechar( `"` ).`` *to quote fields, default is none.
8890
- ``csv_man->end_of_line( `|` ).`` *line-terminator char, default is Carriage Return and Line Feed* `%_CR_LF` *.*
8991
- ``csv_man->escapechar( `/` ).`` *to escape special characters, both in read and write mode.*
90-
- ``csv_man->doublequote( abap_true ).`` *to escape a quotechar character with a quotechar character.*
92+
- ``csv_man->doublequote( ).`` *to escape a quotechar character with a quotechar character.*
9193
- `csv_man->quoting( ztbox_cl_csvman=>c_quote_minimal ).` *to restrict quoting application, with these options:*
9294
- `zcl_tbox_csv_writer=>c_quote_all` *to apply quotechar character to all fields (this is default behaviour if a quotechar is set);*
9395
- `zcl_tbox_csv_writer=>c_quote_minimal` *to apply quotechar character only to fields containing special characters;*
9496
- `zcl_tbox_csv_writer=>c_quote_nonnumeric` *to apply quotechar character only to non-numeric fields;*
9597
- `zcl_tbox_csv_writer=>c_quote_none` *to never quote fields (this is the default behaviour if no quotechar is set).*
96-
- `csv_man->header( abap_true ).` *to write/expect an header line in write/read mode. Default is* `abap_true` *.*
97-
- `csv_man->header_desc( abap_true ).` *to use field name as header text field. You can column text by calling* `->label( )` *method on fields level, see below for details.*
98+
- `csv_man->header( ).` *to write/expect an header line in write/read mode. Default is* `abap_true` *.*
99+
- `csv_man->header_desc( ).` *to use field name as header text field. You can column text by calling* `->label( )` *method on fields level, see below for details.*
98100

99101
## Output Format
100102
:office_worker: **Nice, but I want also control fields output format, especially for date/time/numeric fields.**

0 commit comments

Comments
 (0)