C_BusSolnOrdOutputParam

DDL: C_BUSSOLNORDOUTPUTPARAM Type: view CONSUMPTION

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)

SourceAliasJoin Type
I_ServiceDocument I_ServiceDocument from

Associations (1)

CardinalityTargetAliasCondition
[0..1] E_ServiceDocument _ServiceDocumentExt $projection.ServiceObjectType = _ServiceDocumentExt.ServiceCategory and $projection.ServiceDocument = _ServiceDocumentExt.ServiceOrder

Annotations (10)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/