public class BillOfMaterialUsage extends VdmEntity<BillOfMaterialUsage>
Original entity name from the Odata EDM: A_BillOfMaterialUsageType
Modifier and Type | Class and Description |
---|---|
static class |
BillOfMaterialUsage.BillOfMaterialUsageBuilder
Helper class to allow for fluent creation of BillOfMaterialUsage instances.
|
Modifier and Type | Field and Description |
---|---|
static BillOfMaterialUsageSelectable |
ALL_FIELDS
Selector for all available fields of BillOfMaterialUsage.
|
static BillOfMaterialUsageField<String> |
BILL_OF_MATERIAL_VARIANT_USAGE
Use with available fluent helpers to apply the BillOfMaterialVariantUsage field to query operations.
|
static BillOfMaterialUsageField<String> |
BILL_OF_MATERIAL_VARIANT_USAGE_DESC
Use with available fluent helpers to apply the BillOfMaterialVariantUsageDesc field to query operations.
|
static BillOfMaterialUsageOneToOneLink<BillOfMaterialUsageText> |
TO_BILL_OF_MATERIAL_USAGE_TEXT
Use with available fluent helpers to apply the to_BillOfMaterialUsageText navigation property to query
operations.
|
changedOriginalFields
Constructor and Description |
---|
BillOfMaterialUsage() |
BillOfMaterialUsage(String billOfMaterialVariantUsage,
String billOfMaterialVariantUsageDesc,
BillOfMaterialUsageText toBillOfMaterialUsageText) |
Modifier and Type | Method and Description |
---|---|
void |
attachToService(String servicePath,
HttpDestinationProperties destination)
Sets the service path and destination for the fetch commands of this entity.
|
static BillOfMaterialUsage.BillOfMaterialUsageBuilder |
builder() |
protected boolean |
canEqual(Object other) |
boolean |
equals(Object o) |
BillOfMaterialUsageText |
fetchBillOfMaterialUsageText()
Fetches the BillOfMaterialUsageText entity (one to one) associated with this entity.
|
static <T> BillOfMaterialUsageField<T> |
field(String fieldName,
Class<T> fieldType)
Use with available fluent helpers to apply an extension field to query operations.
|
static <T,DomainT> |
field(String fieldName,
TypeConverter<T,DomainT> typeConverter)
Use with available fluent helpers to apply an extension field to query operations.
|
protected void |
fromMap(Map<String,Object> inputValues) |
io.vavr.control.Option<BillOfMaterialUsageText> |
getBillOfMaterialUsageTextIfPresent()
Retrieval of associated BillOfMaterialUsageText entity (one to one).
|
BillOfMaterialUsageText |
getBillOfMaterialUsageTextOrFetch()
Retrieval of associated BillOfMaterialUsageText entity (one to one).
|
String |
getBillOfMaterialVariantUsage()
(Key Field) Constraints: Not nullable, Maximum length: 1
|
String |
getBillOfMaterialVariantUsageDesc()
Constraints: Not nullable, Maximum length: 30
|
protected String |
getDefaultServicePath() |
HttpDestinationProperties |
getDestinationForFetch()
Convienence field for reusing the same destination with multiple queries (e.g.
|
protected String |
getEntityCollection() |
protected Map<String,Object> |
getKey() |
Class<BillOfMaterialUsage> |
getType() |
int |
hashCode() |
void |
setBillOfMaterialUsageText(BillOfMaterialUsageText value)
Overwrites the associated BillOfMaterialUsageText entity for the loaded navigation property
to_BillOfMaterialUsageText.
|
void |
setBillOfMaterialVariantUsage(String billOfMaterialVariantUsage)
(Key Field) Constraints: Not nullable, Maximum length: 1
|
void |
setBillOfMaterialVariantUsageDesc(String billOfMaterialVariantUsageDesc)
Constraints: Not nullable, Maximum length: 30
|
protected void |
setServicePathForFetch(String servicePathForFetch)
The service path only used for the fetch commands of this entity.
|
protected Map<String,Object> |
toMapOfFields() |
protected Map<String,Object> |
toMapOfNavigationProperties() |
String |
toString() |
getServicePathForFetch, getVersionIdentifier, setDestinationForFetch, setVersionIdentifier
getChangedFields, getCustomField, getCustomField, getCustomFieldNames, getCustomFields, getSetOfCustomFields, getSetOfFields, getSetOfNavigationProperties, hasCustomField, hasCustomField, rememberChangedField, resetChangedFields, setCustomField, setCustomField, toMap, toMapOfCustomFields
public static final BillOfMaterialUsageSelectable ALL_FIELDS
public static final BillOfMaterialUsageField<String> BILL_OF_MATERIAL_VARIANT_USAGE
public static final BillOfMaterialUsageField<String> BILL_OF_MATERIAL_VARIANT_USAGE_DESC
public static final BillOfMaterialUsageOneToOneLink<BillOfMaterialUsageText> TO_BILL_OF_MATERIAL_USAGE_TEXT
@Nonnull public Class<BillOfMaterialUsage> getType()
getType
in class VdmObject<BillOfMaterialUsage>
public void setBillOfMaterialVariantUsage(@Nullable String billOfMaterialVariantUsage)
Original property name from the Odata EDM: BillOfMaterialVariantUsage
By setting various indicators, you can define the maximum configuration of the item status and define whether an item must be or cannot be processed in a particular area (such as production).A material is used in the areas production and costing in a company. For each area, you maintain a separate BOM with different items:Production BOM:This BOM contains items that are relevant to production. These items are copied to the planned order. Dependent requirements are generated for them, and they are copied to the production order.Costing BOM:This BOM contains items that are relevant to determining the material costs of a product.When you calculate production costs using a quantity structure, the system automatically determines the BOM and all the BOM items that are relevant to costing, in order to calculate manufacturing costs.
billOfMaterialVariantUsage
- This key defines the area (such as engineering/design or production) where a BOM can be used.public void setBillOfMaterialVariantUsageDesc(@Nullable String billOfMaterialVariantUsageDesc)
Original property name from the Odata EDM: BillOfMaterialVariantUsageDesc
billOfMaterialVariantUsageDesc
- This text describes the key for the BOM usage, which represents the specific company organizational
area in which the BOM is used (eg. engineering or production).protected String getEntityCollection()
getEntityCollection
in class VdmEntity<BillOfMaterialUsage>
@Nonnull protected Map<String,Object> getKey()
getKey
in class VdmObject<BillOfMaterialUsage>
@Nonnull protected Map<String,Object> toMapOfFields()
toMapOfFields
in class VdmObject<BillOfMaterialUsage>
protected void fromMap(Map<String,Object> inputValues)
fromMap
in class VdmObject<BillOfMaterialUsage>
@Nonnull public static <T> BillOfMaterialUsageField<T> field(@Nonnull String fieldName, @Nonnull Class<T> fieldType)
T
- The type of the extension field when performing value comparisons.fieldName
- The name of the extension field as returned by the OData service.fieldType
- The Java type to use for the extension field when performing value comparisons.@Nonnull public static <T,DomainT> BillOfMaterialUsageField<T> field(@Nonnull String fieldName, @Nonnull TypeConverter<T,DomainT> typeConverter)
T
- The type of the extension field when performing value comparisons.DomainT
- The type of the extension field as returned by the OData service.typeConverter
- A TypeConverterfieldName
- The name of the extension field as returned by the OData service.@Nullable public HttpDestinationProperties getDestinationForFetch()
VdmEntity
getDestinationForFetch
in class VdmEntity<BillOfMaterialUsage>
protected void setServicePathForFetch(@Nullable String servicePathForFetch)
VdmEntity
Note: Use with caution, as this can easily break the fetch call on this entity. See the interface of the corresponding service for the default service path.
setServicePathForFetch
in class VdmEntity<BillOfMaterialUsage>
public void attachToService(@Nullable String servicePath, @Nonnull HttpDestinationProperties destination)
VdmEntity
Note: Use with caution, as this can easily break the fetch calls on this entity. See the interface of the corresponding service for the default service path.
attachToService
in class VdmEntity<BillOfMaterialUsage>
servicePath
- Optional parameter. New service path to apply to this entity and any associated entities that were
previously fetched. If a null value is provided and the service path has never been set, then the
service path will be set to the default defined in the corresponding service interface.destination
- New destination to apply to this entity and any associated entities that were previously fetched.protected String getDefaultServicePath()
getDefaultServicePath
in class VdmEntity<BillOfMaterialUsage>
@Nonnull protected Map<String,Object> toMapOfNavigationProperties()
toMapOfNavigationProperties
in class VdmObject<BillOfMaterialUsage>
@Nullable public BillOfMaterialUsageText fetchBillOfMaterialUsageText() throws com.sap.cloud.sdk.odatav2.connectivity.ODataException
Please note: This method will not cache or persist the query results.
null
if an entity is not
associated.com.sap.cloud.sdk.odatav2.connectivity.ODataException
- If the entity is unmanaged, i.e. it has not been retrieved using the OData VDM's services and
therefore has no ERP configuration context assigned. An entity is managed if it has been either
retrieved using the VDM's services or returned from the VDM's services as the result of a CREATE or
UPDATE call.@Nullable public BillOfMaterialUsageText getBillOfMaterialUsageTextOrFetch() throws com.sap.cloud.sdk.odatav2.connectivity.ODataException
If the navigation property to_BillOfMaterialUsageText of a queried BillOfMaterialUsage is operated lazily, an ODataException can be thrown in case of an OData query error.
Please note: Lazy loading of OData entity associations is the process of asynchronous retrieval and persisting of items from a navigation property. If a lazy property is requested by the application for the first time and it has not yet been loaded, an OData query will be run in order to load the missing information and its result will get cached for future invocations.
com.sap.cloud.sdk.odatav2.connectivity.ODataException
- If the entity is unmanaged, i.e. it has not been retrieved using the OData VDM's services and
therefore has no ERP configuration context assigned. An entity is managed if it has been either
retrieved using the VDM's services or returned from the VDM's services as the result of a CREATE or
UPDATE call.@Nonnull public io.vavr.control.Option<BillOfMaterialUsageText> getBillOfMaterialUsageTextIfPresent()
If the navigation property for an entity BillOfMaterialUsage has not been resolved yet, this method will
not query further information. Instead its Option
result state will be empty
.
Option
with result
state empty
is returned.public void setBillOfMaterialUsageText(BillOfMaterialUsageText value)
value
- New BillOfMaterialUsageText entity.public static BillOfMaterialUsage.BillOfMaterialUsageBuilder builder()
@Nullable public String getBillOfMaterialVariantUsage()
Original property name from the Odata EDM: BillOfMaterialVariantUsage
By setting various indicators, you can define the maximum configuration of the item status and define whether an item must be or cannot be processed in a particular area (such as production).A material is used in the areas production and costing in a company. For each area, you maintain a separate BOM with different items:Production BOM:This BOM contains items that are relevant to production. These items are copied to the planned order. Dependent requirements are generated for them, and they are copied to the production order.Costing BOM:This BOM contains items that are relevant to determining the material costs of a product.When you calculate production costs using a quantity structure, the system automatically determines the BOM and all the BOM items that are relevant to costing, in order to calculate manufacturing costs.
@Nullable public String getBillOfMaterialVariantUsageDesc()
Original property name from the Odata EDM: BillOfMaterialVariantUsageDesc
public String toString()
toString
in class VdmObject<BillOfMaterialUsage>
public boolean equals(Object o)
equals
in class VdmObject<BillOfMaterialUsage>
protected boolean canEqual(Object other)
canEqual
in class VdmObject<BillOfMaterialUsage>
public int hashCode()
hashCode
in class VdmObject<BillOfMaterialUsage>
Copyright © 2019 SAP SE. All rights reserved.