TRANSLATE SAP Method Deserialize and Translate Tagging Information









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

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


Parameters of Method TRANSLATE

.

NameTypeData TypeDescriptionDefault Value
IR_TAG_NODEImportingTYPE REF TO
IF_WD_CONTEXT_NODE
Web Dynpro: Interface for Context Nodes
IV_CONTEXT_KEYImportingTYPE
/BCV/FND_CONTEXT_KEY
Context Key
IV_NWPB_TAGGINGImportingTYPE
/BCV/UIF_NW_TAGGING
NW Tagging Information
IV_OUTPUT_TYPEImportingTYPE
/BCV/UIF_OUTPUT_TYPE
Available Output Types
ET_APPL_INPUTExportingTYPE
/BCV/T_UIF_APPL_INPUT
Application Input Values
ET_DASHBOARD_CORExportingTYPE
TT_SP_DASHBOARD_DATA
Tag <> Node Relations
EV_CTXT_FOUNDExportingTYPE
WDY_BOOLEAN
Indicator whether Context Key was found in tagging string
EV_ENVMT_SETExportingTYPE
WDY_BOOLEAN
Supplement for True Boolean Type: 'X' == True '' == False



Exceptions of Method TRANSLATE

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /BCV/CL_UIF_COMMON_ASSIST.
DATA: lv_ET_APPL_INPUT TYPE /BCV/T_UIF_APPL_INPUT,
lv_ET_DASHBOARD_COR TYPE TT_SP_DASHBOARD_DATA,
lv_EV_CTXT_FOUND TYPE WDY_BOOLEAN,
lv_EV_ENVMT_SET TYPE WDY_BOOLEAN,
lv_IR_TAG_NODE TYPE IF_WD_CONTEXT_NODE,
lv_IV_CONTEXT_KEY TYPE /BCV/FND_CONTEXT_KEY,
lv_IV_NWPB_TAGGING TYPE /BCV/UIF_NW_TAGGING,
lv_IV_OUTPUT_TYPE TYPE /BCV/UIF_OUTPUT_TYPE,
lv_other TYPE c.

CALL METHOD lo_class=>TRANSLATE(
EXPORTING
IR_TAG_NODE = lv_IR_TAG_NODE
IV_CONTEXT_KEY = lv_IV_CONTEXT_KEY
IV_NWPB_TAGGING = lv_IV_NWPB_TAGGING
IV_OUTPUT_TYPE = lv_IV_OUTPUT_TYPE
IMPORTING
ET_APPL_INPUT = lv_ET_APPL_INPUT
ET_DASHBOARD_COR = lv_ET_DASHBOARD_COR
EV_CTXT_FOUND = lv_EV_CTXT_FOUND
EV_ENVMT_SET = lv_EV_ENVMT_SET ).

Links to Related Class(s)

/BCV/CL_...
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!