"NOT_SUPPORTED_BY_GUI" Exception in JCo
- by cedar715
We are having a BAPI that uploads the specified document to SAP.
The BAPI accept three parameters:
ID, FILE_LOC and FOLDER_NAME.
And I'm setting the values as follows in the JCo code:
JCO.ParameterList paramList = function.getImportParameterList();
paramList.setValue("101XS1", "EXTERNAL_ID");
paramList.setValue("tmp", "FOLDER_NAME");…