C_ChmlCmplncReqSlsOrgTP

DDL: C_CHMLCMPLNCREQSLSORGTP Type: view CONSUMPTION Package: EHPMA_CNS_CRQ

Requested SalesOrgs of a Chemical Compliance Request

C_ChmlCmplncReqSlsOrgTP is a Consumption CDS View that provides data about "Requested SalesOrgs of a Chemical Compliance Request" in SAP S/4HANA. It reads from 1 data source (I_ChmlCmplncReqSlsOrgTP) and exposes 6 fields with key field ChmlCmplncReqSalesOrgUUID. It has 1 association to related views. It is exposed through 1 OData service (UI_PRODCMPLNCREQUEST_MANAGE). Part of development package EHPMA_CNS_CRQ.

Data Sources (1)

SourceAliasJoin Type
I_ChmlCmplncReqSlsOrgTP I_ChmlCmplncReqSlsOrgTP from

Associations (1)

CardinalityTargetAliasCondition
[1..1] C_ChmlCmplncReqProcMkt _ChmlCmplncReq $projection.ChmlCmplncRequestUUID = _ChmlCmplncReq.ChmlCmplncRequestUUID

Annotations (15)

NameValueLevelField
EndUserText.label Requested SalesOrgs of a Chemical Compliance Request view
AbapCatalog.sqlViewName CCRQVKORGTP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.transactionalProcessingDelegated true view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled false view
ObjectModel.deleteEnabled EXTERNAL_CALCULATION view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
Search.searchable true view

OData Services (1)

ServiceBindingVersionContractRelease
UI_PRODCMPLNCREQUEST_MANAGE UI_PRODCMPLNCREQUEST_MANAGE V4 C1 NOT_RELEASED

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ChmlCmplncReqSalesOrgUUID ChmlCmplncReqSalesOrgUUID
ChmlCmplncRequestUUID ChmlCmplncRequestUUID
ChmlCmplncInfoUUID _ChmlCmplncReq ChmlCmplncInfoUUID
SalesOrganizationName
ChangetypeChmlCmplncReqChgType
_ChmlCmplncReq _ChmlCmplncReq
@EndUserText.label: 'Requested SalesOrgs of a Chemical Compliance Request'

@AbapCatalog:
{
  sqlViewName: 'CCRQVKORGTP',
  compiler.compareFilter: true
}

@AccessControl:
{
  authorizationCheck: #CHECK,
  // blocking of personal data not required (user data can not be blocked and no business partner data exposed from user)

  personalData.blocking: #NOT_REQUIRED
}

@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.viewType: #CONSUMPTION

@ObjectModel:
{
  transactionalProcessingDelegated: true,
  createEnabled: true,
  updateEnabled: false,
  deleteEnabled: 'EXTERNAL_CALCULATION',
  semanticKey:  [ 'SalesOrganization' ],
  usageType:
  {
    /*Service Quality - reflects the quality of service with respect to the expected performance of the CDS view:
      #A: may be consumed within business logic for high volume transactions or background processing
      #B: may be consumed within business logic for transactions or background processing
    */
    dataClass: #MIXED,
    sizeCategory: #M,
    serviceQuality: #C
  }
}

@UI.presentationVariant : {
  sortOrder: [ {by: 'SalesOrganizationName', direction: #ASC }]
}

--Search
@Search.searchable : true

define view C_ChmlCmplncReqSlsOrgTP
  as select from I_ChmlCmplncReqSlsOrgTP

  association [1..1] to C_ChmlCmplncReqProcMkt as _ChmlCmplncReq on $projection.ChmlCmplncRequestUUID = _ChmlCmplncReq.ChmlCmplncRequestUUID
{

      @UI.hidden: true
      @ObjectModel.readOnly: true
  key ChmlCmplncReqSalesOrgUUID,

      @UI.hidden: true
      @ObjectModel.readOnly: true
      ChmlCmplncRequestUUID,

      @UI.hidden: true
      @ObjectModel.readOnly: true
      _ChmlCmplncReq.ChmlCmplncInfoUUID,

      -- Sales Organization
      @UI.hidden: true
      SalesOrganization,

      @UI.hidden: true
      @ObjectModel.readOnly: true
      @Semantics.text: true
      @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #HIGH }
      _SalesOrganization._Text[ 1: Language = $session.system_language ].SalesOrganizationName,

      --Change type
      @UI.hidden: true
      ChmlCmplncReqChgType,

      /* Associations */
      @ObjectModel.association.type:  [ #TO_COMPOSITION_ROOT, #TO_COMPOSITION_PARENT ]
      _ChmlCmplncReq
}