Skip to Content
0
Former Member
Jul 22, 2008 at 04:53 AM

specifically FCC with Reciever file adapter

25 Views

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);

}

}