All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sap.cloud.sdk.s4hana.datamodel.odata.services.GeneralLedgerAccountService Maven / Gradle / Ivy

/*
 * Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved.
 */

package com.sap.cloud.sdk.s4hana.datamodel.odata.services;

import javax.annotation.Nonnull;

import com.sap.cloud.sdk.s4hana.datamodel.odata.helper.batch.BatchService;
import com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.generalledgeraccount.GLAccountInChartOfAccountsByKeyFluentHelper;
import com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.generalledgeraccount.GLAccountInChartOfAccountsFluentHelper;
import com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.generalledgeraccount.GLAccountTextByKeyFluentHelper;
import com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.generalledgeraccount.GLAccountTextFluentHelper;
import com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.generalledgeraccount.batch.GeneralLedgerAccountServiceBatch;

/**
 * 

* This service enables you to read G/L account master data in an API call. It is based on the OData protocol, and can * be consumed in Fiori apps and on other user interfaces. *

*

* Business * Documentation *

*

* Reference: SAP * API Business Hub *

*

Details:

* * * * * * * * * * * * * * * * * *
OData Service:API_GLACCOUNTINCHARTOFACCOUNTS_SRV
API Version:1
Communication Scenario:SAP Business Objects Cloud for Planning Integration (SAP_COM_0087)
Scope Items:oData Integration with SAP Business Objects Cloud for * Planning (1YB)
* */ public interface GeneralLedgerAccountService extends BatchService { /** * If no other path was provided via the {@link #withServicePath(String)} method, this is the default service path * used to access the endpoint. * */ String DEFAULT_SERVICE_PATH = "/sap/opu/odata/sap/API_GLACCOUNTINCHARTOFACCOUNTS_SRV"; /** * Overrides the default service path and returns a new service instance with the specified service path. Also * adjusts the respective entity URLs. * * @param servicePath * Service path that will override the default. * @return A new service instance with the specified service path. */ @Nonnull GeneralLedgerAccountService withServicePath( @Nonnull final String servicePath ); /** * Fetch multiple * {@link com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.generalledgeraccount.GLAccountInChartOfAccounts * GLAccountInChartOfAccounts} entities. * * @return A fluent helper to fetch multiple * {@link com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.generalledgeraccount.GLAccountInChartOfAccounts * GLAccountInChartOfAccounts} entities. This fluent helper allows methods which modify the underlying query * to be called before executing the query itself. To perform execution, call the * {@link com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.generalledgeraccount.GLAccountInChartOfAccountsFluentHelper#execute * execute} method on the fluent helper object. */ @Nonnull GLAccountInChartOfAccountsFluentHelper getAllGLAccountInChartOfAccounts(); /** * Fetch a single * {@link com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.generalledgeraccount.GLAccountInChartOfAccounts * GLAccountInChartOfAccounts} entity using key fields. * * @param gLAccount * The G/L account number identifies the G/L account in a chart of accounts. *

* Constraints: Not nullable, Maximum length: 10 *

* @param chartOfAccounts * Key that uniquely identifies a chart of accounts. *

* Constraints: Not nullable, Maximum length: 4 *

* @return A fluent helper to fetch a single * {@link com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.generalledgeraccount.GLAccountInChartOfAccounts * GLAccountInChartOfAccounts} entity using key fields. This fluent helper allows methods which modify the * underlying query to be called before executing the query itself. To perform execution, call the * {@link com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.generalledgeraccount.GLAccountInChartOfAccountsByKeyFluentHelper#execute * execute} method on the fluent helper object. */ @Nonnull GLAccountInChartOfAccountsByKeyFluentHelper getGLAccountInChartOfAccountsByKey( final String chartOfAccounts, final String gLAccount ); /** * Fetch multiple {@link com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.generalledgeraccount.GLAccountText * GLAccountText} entities. * * @return A fluent helper to fetch multiple * {@link com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.generalledgeraccount.GLAccountText * GLAccountText} entities. This fluent helper allows methods which modify the underlying query to be called * before executing the query itself. To perform execution, call the * {@link com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.generalledgeraccount.GLAccountTextFluentHelper#execute * execute} method on the fluent helper object. */ @Nonnull GLAccountTextFluentHelper getAllGLAccountText(); /** * Fetch a single {@link com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.generalledgeraccount.GLAccountText * GLAccountText} entity using key fields. * * @param gLAccount * The G/L account number identifies the G/L account in a chart of accounts. *

* Constraints: Not nullable, Maximum length: 10 *

* @param chartOfAccounts * Key that uniquely identifies a chart of accounts. *

* Constraints: Not nullable, Maximum length: 4 *

* @param language * The language key indicates *

* Constraints: Not nullable, Maximum length: 2 *

* @return A fluent helper to fetch a single * {@link com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.generalledgeraccount.GLAccountText * GLAccountText} entity using key fields. This fluent helper allows methods which modify the underlying * query to be called before executing the query itself. To perform execution, call the * {@link com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.generalledgeraccount.GLAccountTextByKeyFluentHelper#execute * execute} method on the fluent helper object. */ @Nonnull GLAccountTextByKeyFluentHelper getGLAccountTextByKey( final String chartOfAccounts, final String gLAccount, final String language ); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy