Thank you Good sir your patience.
i checked in the method and its an auto generated method
method ZIMRA_SUBMIT_INVOICES.
data:
ls_parmbind type abap_parmbind,
lt_parmbind type abap_parmbind_tab.
ls_parmbind-name = 'INPUT'.
ls_parmbind-kind = cl_abap_objectdescr=>importing.
get reference of INPUT into ls_parmbind-value.
insert ls_parmbind into table lt_parmbind.
ls_parmbind-name = 'OUTPUT'.
ls_parmbind-kind = cl_abap_objectdescr=>exporting.
get reference of OUTPUT into ls_parmbind-value.
insert ls_parmbind into table lt_parmbind.
if_proxy_client~execute(
exporting
method_name = 'ZIMRA_SUBMIT_INVOICES'
changing
parmbind_tab = lt_parmbind
).
endmethod.
even my initial declaration is auto generated
when u create the proxy class so i'm worried if i modify the code it will never work.
im following a tutorial