EVALUATE SAP Method Evaluate Translation









Below is documentation, parameters and attributes of ABAP Method EVALUATE within SAP class IF_LXE_PP_EVALUATION. 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_LXE_PP_EVALUATION 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 EVALUATE can also be found below:

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


Parameters of Method EVALUATE

.

NameTypeData TypeDescriptionDefault Value
I_CHECK_BESTImportingTYPE
LXEBOOL
Check Existence of Best Proposal
I_DOMAINImportingTYPE
LXEDOMANAM
Domain Name
I_MAX_LENGTHImportingTYPE
LXEUNITMLT
Maximum Text Length for Best Proposal
I_SRC_LANGImportingTYPE
LXEISOLANG
Source Language
I_SRC_TEXTImportingTYPE
LXEUNITLIN
Source Text
I_TGT_LANGImportingTYPE
LXEISOLANG
Target Language
I_TGT_TEXTImportingTYPE
LXEUNITLIN
Target Text
I_USE_BUFFERImportingTYPE
LXEBOOL
Use Proposal Buffer
E_BEST_P_EXISTSExportingTYPE
LXEBOOL
Boolean
E_TRL_STATUSExportingTYPE
LXESTATTRN
Translation Status of an Object



Exceptions of Method EVALUATE

CX_LXE_PP - Proposal Pool

Example ABAP coding


DATA: lo_class TYPE REF TO IF_LXE_PP_EVALUATION.
DATA: lv_E_BEST_P_EXISTS TYPE LXEBOOL,
lv_E_TRL_STATUS TYPE LXESTATTRN,
lv_I_CHECK_BEST TYPE LXEBOOL,
lv_I_DOMAIN TYPE LXEDOMANAM,
lv_I_MAX_LENGTH TYPE LXEUNITMLT,
lv_I_SRC_LANG TYPE LXEISOLANG,
lv_I_SRC_TEXT TYPE LXEUNITLIN,
lv_I_TGT_LANG TYPE LXEISOLANG,
lv_I_TGT_TEXT TYPE LXEUNITLIN,
lv_I_USE_BUFFER TYPE LXEBOOL,
lv_other TYPE c.

CALL METHOD lo_class=>EVALUATE(
EXPORTING
I_CHECK_BEST = lv_I_CHECK_BEST
I_DOMAIN = lv_I_DOMAIN
I_MAX_LENGTH = lv_I_MAX_LENGTH
I_SRC_LANG = lv_I_SRC_LANG
I_SRC_TEXT = lv_I_SRC_TEXT
I_TGT_LANG = lv_I_TGT_LANG
I_TGT_TEXT = lv_I_TGT_TEXT
I_USE_BUFFER = lv_I_USE_BUFFER
IMPORTING
E_BEST_P_EXISTS = lv_E_BEST_P_EXISTS
E_TRL_STATUS = lv_E_TRL_STATUS ).

Links to Related Class(s)

IF_LXE_P...
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!