Uses of Class
com.sap.mw.jco.JCO.ParameterList

Uses of JCO.ParameterList in com.sap.mw.jco
 

Subclasses of JCO.ParameterList in com.sap.mw.jco
static class JCO.Request
          A class that encapsulates a request
static class JCO.Response
          A class that encapsulates a response
 

Methods in com.sap.mw.jco that return JCO.ParameterList
static JCO.ParameterList JCO.createParameterList()
          Returns a newly created parameter list
static JCO.ParameterList JCO.createParameterList(IMetaData meta_data)
          Returns a newly created and preconfigured parameter list as specified by the meta data
 JCO.ParameterList JCO.Function.getImportParameterList()
          Returns the list import parameters
 JCO.ParameterList JCO.Function.getExportParameterList()
          Returns the list of export parameters
 JCO.ParameterList JCO.Function.getTableParameterList()
          Returns the list of table parameters
 

Methods in com.sap.mw.jco with parameters of type JCO.ParameterList
static JCO.Function JCO.createFunction(java.lang.String name, JCO.ParameterList input, JCO.ParameterList output, JCO.ParameterList tables)
          Creates a new JCO Function
 void JCO.Client.execute(java.lang.String name, JCO.ParameterList input, JCO.ParameterList output)
          Executes the function on the remote server synchronously
 void JCO.Client.execute(java.lang.String name, JCO.ParameterList input, JCO.ParameterList output, JCO.ParameterList tables)
          Executes the function on the remote server synchronously
 void JCO.Client.execute(java.lang.String name, JCO.ParameterList input, JCO.ParameterList tables, java.lang.String tid)
          Executes the function on the remote server in transactional mode (asynchronously)
 void JCO.Client.execute(java.lang.String name, JCO.ParameterList input, JCO.ParameterList tables, java.lang.String tid, java.lang.String queue_name)
          Executes the function on the remote server in queued transactional mode (asynchronously)
 void JCO.Client.execute(java.lang.String name, JCO.ParameterList input, JCO.ParameterList tables, java.lang.String tid, java.lang.String queue_name, int queue_pos)
          Executes the function on the remote server in transactional mode (asynchronously)
 void JCO.Function.setImportParameterList(JCO.ParameterList import_parameters)
          Sets the import parameters
 void JCO.Function.setExportParameterList(JCO.ParameterList export_parameters)
          Sets the export parameters
 void JCO.Function.setTableParameterList(JCO.ParameterList table_parameters)
          Sets the table parameters
 

Constructors in com.sap.mw.jco with parameters of type JCO.ParameterList
JCO.ParameterList(JCO.ParameterList value)
          Creates an new instance of a parameter list which has the same contents as the parameter list argument
JCO.Function(java.lang.String name, JCO.ParameterList input, JCO.ParameterList output, JCO.ParameterList tables)
          Creates an instance of the function