Gurus,
java lookup in message mapping......In a scenario..for Soap to IDOC(ECC)....
what are the valid values for Service, ChannelName......
try {
Channel channel = LookupService.getChannel(Service, channelName);
accessor = LookupService.getDataBaseAccessor(channel);
dbRes = accessor.execute(sqlStmt);
} catch (LookupException e) {
e.printStackTrace();
} finally {
if (accessor != null)
try {
accessor.close();
} catch (LookupException e1) {
trace.addWarning("Error closing accessor - " + e1);
}
}