GET_CUSTOMER_FIELDS SAP Method Reading of Fields









Below is documentation, parameters and attributes of ABAP Method GET_CUSTOMER_FIELDS within SAP class IF_EX_IBAPI_ALM_COM_GETDET. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_EX_IBAPI_ALM_COM_GETDET into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Instance

This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.

The following technical details of method GET_CUSTOMER_FIELDS can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method GET_CUSTOMER_FIELDS

.

NameTypeData TypeDescriptionDefault Value
EXTENSION_INImportingTYPE
ALM_BAPIPAREX_T
Enhancement Table In
IS_COMPONENTImportingTYPE
BAPI_ALM_ORDER_COMPONENT_E
Components in External Format
IS_RESBDImportingTYPE
RESBD
Components in Internal Format
IT_TEXTSImportingTYPE
BAPI_ALM_TEXT_T
Text Header Components
IT_TEXT_LINESImportingTYPE
BAPI_ALM_TEXT_LINES_T
Text Lines Components
EXTENSION_OUTChangingTYPE
ALM_BAPIPAREX_T
Output Table



Exceptions of Method GET_CUSTOMER_FIELDS

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_IBAPI_ALM_COM_GETDET.
DATA: lv_EXTENSION_IN TYPE ALM_BAPIPAREX_T,
lv_EXTENSION_OUT TYPE ALM_BAPIPAREX_T,
lv_IS_COMPONENT TYPE BAPI_ALM_ORDER_COMPONENT_E,
lv_IS_RESBD TYPE RESBD,
lv_IT_TEXTS TYPE BAPI_ALM_TEXT_T,
lv_IT_TEXT_LINES TYPE BAPI_ALM_TEXT_LINES_T,
lv_other TYPE c.

CALL METHOD lo_class=>GET_CUSTOMER_FIELDS(
EXPORTING
EXTENSION_IN = lv_EXTENSION_IN
IS_COMPONENT = lv_IS_COMPONENT
IS_RESBD = lv_IS_RESBD
IT_TEXTS = lv_IT_TEXTS
IT_TEXT_LINES = lv_IT_TEXT_LINES
CHANGING
EXTENSION_OUT = lv_EXTENSION_OUT ).

Links to Related Class(s)

IF_EX_IB...
Full list of available SAP object classes

Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!