Created
August 6, 2025 14:31
-
-
Save benjnw/386f95ba1a42f55d6e9592c62cc61f58 to your computer and use it in GitHub Desktop.
ranges
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: lv_j_1bbase TYPE j_1bbase, | |
| lt_j_1bnfstx TYPE TABLE OF j_1bnfstx, | |
| lr_taxes TYPE RANGE OF j_1btaxtyp WITH HEADER LINE, | |
| ls_taxes LIKE LINE OF lr_taxes. | |
| * Exclui os impostos iniciados com "IPI" | |
| lr_taxes = 'ECP'. | |
| lr_taxes-low = 'IPI*'. | |
| APPEND lr_taxes. | |
| *** ABAP >= 7.4 | |
| DATA: | |
| lr_snunr TYPE RANGE OF rebdusagetype. | |
| CLEAR lr_snunr[]. | |
| lr_snunr = VALUE #( sign = 'I' option = 'EQ' | |
| ( low = c_snunr_1 ) | |
| ( low = c_snunr_2 ) | |
| ( low = c_snunr_3 ) | |
| ( low = c_snunr_4 ) ). | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment