Shows the catalog of installed components together with their interface description. You will find the following values:
- Schema: the schema (namespace) the component belongs to. Often the name of the R/3 system, where
the component was generated from.
- Class: The name of the class.
- ABAP Name: the name of the class as it appears from within ABAP.
- COM Name: the Prog id of the class to be used within COM.
The
Methods display shows the following columns:
- Method: name of the method.
- ABAP Name: name of the function in ABAP.
- BAPI: is it a BAPI function with guaranteed interface during several R/3 versions?.
- Stateless: the method is guaranteed to be stateless.
- Factory: the method is a factory method.
- Obsolete: the method shall not be used any more.
- Dialog: the method can contain dialogs which need to launch SAPGUI.
- Local: the method is a local method not affecting R/3.
- Class: the method is a class method in BOR (Business Object Repository).
The
Parameters and
Table Columns displays have the following columns in common:
- RFC Type: The type of the field within ABAP and RFC.
- OLE Type: The type of the field with respect to OLE Automation/OLEDB.
- Type Name: for a structured or table type the name of the type.
- Max. Length: the length of the field in bytes.
- Display Length: the maximum number of characters needed to display th field.
- Numeric Scale: for numeric fields the max. number of digits. '255' means not set.
- Numeric Precision: for numeric fields the number of decimals. '255' means not set.
The
Parametersdisplay additionaly has the columns:
- Position: the position of the parameter.
- Input or Output: the parameter is an input or output parameter.
- Table: the parameter is a tables parameter.
- Default: the parameter has a default value and is optional.
The
RFC Typescolumns may have the following values:
| Value | Symbolic Name |
| Description |
| 0 | RFCTYPE_CHAR |
| fixed length character field with single byte or multibyte encoding corresponding to the SAP Codepage setting. |
| 1 | RFCTYPE_DATE |
| a date field with the encoding YYYYMMDD. |
| 2 | RFCTYPE_BCD |
| a BCD field containing packed numbers. |
| 3 | RFCTYPE_TIME |
| a time field with the encoding HHMMSS. |
| 4 | RFCTYPE_BYTE |
| an unstructured field of bytes with fixed length ("raw field"). |
| 6 | RFCTYPE_NUM |
| a numeric character field containing only digits. |
| 7 | RFCTYPE_FLOAT |
| a floating point field in 8 Byte IEEE encoding. ("double") |
| 8 | RFCTYPE_INT |
| a 4 byte, signed integer field. |
| 9 | RFCTYPE_INT2 |
| a 2 byte, signed integer field. |
| 10 | RFCTYPE_INT1 |
| a 1 byte, unsigned integer field. |
| 14 | RFCTYPE_NULL |
| unknown ABAP type. |
| 15 | RFCTYPE_WIDE_2 |
| a fixed length unicode field with 2 byte unicode encoding (UCS2/UTF16, internal use) |
| 17 | RFCTYPE_STRUCTURE |
| a structured type. The structure of the type can be viewed by the Types display. |