cancel
Showing results for 
Search instead for 
Did you mean: 

specifically FCC with Reciever file adapter

Former Member
0 Kudos

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

}

}

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Service is the Business system name or business service name u have to give and under communication channel u have to create a communication channel and that name u have to give there.

Regards,

Phani

Former Member
0 Kudos

Phani,

Specifically speaking..it should not be the soap reciever,..but the idoc comm channel and the service should be the ECC client..right !

Former Member
0 Kudos

Hi,

While dealing with the SAP Applications we have to use Business system.

In your case, you are using the Idoc, so use the Business system to communicate with the SAP ECC.

https://www.sdn.sap.com/irj/sdn/wiki?path=/display/profile/2007/05/11/fileToIDOC&

https://www.sdn.sap.com/irj/sdn/wiki?path=/display/profile/2007/05/11/fileToIDOC-Part2+(Configuration)&

https://www.sdn.sap.com/irj/sdn/wiki?path=/display/profile/2007/05/11/fileToIDOC-Part3(StepsrequiredinXIandR3)&

Regards

Seshagiri