C_CollabnApplFrtOrdRespPersn

DDL: C_COLLABNAPPLFRTORDRESPPERSN SQL: CCOLLABRESPPRSN Type: view CONSUMPTION

Freight Order Responsible Person

C_CollabnApplFrtOrdRespPersn is a Consumption CDS View that provides data about "Freight Order Responsible Person" in SAP S/4HANA. It reads from 1 data source (I_BusinessUserBasic) and exposes 6 fields with key field BusinessPartner.

Data Sources (1)

SourceAliasJoin Type
I_BusinessUserBasic I_BusinessUserBasic from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CCOLLABRESPPRSN view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.representativeKey BusinessPartner view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Freight Order Responsible Person view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner BusinessPartner Issuing Authority
TranspOrdResponsiblePerson UserID User Name
IsBusinessPurposeCompleted IsBusinessPurposeCompleted Purpose Completed
PersonFullName PersonFullName Full Name
EmailAddress _WorkplaceAddress DefaultEmailAddress
PhoneNumber _WorkplaceAddress NormalizedPhoneNumber

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 C_CollabnApplFrtOrdRespPersn.
-- 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.
-- SQL view name: CCOLLABRESPPRSN

CREATE VIEW C_CollabnApplFrtOrdRespPersn AS
SELECT
  BusinessPartner,
  UserID AS TranspOrdResponsiblePerson,
  IsBusinessPurposeCompleted,
  PersonFullName,
  _WorkplaceAddress.DefaultEmailAddress AS EmailAddress,
  _WorkplaceAddress.NormalizedPhoneNumber AS PhoneNumber
FROM I_BusinessUserBasic
;