Uses of Interface
com.sap.mw.jco.IMetaData

Uses of IMetaData in com.sap.mw.jco
 

Classes in com.sap.mw.jco that implement IMetaData
static class JCO.MetaData
          Implements the meta data for a data structure, i.e. table, structure, or parameter list, respectively.
static class JCO.ParameterList
          A class that encapsulates a parameter list used to pass on data to a function.
static class JCO.Record
          Base class for all data-structures used throughout the JCO toolkit.
static class JCO.Request
          A class that encapsulates a request
static class JCO.Response
          A class that encapsulates a response
static class JCO.Structure
          Class that encapsulates a composite data structure.
static class JCO.Table
          Class that encapsulates a database table
 

Methods in com.sap.mw.jco that return IMetaData
 IMetaData JCO.MetaData.getMetaData()
          Returns the MetaData object
 IMetaData JCO.MetaData.getMetaData(int index)
          Returns the meta data if this data field is a table or structure or null if no meta data are available
 IMetaData JCO.MetaData.getMetaData(java.lang.String field_name)
          Returns the meta data if this data field is a table or structure or null if no meta data are available
 IMetaData JCO.FunctionTemplate.getImportParameterList()
          Returns the meta data for the import parameter list
 IMetaData JCO.FunctionTemplate.getExportParameterList()
          Returns the meta data for the export parameter list
 IMetaData JCO.FunctionTemplate.getTableParameterList()
          Returns the meta data for the table parameter list
 IMetaData JCO.BasicRepository.getFunctionInterface(java.lang.String function_name)
          Returns the meta data for the passed function
 IMetaData JCO.BasicRepository.getStructureDefinition(java.lang.String structure_name)
          Returns the meta data for the passed structure
 IMetaData JCO.BasicRepository.getTableDefinition(java.lang.String table_name)
          Returns the meta data for the passed table
 IMetaData JCO.Repository.getFunctionInterface(java.lang.String function_name)
          Returns the meta data for the specified function
 IMetaData JCO.Repository.getStructureDefinition(java.lang.String structure_name)
          Returns the meta data for the specified structure.
 IMetaData JCO.Repository.queryFunctionInterface(JCO.Client client, java.lang.String name)
          Queries the function meta data for the passed function name.
 IMetaData JCO.Repository.queryStructureDefinition(JCO.Client client, java.lang.String name)
          Queries the meta data for the structure with the specified name.
 IMetaData JCO.Repository.queryTableDefinition(JCO.Client client, java.lang.String name)
          Queries the meta data for the table with the specified the name.
 IMetaData IMetaData.getMetaData(int index)
          Returns the meta-data if the specified data field is a table or structure.
 IMetaData IMetaData.getMetaData(java.lang.String field_name)
          Returns the meta-data if the specified data field is a table or structure.
 IMetaData IFunctionTemplate.getImportParameterList()
          Returns the meta-data for the import parameter list
 IMetaData IFunctionTemplate.getExportParameterList()
          Returns the meta-data for the export parameter list
 IMetaData IFunctionTemplate.getTableParameterList()
          Returns the meta-data for the table parameter list
 IMetaData IRepository.getFunctionInterface(java.lang.String function_name)
          Returns the meta data for the passed function
 IMetaData IRepository.getStructureDefinition(java.lang.String structure_name)
          Returns the meta data for the passed structure
 IMetaData IRepository.getTableDefinition(java.lang.String table_name)
          Returns the meta data for the passed table
 

Methods in com.sap.mw.jco with parameters of type IMetaData
static JCO.ParameterList JCO.createParameterList(IMetaData meta_data)
          Returns a newly created and preconfigured parameter list as specified by the meta data
static JCO.Structure JCO.createStructure(IMetaData meta_data)
          Creates a new structure with data fields as described by the specified meta data
static JCO.Table JCO.createTable(IMetaData meta_data)
          Creates a new table with a column layout as described by the specified meta data
 void JCO.BasicRepository.addFunctionInterfaceToCache(IMetaData meta)
          Adds a function interface to the local cache.
 void JCO.BasicRepository.addFunctionInterfaceToCache(java.lang.String key, IMetaData meta)
          Adds a function interface to the local cache.
 void JCO.BasicRepository.addStructureDefinitionToCache(IMetaData meta)
          Adds a structure definition to the local cache.
 void JCO.BasicRepository.addStructureDefinitionToCache(java.lang.String key, IMetaData meta)
          Adds a structure definition to the local cache.
 void IRepository.addFunctionInterfaceToCache(IMetaData meta)
          Adds a function interface to the local cache.
 void IRepository.addStructureDefinitionToCache(IMetaData meta)
          Adds a structure definition to the local cache.
 

Constructors in com.sap.mw.jco with parameters of type IMetaData
JCO.MetaData(IMetaData obj)
          Creates an instance of the meta data object
JCO.Record(IMetaData meta_data)
          Creates a record with a layout as specified by the meta data
JCO.Record(int rec_type, IMetaData meta_data)
          Creates a record with a layout as specified by the meta data
JCO.ParameterList(IMetaData meta_data)
          Creates an instance of a parameter list
JCO.Structure(IMetaData meta_data)
          Creates an instance of the structure with a layout as specified by the IMetaData argument
JCO.Table(IMetaData meta_data)
          Creates an instance of the table with a column layout as specified by the IMetaData argument
JCO.FunctionTemplate(java.lang.String name, IMetaData input, IMetaData output, IMetaData tables, java.util.Vector exceptions)
          Creates an instance of the function template
JCO.FunctionTemplate(java.lang.String name, IMetaData input, IMetaData output, IMetaData tables, JCO.AbapException[] exceptions)
          Creates an instance of the function template