|
SAP NetWeaver 2004S SPS 10 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| 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 |
| Fields in com.sap.mw.jco declared as IMetaData | |
protected IMetaData |
JCO.ParameterList.dependant_meta_data
|
| Methods in com.sap.mw.jco that return IMetaData | |
IMetaData |
JCO.MetaData.getMetaData()
Returns the copy of 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(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(String function_name)
Returns the meta data for the passed function |
IMetaData |
JCO.BasicRepository.getStructureDefinition(String structure_name)
Returns the meta data for the passed structure |
IMetaData |
JCO.BasicRepository.getTableDefinition(String table_name)
Returns the meta data for the passed table |
protected IMetaData |
JCO.Repository.queryFunctionInterface(String function_name,
String pool_name)
Queries the function interface from a remote SAP system. |
protected IMetaData |
JCO.Repository.queryStructureDefinition(String structure_name,
String pool_name)
Queries the structure definition from a remote SAP system. |
IMetaData |
JCO.Repository.getFunctionInterface(String function_name)
Returns the meta data for the specified function |
IMetaData |
JCO.Repository.getStructureDefinition(String structure_name)
Returns the meta data for the specified structure. |
IMetaData |
JCO.Repository.queryFunctionInterface(JCO.Client client,
String name)
Queries the function meta data for the passed function name. |
IMetaData |
JCO.Repository.queryStructureDefinition(JCO.Client client,
String name)
Queries the meta data for the structure with the specified name. |
IMetaData |
JCO.Repository.queryTableDefinition(JCO.Client client,
String name)
Queries the meta data for the table with the specified the name. |
IMetaData |
IRepository.getFunctionInterface(String function_name)
Returns the meta data for the passed function |
IMetaData |
IRepository.getStructureDefinition(String structure_name)
Returns the meta data for the passed structure |
IMetaData |
IRepository.getTableDefinition(String table_name)
Returns the meta data for the passed table |
IMetaData |
IMetaData.getMetaData(int index)
Returns the meta-data if the specified data field is a table or structure. |
IMetaData |
IMetaData.getMetaData(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 |
| 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 |
protected void |
JCO.MetaData.copy(IMetaData obj)
Copy data from another meta data object |
protected void |
JCO.MetaData.printHTML(PrintWriter os,
IMetaData m,
int level)
Outputs record as a HTML table |
protected void |
JCO.MetaData.printHTML(PrintWriter os,
IMetaData m,
int level,
int print_flags)
Outputs record as a HTML table |
void |
JCO.BasicRepository.addFunctionInterfaceToCache(IMetaData meta)
Adds a function interface to the local cache. |
void |
JCO.BasicRepository.addFunctionInterfaceToCache(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(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.Structure(int rec_type,
IMetaData meta_data)
Creates an instance of the structure with a layout as specified by the 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.Request(IMetaData request_meta_data,
IMetaData response_meta_data,
JCO.AbapException[] exception_list)
Creates an instance of a parameter list |
|
JCO.Response(IMetaData response_meta_data,
IMetaData request_meta_data,
JCO.AbapException[] exception_list)
Creates an instance of a parameter list |
|
JCO.FunctionTemplate(String name,
IMetaData input,
IMetaData output,
IMetaData tables,
Vector exceptions)
Creates an instance of the function template |
|
JCO.FunctionTemplate(String name,
IMetaData input,
IMetaData output,
IMetaData tables,
JCO.AbapException[] exceptions)
Creates an instance of the function template |
|
|
SAP NetWeaver 2004S SPS 10 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||