FILL_AC_FIELDVAL_STR SAP Method Fill authority field and value structures
Below is documentation, parameters and attributes of ABAP Method FILL_AC_FIELDVAL_STR 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 FILL_AC_FIELDVAL_STR can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method FILL_AC_FIELDVAL_STR
.| Name | Type | Data Type | Description | Default Value |
| IT_AUTH_FIELDVAL | Importing | TYPE TT_AC | Authority Check Field/Value assignment | |
| ES_AUTH_FIELDS | Exporting | TYPE TY_AUTH_FIELDS | Authority Check Fields | |
| ES_AUTH_VALUES | Exporting | TYPE TY_FIELD_VALUES | Authority Check Field Values | |
| EV_DUMMY_COUNT | Exporting | TYPE INT1 | Counter for values with DUMMY value |
Exceptions of Method FILL_AC_FIELDVAL_STR
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMTMS/CL_AC_SUPER.
DATA: lv_ES_AUTH_FIELDS TYPE TY_AUTH_FIELDS,
lv_ES_AUTH_VALUES TYPE TY_FIELD_VALUES,
lv_EV_DUMMY_COUNT TYPE INT1,
lv_IT_AUTH_FIELDVAL TYPE TT_AC,
lv_other TYPE c.
CALL METHOD lo_class=>FILL_AC_FIELDVAL_STR(
EXPORTING
IT_AUTH_FIELDVAL = lv_IT_AUTH_FIELDVAL
IMPORTING
ES_AUTH_FIELDS = lv_ES_AUTH_FIELDS
ES_AUTH_VALUES = lv_ES_AUTH_VALUES
EV_DUMMY_COUNT = lv_EV_DUMMY_COUNT ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects