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
.| Name | Type | Data Type | Description | Default Value |
| IV_AC_FIELD | Importing | TYPE XUFIELD | Authorization Field | |
| IV_ALPHA_CONVERT | Importing | TYPE ABAP_BOOL | Do alpha conversion on AC value | |
| IV_ATTR_VALUE | Importing | TYPE ANY | Node attribute value | |
| IV_NODE_ATTR | Importing | TYPE FIELDNAME | Field Name | |
| EV_AC_VALUE | Exporting | TYPE TY_AC_VAL | Authority check field value |
Exceptions of Method MAP_NODE2ACFIELD_VALUE
This method does not have any exceptionsExample 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