C_CollabnApplMngCarrInvcNote

DDL: C_COLLABNAPPLMNGCARRINVCNOTE Type: view_entity CONSUMPTION

Carrier Invoice Notes

C_CollabnApplMngCarrInvcNote is a Consumption CDS View that provides data about "Carrier Invoice Notes" in SAP S/4HANA. It reads from 1 data source (I_TextCollection) and exposes 15 fields with key field TextCollectionContentUUID. It has 1 association to related views. It is exposed through 1 OData service (UI_COLLABNAPPLFRTINVC). It is used in 1 Fiori application: Manage Freight Invoices.

Data Sources (1)

SourceAliasJoin Type
I_TextCollection TextCollectionRoot from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_User _TextCollectionTextCrtedByUser $projection.TextCollectionTextCrtedByUser = _TextCollectionTextCrtedByUser.UserID

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
EndUserText.label Carrier Invoice Notes view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #CONSUMPTION view

OData Services (1)

ServiceBindingVersionContractRelease
UI_COLLABNAPPLFRTINVC UI_COLLABNAPPLFRTINVC V2 C1 NOT_RELEASED

Fiori Apps (1)

App IDApp NameTypeDescription
F7106 Manage Freight Invoices Transactional Manage Freight Invoices is a collaboration application where service provider representatives of a carrier organization manage invoices submitted to the shipper.

Manage Freight Invoices

Business Role: Logistics Service Provider Representative

With this app, as a carrier or a logistic service provider, you can manage invoices that you've submitted to the shippers.

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY TextCollectionContentUUID TextCollectionContent TextCollectionContentUUID
TextCollectionTypeUUID TextCollectionType TextCollectionTypeUUID
TextCollectionUUID I_TextCollection TextCollectionUUID UUID
TextCollectionSchema I_TextCollection TextCollectionSchema Text Schema
TextCollectionType TextCollectionType TextCollectionType
HostDocumentBusinessObjectUUID I_TextCollection HostDocumentBusinessObjectUUID Business Object
HostDocumentBusObjNodeUUID I_TextCollection HostDocumentBusObjNodeUUID Node
HostDocumentUUID I_TextCollection HostDocumentUUID UUID
TextCollectionTextCrtedByUser TextCollectionType TextCollectionTextCrtedByUser
UserDescription _TextCollectionTextCrtedByUser UserDescription Full Name
TextCollectionTextCrtedDteTime TextCollectionType TextCollectionTextCrtedDteTime
TextCollectionTextChgdDateTime TextCollectionType TextCollectionTextChgdDateTime
Language TextCollectionType Language Report Text Language
TextCollectionContentText TextCollectionContent TextCollectionContentText
_CollabnApplCarrierInvoice _CollabnApplCarrierInvoice

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_CollabnApplMngCarrInvcNote.
-- 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 C_CollabnApplMngCarrInvcNote AS
SELECT
  TextCollectionContent.TextCollectionContentUUID AS TextCollectionContentUUID,
  TextCollectionType.TextCollectionTypeUUID AS TextCollectionTypeUUID,
  TextCollectionRoot.TextCollectionUUID AS TextCollectionUUID,
  TextCollectionRoot.TextCollectionSchema AS TextCollectionSchema,
  TextCollectionType.TextCollectionType AS TextCollectionType,
  TextCollectionRoot.HostDocumentBusinessObjectUUID AS HostDocumentBusinessObjectUUID,
  TextCollectionRoot.HostDocumentBusObjNodeUUID AS HostDocumentBusObjNodeUUID,
  TextCollectionRoot.HostDocumentUUID AS HostDocumentUUID,
  TextCollectionType.TextCollectionTextCrtedByUser AS TextCollectionTextCrtedByUser,
  _TextCollectionTextCrtedByUser.UserDescription AS UserDescription,
  TextCollectionType.TextCollectionTextCrtedDteTime AS TextCollectionTextCrtedDteTime,
  TextCollectionType.TextCollectionTextChgdDateTime AS TextCollectionTextChgdDateTime,
  TextCollectionType.Language AS Language,
  TextCollectionContent.TextCollectionContentText AS TextCollectionContentText
FROM I_TextCollection AS TextCollectionRoot
LEFT OUTER JOIN I_User AS _TextCollectionTextCrtedByUser ON TextCollectionTextCrtedByUser = _TextCollectionTextCrtedByUser.UserID  -- association [0..1]
;