This class is inherited by all JobSAP BAPI modules. The following methods are available:
Method |
Description |
Visibility |
|---|---|---|
getOutputParmeter($fieldName) |
Provides the name of an output parameter. This method can be overwritten if this name differs from the name of the field of the function module. |
protected |
getOutputValue($fieldName, $result) |
Provides the value of an output parameter that was returned by the function module. This method can be overwritten if the field name of the JobSAP BAPI module differs from the returned field name. |
public |
getInputFieldValue($fieldName, $fieldType = '', $listId = '', $rowId = '') |
Returns the value of an input parameter. This value is determined according to the configuration in the system activity or form element and formatted depending on its field type (Attribute type). Please note: This method should not be overwritten, as the formatting of the provided field types will be lost otherwise. |
protected |
getListRowIds($listId) |
Returns the IDs of the rows of a list element. This allows to determine the values of the element using a loop. Example: $listRows = $this->getListRowIds('items');
Output: Array ( [0] => 0 [1] => 1 ... ) |
protected |