D100_BEFORE_INIT_SCREEN SAP Method Before the initialization of screen 100
Below is documentation, parameters and attributes of ABAP Method D100_BEFORE_INIT_SCREEN within SAP class DIST_MAIN01. 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 DIST_MAIN01 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 D100_BEFORE_INIT_SCREEN can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method D100_BEFORE_INIT_SCREEN
.| Name | Type | Data Type | Description | Default Value |
| FUNCTION | Importing | TYPE CHAR2 | Function | |
| I_ASS_ID | Importing | TYPE CVDIASSID | Recipient list ID | |
| I_REF_ASS_ID | Importing | TYPE CVDIREFID | Template for recipient list of the documents | |
| DATA_LOCK | Exporting | TYPE C | flag for data lock | |
| DOCUMENTS_LOCK | Exporting | TYPE C | flag for documents lock | |
| RECEIVER_LOCK | Exporting | TYPE C | flag for receiver lock | |
| CVDIOBJ | Changing | TYPE TBL_CVDIOBJ | Table Type for CVDIOBJ | |
| CVIDRZA | Changing | TYPE TBL_CVIDRZA | Table Type for CVIDRZA | |
| DOCTAB | Changing | TYPE TBL_CVIDOC_TAB | DDS: Document data on screen 100 | |
| DRZAO | Changing | TYPE CVDIDRZAO | DDS: Structure order-specific data | |
| RECTAB | Changing | TYPE TBL_CVIREC_TAB | DDS: Recipient data on screen 100 |
Exceptions of Method D100_BEFORE_INIT_SCREEN
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO DIST_MAIN01.
DATA: lv_CVDIOBJ TYPE TBL_CVDIOBJ,
lv_CVIDRZA TYPE TBL_CVIDRZA,
lv_DATA_LOCK TYPE C,
lv_DOCTAB TYPE TBL_CVIDOC_TAB,
lv_DOCUMENTS_LOCK TYPE C,
lv_DRZAO TYPE CVDIDRZAO,
lv_FUNCTION TYPE CHAR2,
lv_I_ASS_ID TYPE CVDIASSID,
lv_I_REF_ASS_ID TYPE CVDIREFID,
lv_RECEIVER_LOCK TYPE C,
lv_RECTAB TYPE TBL_CVIREC_TAB,
lv_other TYPE c.
CALL METHOD lo_class=>D100_BEFORE_INIT_SCREEN(
EXPORTING
FUNCTION = lv_FUNCTION
I_ASS_ID = lv_I_ASS_ID
I_REF_ASS_ID = lv_I_REF_ASS_ID
IMPORTING
DATA_LOCK = lv_DATA_LOCK
DOCUMENTS_LOCK = lv_DOCUMENTS_LOCK
RECEIVER_LOCK = lv_RECEIVER_LOCK
CHANGING
CVDIOBJ = lv_CVDIOBJ
CVIDRZA = lv_CVIDRZA
DOCTAB = lv_DOCTAB
DRZAO = lv_DRZAO
RECTAB = lv_RECTAB ).
Links to Related Class(s)
DIST_MAI...Full list of available SAP object classes
Search for further information about these or an SAP related objects