P_InhReprItmLogsErrFndn

DDL: P_INHREPRITMLOGSERRFNDN Type: view_entity COMPOSITE

P_InhReprItmLogsErrFndn is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_InHouseRepairItem) and exposes 31 fields with key fields InHouseRepair, InHouseRepairItem.

Data Sources (1)

SourceAliasJoin Type
I_InHouseRepairItem InHouseRepairItem from

Annotations (4)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (31)

KeyFieldSource TableSource FieldDescription
KEY InHouseRepair I_InHouseRepairItem InHouseRepair
KEY InHouseRepairItem I_InHouseRepairItem InHouseRepairItem
InHouseRepairItemUUID I_InHouseRepairItem InHouseRepairItemUUID Push ItemGU
InHouseRepairItemCharUUID I_InHouseRepairItem InHouseRepairItemCharUUID
CreationDateTime I_InHouseRepairItem CreationDateTime Timestamp
CreatedByUser I_InHouseRepairItem CreatedByUser User Name
LastChangeDateTime I_InHouseRepairItem LastChangeDateTime Timestamp
LastChangedByUser I_InHouseRepairItem LastChangedByUser User Name
InhRepairItemObjectType I_InHouseRepairItem InhRepairItemObjectType Object Type
InhRepairItemAvailyStatus I_InHouseRepairItem InhRepairItemAvailyStatus Availability
Product I_InHouseRepairItem Product Product Sold
SerialNumber I_InHouseRepairItem SerialNumber Serial Number
SoldToParty
InhRepairItemStatus I_InHouseRepairItem InhRepairItemStatus
Quantity I_InHouseRepairItem Quantity Value
QuantityUnit I_InHouseRepairItem QuantityUnit Unit of measure
BaseUnit
Plant I_InHouseRepairItem Plant Valuation Area
StorageLocation I_InHouseRepairItem StorageLocation StorageLocation
InhRepairItemSpecialStockType I_InHouseRepairItem InhRepairItemSpecialStockType
InhReprItmInvtryUsabilityCode I_InHouseRepairItem InhReprItmInvtryUsabilityCode
DistributionChannel I_InHouseRepairItem DistributionChannel RefDistCh-Cust/Mat.
Division I_InHouseRepairItem Division Internal Division ID
InhRepairType I_InHouseRepairItem InhRepairType Type of Data
RespEmployeeBusinessPartnerId I_InHouseRepairItem RespEmployeeBusinessPartnerId Employee Resp.
SalesGroup I_InHouseRepairItem SalesGroup Sales Group
SalesGroupOrgUnitID I_InHouseRepairItem SalesGroupOrgUnitID
SalesOffice I_InHouseRepairItem SalesOffice Sales Office
SalesOfficeOrgUnitID I_InHouseRepairItem SalesOfficeOrgUnitID
SalesOrganization I_InHouseRepairItem SalesOrganization Sales Organization
SalesOrganizationOrgUnitID I_InHouseRepairItem SalesOrganizationOrgUnitID

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 P_InhReprItmLogsErrFndn.
-- 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 P_InhReprItmLogsErrFndn AS
SELECT
  InHouseRepairItem.InHouseRepair AS InHouseRepair,
  InHouseRepairItem.InHouseRepairItem AS InHouseRepairItem,
  InHouseRepairItem.InHouseRepairItemUUID AS InHouseRepairItemUUID,
  InHouseRepairItem.InHouseRepairItemCharUUID AS InHouseRepairItemCharUUID,
  InHouseRepairItem.CreationDateTime AS CreationDateTime,
  InHouseRepairItem.CreatedByUser AS CreatedByUser,
  InHouseRepairItem.LastChangeDateTime AS LastChangeDateTime,
  InHouseRepairItem.LastChangedByUser AS LastChangedByUser,
  InHouseRepairItem.InhRepairItemObjectType AS InhRepairItemObjectType,
  InHouseRepairItem.InhRepairItemAvailyStatus AS InhRepairItemAvailyStatus,
  InHouseRepairItem.Product AS Product,
  InHouseRepairItem.SerialNumber AS SerialNumber,
  InHouseRepairItem._InHouseRepair.SoldToParty AS SoldToParty,
  InHouseRepairItem.InhRepairItemStatus AS InhRepairItemStatus,
  InHouseRepairItem.Quantity AS Quantity,
  InHouseRepairItem.QuantityUnit AS QuantityUnit,
  cast(InHouseRepairItem._Product.BaseUnit as comt_product_base_uom preserving type) AS BaseUnit,
  InHouseRepairItem.Plant AS Plant,
  InHouseRepairItem.StorageLocation AS StorageLocation,
  InHouseRepairItem.InhRepairItemSpecialStockType AS InhRepairItemSpecialStockType,
  InHouseRepairItem.InhReprItmInvtryUsabilityCode AS InhReprItmInvtryUsabilityCode,
  InHouseRepairItem.DistributionChannel AS DistributionChannel,
  InHouseRepairItem.Division AS Division,
  InHouseRepairItem.InhRepairType AS InhRepairType,
  InHouseRepairItem.RespEmployeeBusinessPartnerId AS RespEmployeeBusinessPartnerId,
  InHouseRepairItem.SalesGroup AS SalesGroup,
  InHouseRepairItem.SalesGroupOrgUnitID AS SalesGroupOrgUnitID,
  InHouseRepairItem.SalesOffice AS SalesOffice,
  InHouseRepairItem.SalesOfficeOrgUnitID AS SalesOfficeOrgUnitID,
  InHouseRepairItem.SalesOrganization AS SalesOrganization,
  InHouseRepairItem.SalesOrganizationOrgUnitID AS SalesOrganizationOrgUnitID
FROM I_InHouseRepairItem AS InHouseRepairItem
;