-
-
Notifications
You must be signed in to change notification settings - Fork 36
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
I think maybe the FIND commmand does not work in excercism #210
Comments
one tip for debugging, try reproducing via https://transpiler.abaplint.org put the ABAP code in the left editor, and rightmost it the output from WRITE data cipher_text type c length 10.
data cipher type c length 10.
data lv_cipher_idx type i.
data lv_idx type i.
cipher_text = '1234567890'.
FIND cipher_text+lv_idx(1) IN cipher MATCH OFFSET lv_cipher_idx.
write lv_cipher_idx. |
try these workarounds:
|
Yes - I changed from DATA to CONSTANTS and now my decode method works. Thanks Lars. |
abaplint/transpiler#891 opened |
so, does this mean I can close this issue? |
yea I've also added it in #202 there are other worse errors to fix first 😅 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm trying to solve Atbash Cipher but so far no luck.
I can't debug on xcercism, but I think I can conclude that the problem is that the following find command does not work even though it works fine in my own SAP system.
I have so far only written code for the decode method and it looks like this:
additionally I've added to strings to the private section of the class:
The text was updated successfully, but these errors were encountered: