UPDATE_BUFFER_POST_UNPAID_DUE SAP Method Post new due lines for not yet paid lines
Below is documentation, parameters and attributes of ABAP Method UPDATE_BUFFER_POST_UNPAID_DUE within SAP class CACS00_CL_DOC_BUFFER. 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 CACS00_CL_DOC_BUFFER 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 UPDATE_BUFFER_POST_UNPAID_DUE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method UPDATE_BUFFER_POST_UNPAID_DUE
.| Name | Type | Data Type | Description | Default Value |
| IS_REVERSE_DOCHDM | Importing | TYPE CACS00_S_DOCHDM | Commission Document Header | |
| IT_ALL_UNPAID_DOCSEM | Importing | TYPE CACS00_TT_DOCSEM | Table Type Commission Document, Settlement (Meta Object) | |
| IT_UNPAID_DOCSEM_TO_POST | Importing | TYPE CACS00_TT_DOCSEM | Table Type Commission Document, Settlement (Meta Object) | |
| CT_POSMAP | Changing | TYPE CACS_TT_POSMAP | Table Type of Line Line That Was Reset of a Resetting Line | |
| CV_NEXT_POS_OFFSET | Changing | TYPE SYTABIX | Index of Internal Tables |
Exceptions of Method UPDATE_BUFFER_POST_UNPAID_DUE
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 CACS00_CL_DOC_BUFFER.
DATA: lv_CT_POSMAP TYPE CACS_TT_POSMAP,
lv_CV_NEXT_POS_OFFSET TYPE SYTABIX,
lv_IS_REVERSE_DOCHDM TYPE CACS00_S_DOCHDM,
lv_IT_ALL_UNPAID_DOCSEM TYPE CACS00_TT_DOCSEM,
lv_IT_UNPAID_DOCSEM_TO_POST TYPE CACS00_TT_DOCSEM,
lv_other TYPE c.
CALL METHOD lo_class=>UPDATE_BUFFER_POST_UNPAID_DUE(
EXPORTING
IS_REVERSE_DOCHDM = lv_IS_REVERSE_DOCHDM
IT_ALL_UNPAID_DOCSEM = lv_IT_ALL_UNPAID_DOCSEM
IT_UNPAID_DOCSEM_TO_POST = lv_IT_UNPAID_DOCSEM_TO_POST
CHANGING
CT_POSMAP = lv_CT_POSMAP
CV_NEXT_POS_OFFSET = lv_CV_NEXT_POS_OFFSET ).
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