R_BusinessPartRoleDraft

DDL: R_BUSINESSPARTROLEDRAFT Type: view_entity BASIC

BusinessPartner Role-Draft

R_BusinessPartRoleDraft is a Basic CDS View that provides data about "BusinessPartner Role-Draft" in SAP S/4HANA. It reads from 1 data source (bupa_role_d_2) and exposes 27 fields with key fields BusinessPartner, BusinessPartnerRole, DraftUUID.

Data Sources (1)

SourceAliasJoin Type
bupa_role_d_2 bupa_role_d_2 from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label BusinessPartner Role-Draft view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (27)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner businesspartner Issuing Authority
KEY BusinessPartnerRole businesspartnerrole BP Role
KEY DraftUUID draftuuid UUID
ParentDraftUUID parentdraftuuid NodeID
BusinessPartnerRoleForEdit businesspartnerroleforedit BP Role
ValidFrom validfrom Vers.Valid From
ValidTo validto Vers.Valid To
BPHasActiveEntity bphasactiveentity Is active
AuthorizationGroup authorizationgroup AuthorizGroup
IsBusinessPurposeCompleted isbusinesspurposecompleted Purpose Completed
DraftEntityCreationDateTime draftentitycreationdatetime Draft Created On
DraftEntityLastChangeDateTime draftentitylastchangedatetime Draft Last Changed On
DraftAdministrativeDataUUID draftadministrativedatauuid UUID
DraftEntityOperationCode draftentityoperationcode Draft - Operation Code
DataControllerSet datacontrollerset Data Ctrlr. Set
DataController1 datacontroller1 Data Controller
DataController2 datacontroller2 Data Controller
DataController3 datacontroller3 Data Controller
DataController4 datacontroller4 Data Controller
DataController5 datacontroller5 Data Controller
DataController6 datacontroller6 Data Controller
DataController7 datacontroller7 Data Controller
DataController8 datacontroller8 Data Controller
DataController9 datacontroller9 Data Controller
DataController10 datacontroller10 Data Controller
HasActiveEntity hasactiveentity TRUE
DraftFieldChanges draftfieldchanges Field Changes

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view R_BusinessPartRoleDraft.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW R_BusinessPartRoleDraft AS
SELECT
  BusinessPartner,
  BusinessPartnerRole,
  DraftUUID,
  ParentDraftUUID,
  BusinessPartnerRoleForEdit,
  ValidFrom,
  ValidTo,
  BPHasActiveEntity,
  AuthorizationGroup,
  IsBusinessPurposeCompleted,
  DraftEntityCreationDateTime,
  DraftEntityLastChangeDateTime,
  DraftAdministrativeDataUUID,
  DraftEntityOperationCode,
  DataControllerSet,
  DataController1,
  DataController2,
  DataController3,
  DataController4,
  DataController5,
  DataController6,
  DataController7,
  DataController8,
  DataController9,
  DataController10,
  HasActiveEntity,
  DraftFieldChanges
FROM bupa_role_d_2
;