Skip to content

Instantly share code, notes, and snippets.

@benjnw
Created August 6, 2025 14:31
Show Gist options
  • Select an option

  • Save benjnw/386f95ba1a42f55d6e9592c62cc61f58 to your computer and use it in GitHub Desktop.

Select an option

Save benjnw/386f95ba1a42f55d6e9592c62cc61f58 to your computer and use it in GitHub Desktop.
ranges
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