
com.sap.cloud.sdk.s4hana.datamodel.bapi.services.AccountingActivityAllocationService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bapi-api Show documentation
Show all versions of bapi-api Show documentation
Generated classes of the SAP S/4HANA Virtual Data Model (VDM) for BAPIs.
The newest version!
/*
* Copyright (c) 2020 SAP SE or an SAP affiliate company. All rights reserved.
*/
package com.sap.cloud.sdk.s4hana.datamodel.bapi.services;
import com.sap.cloud.sdk.s4hana.datamodel.bapi.functions.AcctngActivityAllocCheckFunction;
import com.sap.cloud.sdk.s4hana.datamodel.bapi.functions.AcctngActivityAllocPostFunction;
import com.sap.cloud.sdk.s4hana.datamodel.bapi.structures.DocumentHeaderPostActAllocActualPostings;
import com.sap.cloud.sdk.s4hana.datamodel.bapi.structures.LineItemsActivityAllocationActualPosting;
/**
* Accounting Activity Allocation
*
* Business Object: BUS6010
*
*
* @see DefaultAccountingActivityAllocationService
*
*/
public interface AccountingActivityAllocationService {
/**
* FI/CO: Check activity allocation
*
* BAPI_ACC_ACTIVITY_ALLOC_CHECK
*
*
* @param docHeader
* Document Header Data
* @param docItems
* Line Item Data
* @return
* Invocation builder for Check
*/
AcctngActivityAllocCheckFunction check(DocumentHeaderPostActAllocActualPostings docHeader, Iterable docItems);
/**
* FI/CO: Check activity allocation
*
* BAPI_ACC_ACTIVITY_ALLOC_CHECK
*
*
* @param docHeader
* Document Header Data
* @param docItems
* Line Item Data
* @return
* Invocation builder for Check
*/
AcctngActivityAllocCheckFunction check(DocumentHeaderPostActAllocActualPostings docHeader, LineItemsActivityAllocationActualPosting... docItems);
/**
* FI/CO: Post activity allocation
*
* BAPI_ACC_ACTIVITY_ALLOC_POST
*
*
* @param docHeader
* Document Header Data
* @param docItems
* Line Item Data
* @return
* Invocation builder for Post
*/
AcctngActivityAllocPostFunction post(DocumentHeaderPostActAllocActualPostings docHeader, Iterable docItems);
/**
* FI/CO: Post activity allocation
*
* BAPI_ACC_ACTIVITY_ALLOC_POST
*
*
* @param docHeader
* Document Header Data
* @param docItems
* Line Item Data
* @return
* Invocation builder for Post
*/
AcctngActivityAllocPostFunction post(DocumentHeaderPostActAllocActualPostings docHeader, LineItemsActivityAllocationActualPosting... docItems);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy