
com.sap.cloud.sdk.s4hana.datamodel.bapi.structures.ProfitCenterLanguage 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.structures;
import javax.annotation.Nullable;
import com.sap.cloud.sdk.result.ElementName;
import com.sap.cloud.sdk.s4hana.datamodel.bapi.types.LanguageKey;
import com.sap.cloud.sdk.s4hana.datamodel.bapi.types.TwoCharacterSapLanguageCode;
import lombok.Builder;
import lombok.Data;
/**
* BAPI: Profit Center Language
*
* Structure: BAPI0015_10
*
*
*/
@Builder
@Data
public class ProfitCenterLanguage {
/**
* Field name: LANGU
*
* Type element: SPRAS
* Domain name: SPRAS
* Internal type: LANG
* Description: Language Key
* Max length: 1
*
*
*/
@ElementName("LANGU")
@Nullable
private LanguageKey langu;
/**
* Field name: LANGU_ISO
*
* Type element: LAISO
* Domain name: LAISO
* Internal type: CHAR
* Description: 2-Character SAP Language Code
* Max length: 2
*
*
*/
@ElementName("LANGU_ISO")
@Nullable
private TwoCharacterSapLanguageCode languIso;
public void validate()
throws IllegalArgumentException
{
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy