‎2008 Jun 24 7:39 PM
this is my first bapi i have written like this please correct me.
following bapi is not executing.
REPORT ZBAPI .
tables: BAPI1011_LIST.
data: begin of itab occurs 0,
x like BAPI1011_LIST,
end of itab.
start-of-selection.
CALL FUNCTION 'BAPI_BANK_GETLIST'
EXPORTING
bank_ctry = 'ZA'
max_rows = '0'
IMPORTING
RETURN =
tables
bank_list = itab
.
end-of-selection.
loop at itab.
write:/ itab-x.
endloop.
*
*CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
EXPORTING
WAIT =
IMPORTING
RETURN =
.
*
Edited by: vi p on Jun 24, 2008 8:39 PM
‎2008 Jun 24 7:44 PM
Obviously.
YOu should specify the MAX_ROWS to some non zero values.
like
max_rows = 100.
Regards,
Ravi
‎2008 Jun 24 7:44 PM
Obviously.
YOu should specify the MAX_ROWS to some non zero values.
like
max_rows = 100.
Regards,
Ravi
‎2008 Jun 24 7:46 PM
yes i have done it like that but even then its saying syntactically correct but not displaying output
‎2008 Jun 24 7:52 PM
‎2008 Jun 24 7:53 PM