cancel
Showing results for 
Search instead for 
Did you mean: 

when I try to run abap code by F8 key in ADT nothing is happening

devendra-verma
Explorer
0 Kudos
230

When I try to run some code in ADT nothing is opening only new Blank SAP GUI is opening. Now I can not figure out that what I did wrong please some one help me to solve that issue.

this is a code..

REPORT zdev_opn_sql01.

TYPES : BEGIN OF ty_so_amount,

so_id TYPE snwd_so-so_id,

currency_code TYPE snwd_so-currency_code,

gross_amt TYPE snwd_so-gross_amount,

delivery_status TYPE snwd_so-delivery_status,

END OF ty_so_amount.

DATA : lt_so_amount TYPE STANDARD TABLE OF ty_so_amount,

it_so_amount TYPE ty_so_amount.

SELECT FROM snwd_so FIELDS so_id, currency_code, gross_amount,

delivery_status WHERE currency_code = 'EUR'

INTO TABLE @DATA(lit_so_amount) UP TO 10 ROWS.

LOOP AT lit_so_amount INTO it_so_amount.

WRITE /: it_so_amount-so_id,

it_so_amount-currency_code,

it_so_amount-gross_amt,

it_so_amount-delivery_status.

ENDLOOP.REPORT zdev_opn_sql01.

Accepted Solutions (0)

Answers (1)

Answers (1)

FredericGirod
Active Contributor
abo
Active Contributor

I knew about the BTP interface to console but I missed the F9 thing, thanks for the tip

FredericGirod
Active Contributor

Ola c5e08e0478aa4727abc4482f5be390b2, I just discover it, when I search for a blog on the interface 😉