Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OR upper/lower case? #543

Closed
larshp opened this issue Oct 14, 2021 · 1 comment · Fixed by #542
Closed

OR upper/lower case? #543

larshp opened this issue Oct 14, 2021 · 1 comment · Fixed by #542
Assignees
Labels
bug Something isn't working

Comments

@larshp
Copy link
Member

larshp commented Oct 14, 2021

first part not working, second part working

@sbcgua this might be a good first issue if you like? if not I'll look into it tomorrow

ref sbcgua/text2tab#23

data i_amount_format type c length 2.
if not ( i_amount_format is initial or i_amount_format+1(1) is initial ).
endif.

DATA i_amount_format TYPE c LENGTH 2.
IF NOT ( i_amount_format IS INITIAL OR i_amount_format+1(1) IS INITIAL ).
ENDIF.
@larshp larshp added the bug Something isn't working label Oct 14, 2021
@sbcgua
Copy link

sbcgua commented Oct 14, 2021

yeah, I don't mind but I need some routing ... and ideally some unit testing guidance ... and dev flow ...
I guess this is a part of cond.ts or component_cond.ts but not sure how to practically check it. The downside of missing docs :)

@larshp larshp self-assigned this Oct 15, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Development

Successfully merging a pull request may close this issue.

2 participants