‎2006 Oct 17 12:34 PM
Hi All,
Once I create the authority object for my report I am able to run the report since I am not authorised but I what to check the report. Is there any way to do that.
Thanks,
Govindarajan Umadevi.
‎2006 Oct 17 12:44 PM
AUTHORITY-CHECK OBJECT 'Z_OBJECT'
ID 'VKORG' FIELD KNVV-VKORG.
if sy-subrc <> 0.
message e810 with KNVV-VKORG.
endif.
‎2006 Oct 17 12:36 PM
yes, debug your report :
you can change sy-subrc before error-message
A.
‎2006 Oct 17 12:44 PM
AUTHORITY-CHECK OBJECT 'Z_OBJECT'
ID 'VKORG' FIELD KNVV-VKORG.
if sy-subrc <> 0.
message e810 with KNVV-VKORG.
endif.
‎2006 Oct 17 1:01 PM
Hi,
keep the breakpoint at AUTHORIZATION OBJECT STATEMENT
Once you get into debugger change the sy-subrc value to 0 in debugger .
if you get any popuup window while executing eventhen alos you are supposed to use pouup debugger to change the authirization .
regards,