GET_SENDER_ID SAP Method Get Sender ID
Below is documentation, parameters and attributes of ABAP Method GET_SENDER_ID within SAP class IF_EX_HRPAYBE_DIG. 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 IF_EX_HRPAYBE_DIG 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 GET_SENDER_ID can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_SENDER_ID
.| Name | Type | Data Type | Description | Default Value |
| IR_TEMSE | Importing | TYPE REF TO CL_HR99S00_TEMSE | class for TemSe Southern Europe | |
| IS_DIMONA_FILE | Importing | TYPE PBEDI_S_DIMONA_FILE | ||
| IT_TEMSE_CONTENT | Importing | TYPE PBEDI_T_TEMSE | ||
| IV_APPL | Importing | TYPE P_APPL | Subapplication | |
| IV_CHANNEL | Importing | TYPE P12_DIDCH | Dimona Declaration Channel | |
| IV_DATE | Importing | TYPE D | ||
| IV_RUN_MODE | Importing | TYPE C | ||
| CT_ERROR | Changing | TYPE P99SF_TAB_ERROR | ||
| CV_FILE_NUMBER | Changing | TYPE P12_FLNBR | Unique number for declaration files | |
| CV_RETURN_CODE | Changing | TYPE SYSUBRC | Return Value of ABAP Statements | |
| CV_SENDER_ID | Changing | TYPE P12_SENDER | Sender identification number |
Exceptions of Method GET_SENDER_ID
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_HRPAYBE_DIG.
DATA: lv_CT_ERROR TYPE P99SF_TAB_ERROR,
lv_CV_FILE_NUMBER TYPE P12_FLNBR,
lv_CV_RETURN_CODE TYPE SYSUBRC,
lv_CV_SENDER_ID TYPE P12_SENDER,
lv_IR_TEMSE TYPE CL_HR99S00_TEMSE,
lv_IS_DIMONA_FILE TYPE PBEDI_S_DIMONA_FILE,
lv_IT_TEMSE_CONTENT TYPE PBEDI_T_TEMSE,
lv_IV_APPL TYPE P_APPL,
lv_IV_CHANNEL TYPE P12_DIDCH,
lv_IV_DATE TYPE D,
lv_IV_RUN_MODE TYPE C,
lv_other TYPE c.
CALL METHOD lo_class=>GET_SENDER_ID(
EXPORTING
IR_TEMSE = lv_IR_TEMSE
IS_DIMONA_FILE = lv_IS_DIMONA_FILE
IT_TEMSE_CONTENT = lv_IT_TEMSE_CONTENT
IV_APPL = lv_IV_APPL
IV_CHANNEL = lv_IV_CHANNEL
IV_DATE = lv_IV_DATE
IV_RUN_MODE = lv_IV_RUN_MODE
CHANGING
CT_ERROR = lv_CT_ERROR
CV_FILE_NUMBER = lv_CV_FILE_NUMBER
CV_RETURN_CODE = lv_CV_RETURN_CODE
CV_SENDER_ID = lv_CV_SENDER_ID ).
Links to Related Class(s)
IF_EX_HR...Full list of available SAP object classes
Search for further information about these or an SAP related objects