GET_DOCSEM_FOR_DOCUMENT SAP Method Return Settlement Items of Document
Below is documentation, parameters and attributes of ABAP Method GET_DOCSEM_FOR_DOCUMENT within SAP class CACS00_CL_DOCUMENT_DB_ITF. 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 CACS00_CL_DOCUMENT_DB_ITF 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_DOCSEM_FOR_DOCUMENT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_DOCSEM_FOR_DOCUMENT
.| Name | Type | Data Type | Description | Default Value |
| ID_DOC_ID | Importing | TYPE CACSDOCID | Document Identification | |
| ID_POST_YEAR | Importing | TYPE CACSPSTYEAR | Assignment Year of Commission Case/Document | |
| RT_DOCSEM | Returning | TYPE CACS00_TT_DOCSEM | Table Type Commission Document, Settlement (Meta Object) |
Exceptions of Method GET_DOCSEM_FOR_DOCUMENT
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO CACS00_CL_DOCUMENT_DB_ITF.
DATA: lv_ID_DOC_ID TYPE CACSDOCID,
lv_ID_POST_YEAR TYPE CACSPSTYEAR,
lv_RT_DOCSEM TYPE CACS00_TT_DOCSEM,
lv_other TYPE c.
CALL METHOD lo_class=>GET_DOCSEM_FOR_DOCUMENT(
EXPORTING
ID_DOC_ID = lv_ID_DOC_ID
ID_POST_YEAR = lv_ID_POST_YEAR
RECEIVING
RT_DOCSEM = lv_RT_DOCSEM )
"Alternate coding for Method Call with returning parameter
lv_RT_DOCSEM = lo_class=>GET_DOCSEM_FOR_DOCUMENT(
EXPORTING
ID_DOC_ID = lv_ID_DOC_ID
ID_POST_YEAR = lv_ID_POST_YEAR ).
Links to Related Class(s)
CACS00_C...Full list of available SAP object classes
Search for further information about these or an SAP related objects