See: Description
| Interface | Description |
|---|---|
| ISAPAuthTraceService | Deprecated |
Provides interfaces and classes for starting and stopping the authorization trace in the R/3 system.
try
{
ISAPAuthTraceService atService = (ISAPAuthTraceService)(PortalRuntime.getRuntimeResources().getService(ISAPAuthTraceService.KEY));
IConnectorGatewayService cgService = (IConnectorGatewayService)(PortalRuntime.getRuntimeResources().getService(IConnectorService.KEY));
ConnectionProperties prop = new ConnectionProperties();
prop.setUser(m_request.getUser());
prop.setLocale(m_request.getLocale());
IConnection connection = cgService.getConnection(alias,prop);
atService.startAuthorizationTrace(connection,request);
}
catch(ExecutionException exp){}
catch(ResourceException exp){}
try
{
ISAPAuthTraceService atService = (ISAPAuthTraceService)(PortalRuntime.getRuntimeResources().getService(ISAPAuthTraceService.KEY));
IConnection connection = atService.getTracedConnection(alias,request);
}
catch(ResourceException exp){}
catch(Exception exp){}
Copyright 2021 SAP SE Complete Copyright Notice