‎2008 Jan 29 4:58 PM
Hi,
When I do Extended Syntax Check I receive an error:
No write access to reference G_BADI_LIST_TUNING_REF takes place
Here's the declaration:
DATA: g_badi_list_tuning_ref type ref to if_ex_iwoc_list_tuning
where if_ex_iwoc_list_tuning is an interface.
Please help
Edited by: Donna CHerr Matias on Jan 29, 2008 7:01 PM
‎2008 Jan 29 5:10 PM
hi,
DATA: l_right type i value '4152-'.
should be:
'-4152'
About the other i have no idea
hope this helps
ec
‎2008 Jan 29 5:10 PM
hi,
DATA: l_right type i value '4152-'.
should be:
'-4152'
About the other i have no idea
hope this helps
ec
‎2008 Jan 29 8:32 PM
Anyone knows why I get the No Write Access error?
Help needed
thanks
‎2008 Jan 29 10:43 PM
Hello Donna
Since almost all important information about the context are missing I try a best guess:
Assuming that the type definition
DATA: g_badi_list_tuning_ref TYPE REF TO if_ex_iwoc_list_tuning
is part of a custom report then the error might be due to the fact that you do not instantiate the BAdI interface within your report.
Alternatively, the system may not allow - by default - to use variables referencing BAdI interfaces because they are intended to be used within standard coding.
Regards,
Uwe
‎2008 Jan 30 5:27 PM