marcellourbani / vscode_abap_remote_fs

Remote filesystem for ABAP systems
MIT License
174 stars 28 forks source link

quickfixes #153

Closed uxkjaer closed 3 years ago

uxkjaer commented 3 years ago

The API /sap/bc/adt/quickfixes handles the Eclipse quickfixes. All is done via post requests.

The following program can be used as a sample with attached postman collection

&--------------------------------------------------------------------- & Report test &--------------------------------------------------------------------- & &--------------------------------------------------------------------- REPORT ztest.

WRITE: |Hello WORLD|.

class lcl_test DEFINITION. PUBLIC SECTION. methods test. ENDCLASS.

class lcl_test IMPLEMENTATION.

ENDCLASS.

Remember to change the x-csrf-token ADT.postman_collection.json.zip Quick fix menu response image

Actual quickfix response image

marcellourbani commented 3 years ago

That's working already: fixcode

uxkjaer commented 3 years ago

haha yeah of course. I got confused with the abaplint as well.