We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 243ce7b commit ce0be3cCopy full SHA for ce0be3c
src/zcl_tbox_csvfield.clas.abap
@@ -721,6 +721,13 @@ CLASS zcl_tbox_csvfield IMPLEMENTATION.
721
* +--------------------------------------------------------------------------------------</SIGNATURE>
722
METHOD _overflow.
723
724
+ r_fail = abap_true.
725
+
726
+ SPLIT i_value AT '.' INTO DATA(int) DATA(dec).
727
+ int = replace( val = int occ = 0 sub = `-` with = ` ` ).
728
+ CONDENSE int.
729
730
+ CHECK strlen( int ) LE m_element->length * 2 - 1 - m_element->decimals.
731
732
r_fail = abap_false.
733
0 commit comments