MAP_NODE2ACFIELD_VALUE SAP Method Redef: Map BO node data to AC Field Value









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

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


Parameters of Method MAP_NODE2ACFIELD_VALUE

.

NameTypeData TypeDescriptionDefault Value
IV_AC_FIELDImportingTYPE
XUFIELD
Authorization Field
IV_ALPHA_CONVERTImportingTYPE
ABAP_BOOL
Do alpha conversion on AC value
IV_ATTR_VALUEImportingTYPE
ANY
Node attribute value
IV_NODE_ATTRImportingTYPE
FIELDNAME
Field Name
EV_AC_VALUEExportingTYPE
TY_AC_VAL
Authority check field value



Exceptions of Method MAP_NODE2ACFIELD_VALUE

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /SCMTMS/CL_AC_SUPER.
DATA: lv_EV_AC_VALUE TYPE TY_AC_VAL,
lv_IV_AC_FIELD TYPE XUFIELD,
lv_IV_ALPHA_CONVERT TYPE ABAP_BOOL,
lv_IV_ATTR_VALUE TYPE ANY,
lv_IV_NODE_ATTR TYPE FIELDNAME,
lv_other TYPE c.

CALL METHOD lo_class=>MAP_NODE2ACFIELD_VALUE(
EXPORTING
IV_AC_FIELD = lv_IV_AC_FIELD
IV_ALPHA_CONVERT = lv_IV_ALPHA_CONVERT
IV_ATTR_VALUE = lv_IV_ATTR_VALUE
IV_NODE_ATTR = lv_IV_NODE_ATTR
IMPORTING
EV_AC_VALUE = lv_EV_AC_VALUE ).

Links to Related Class(s)

/SCMTMS/...
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!