FI_AUTHORITY_ITEM_CUST SAP Method of class IF_EX_BADI_FI_AUTHORITY_ITEM_C
Below is documentation, parameters and attributes of ABAP Method FI_AUTHORITY_ITEM_CUST within SAP class IF_EX_BADI_FI_AUTHORITY_ITEM_C. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.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_EX_BADI_FI_AUTHORITY_ITEM_C 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 FI_AUTHORITY_ITEM_CUST can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method FI_AUTHORITY_ITEM_CUST
.| Name | Type | Data Type | Description | Default Value |
| I_BERACT | Importing | TYPE C | Activity for Authorization | |
| I_BSEG | Importing | TYPE BSEG | Accounting Document Segment | |
| C_BMODZ | Changing | TYPE C | Display Only Indicator (D) | |
| C_MSGID | Changing | TYPE SYMSGID | Messages, Message Class | |
| C_MSGNO | Changing | TYPE SYMSGNO | Messages, Message Number | |
| C_MSGV1 | Changing | TYPE SYMSGV | Messages, Message Variable | |
| C_MSGV2 | Changing | TYPE SYMSGV | Messages, Message Variable | |
| C_MSGV3 | Changing | TYPE SYMSGV | Messages, Message Variable | |
| C_MSGV4 | Changing | TYPE SYMSGV | Messages, Message Variable | |
| C_RCODE | Changing | TYPE SYSUBRC | Return Value, Return Value after ABAP Statements |
Exceptions of Method FI_AUTHORITY_ITEM_CUST
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO IF_EX_BADI_FI_AUTHORITY_ITEM_C.
DATA: lv_C_BMODZ TYPE C,
lv_C_MSGID TYPE SYMSGID,
lv_C_MSGNO TYPE SYMSGNO,
lv_C_MSGV1 TYPE SYMSGV,
lv_C_MSGV2 TYPE SYMSGV,
lv_C_MSGV3 TYPE SYMSGV,
lv_C_MSGV4 TYPE SYMSGV,
lv_C_RCODE TYPE SYSUBRC,
lv_I_BERACT TYPE C,
lv_I_BSEG TYPE BSEG,
lv_other TYPE c.
CALL METHOD lo_class=>FI_AUTHORITY_ITEM_CUST(
EXPORTING
I_BERACT = lv_I_BERACT
I_BSEG = lv_I_BSEG
CHANGING
C_BMODZ = lv_C_BMODZ
C_MSGID = lv_C_MSGID
C_MSGNO = lv_C_MSGNO
C_MSGV1 = lv_C_MSGV1
C_MSGV2 = lv_C_MSGV2
C_MSGV3 = lv_C_MSGV3
C_MSGV4 = lv_C_MSGV4
C_RCODE = lv_C_RCODE ).
Links to Related Class(s)
IF_EX_BA...Full list of available SAP object classes
Search for further information about these or an SAP related objects