Hi all,
I am new to this bapi programing. And now i was just workign with the program which goes like this.
to Write a report to print or display the list of customers given the customer numbers and country codes (select options) . by using bapi.
my code was
report y_pk09 .
tables: kna1.
data: iadd type table of bapicustomer_addressdata with header line,
ibapireturn type table of bapireturn1.
select-options: s_kunnr for kna1-kunnr.
start-of-selection.
call function 'BAPI_CUSTOMER_GETLIST'
EXPORTING
MAXROWS = 0
CPDONLY =
importing
return = ibapireturn
tables
idrange = s_kunnr
addressdata = iadd
SPECIALDATA =
.
check sy-subrc = 0.
Its not workign, iam not able to get the output,plese can anybody help me onthis by wirtign the code forthe full program, i am tryign my level best to do this program , but i kindly require your help to finish this program on time.
thanks in advance
thanks & regards
Prasannakesavan