C_BusSolnOrdOutputParam
Solution Order Output Parameter Determination
C_BusSolnOrdOutputParam is a Consumption CDS View that provides data about "Solution Order Output Parameter Determination" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocument) and exposes 12 fields with key fields ServiceDocument, ServiceObjectType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ServiceDocument | I_ServiceDocument | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | E_ServiceDocument | _ServiceDocumentExt | $projection.ServiceObjectType = _ServiceDocumentExt.ServiceCategory and $projection.ServiceDocument = _ServiceDocumentExt.ServiceOrder |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CBSOOMPARAM | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| VDM.viewType | #CONSUMPTION | view | |
| EndUserText.label | Solution Order Output Parameter Determination | view |
Fields (12)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceDocument | ServiceDocument | ||
| KEY | ServiceObjectType | ServiceObjectType | ||
| ServiceDocumentType | ServiceDocumentType | |||
| SalesOrganization | SalesOrganization | |||
| DistributionChannel | DistributionChannel | |||
| Division | Division | |||
| ServiceDocumentHasError | ServiceDocumentHasError | |||
| ServiceDocumentIsRejected | ServiceDocumentIsRejected | |||
| ServiceDocumentIsReleased | ServiceDocumentIsReleased | |||
| ServiceDocumentIsOpen | ServiceDocumentIsOpen | |||
| CompanyCode | _SalesOrganization | CompanyCode | ||
| _ServiceObjType | _ServiceObjType |
@AbapCatalog: {
sqlViewName: 'CBSOOMPARAM',
compiler.compareFilter: true,
preserveKey: true
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl: {
authorizationCheck: #NOT_REQUIRED,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel.usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #B,
sizeCategory: #L
}
@VDM: {
viewType: #CONSUMPTION
}
@EndUserText.label: 'Solution Order Output Parameter Determination'
define view C_BusSolnOrdOutputParam
as select from I_ServiceDocument
association [0..1] to E_ServiceDocument as _ServiceDocumentExt on $projection.ServiceObjectType = _ServiceDocumentExt.ServiceCategory
and $projection.ServiceDocument = _ServiceDocumentExt.ServiceOrder
{
key ServiceDocument,
@ObjectModel.foreignKey.association: '_ServiceObjType'
key ServiceObjectType,
ServiceDocumentType,
// _SalesOrganization.CompanyCode,
SalesOrganization,
DistributionChannel,
Division,
ServiceDocumentHasError,
ServiceDocumentIsRejected,
ServiceDocumentIsReleased,
ServiceDocumentIsOpen,
// Parameter that can be configured in BRFplus
_SalesOrganization.CompanyCode,
// Associations
_ServiceObjType
}
where
ServiceObjectType = 'BUS2000172'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SALESORGANIZATION",
"I_SERVICEDOCUMENT"
],
"ASSOCIATED":
[
"E_SERVICEDOCUMENT",
"I_CUSTMGMTBUSOBJTYPE"
],
"BASE":
[
"I_SERVICEDOCUMENT"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA