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

LOOP AT does not set sy-tabix #149

Closed
larshp opened this issue Dec 3, 2020 · 1 comment
Closed

LOOP AT does not set sy-tabix #149

larshp opened this issue Dec 3, 2020 · 1 comment
Assignees

Comments

@larshp
Copy link
Member

larshp commented Dec 3, 2020

workaround: add local variable

@larshp larshp changed the title LOOP AT does not set sy-index LOOP AT does not set sy-index/sy-tabix Dec 3, 2020
@larshp larshp changed the title LOOP AT does not set sy-index/sy-tabix LOOP AT does not set sy-tabix Dec 3, 2020
@larshp
Copy link
Member Author

larshp commented Dec 3, 2020

DATA tab TYPE STANDARD TABLE OF i WITH DEFAULT KEY.
DO 3 TIMES.
  APPEND sy-index TO tab.
ENDDO.
DATA sdf TYPE i.
LOOP AT tab INTO sdf.
  WRITE / sy-tabix.
ENDLOOP.

larshp added a commit that referenced this issue Dec 3, 2020
@larshp larshp self-assigned this Dec 3, 2020
larshp added a commit that referenced this issue Dec 3, 2020
* update deps

* bugfix

* update deps

* concat via &, #148

* update web

* add sy-tabix, always eq zero

* LOOP set tabix, #149

* update deps

* 0.8.17
@larshp larshp closed this as completed Dec 4, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant