Hello community,
I am trying to call a RFC SNC destination in my Java application (Tomcat 8 runtime) and getting the following error:
com.sap.conn.jco.JCoException: (103) JCO_ERROR_LOGON_FAILURE: Initialization of destination dt1_datatrain_snc failed: Anmeldedaten unvollständig.
I followed all the steps of the offical documentation to configure SNC on my AS ABAP and on the Cloud Connector:
My destination looks like this:


My user Mapping looks like this:

And my JAVA code looks like this:
JCoDestination destination=JCoDestinationManager.getDestination("dt1_datatrain_snc");
JCoRepository repo=destination.getRepository();
JCoFunction stfcConnection=repo.getFunction("STFC_CONNECTION");
JCoParameterList imports=stfcConnection.getImportParameterList();
imports.setValue("REQUTEXT", "SAP HANA Cloud connectivity runs with JCo");
stfcConnection.execute(destination);
I have no idea what is goung wrong here??
Thanks in advance for help,
Christoffer Fuss