I_InvgCsMPersonLogInStaff

DDL: I_INVGCSMPERSONLOGINSTAFF SQL: IICMBPLOGINSTF Type: view COMPOSITE

ICM Business Partner Logged In Staff

I_InvgCsMPersonLogInStaff is a Composite CDS View that provides data about "ICM Business Partner Logged In Staff" in SAP S/4HANA. It reads from 1 data source (I_BPRelationship) and exposes 12 fields with key field BusinessPartnerCompany. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_BPRelationship I_BPRelationship from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_InvgCsMEmployee _Employee $projection.BusinessPartnerPerson = _Employee.BusinessPartner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IICMBPLOGINSTF view
VDM.viewType #COMPOSITE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label ICM Business Partner Logged In Staff view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.personalData.blocking #NOT_REQUIRED view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerCompany BusinessPartnerCompany Busn. Partner
RelationshipNumber RelationshipNumber BP Rel. Number
BusinessPartnerPerson BusinessPartnerPerson Busn. Partner
ValidityEndDate ValidityEndDate ValidTo
ValidityStartDate ValidityStartDate Validity Start Date
IsStandardRelationship IsStandardRelationship Standard
RelationshipCategory RelationshipCategory Relationsh.Cat.
BPRelationshipType BPRelationshipType RelationshpType
BusinessPartner _Employee BusinessPartner Issuing Authority
BusinessUser _Employee BusinessUser
_BusinessPartnerCompany _BusinessPartnerCompany
_BusinessPartnerPerson _BusinessPartnerPerson

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 I_InvgCsMPersonLogInStaff.
-- 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: IICMBPLOGINSTF

CREATE VIEW I_InvgCsMPersonLogInStaff AS
SELECT
  BusinessPartnerCompany,
  RelationshipNumber,
  BusinessPartnerPerson,
  ValidityEndDate,
  ValidityStartDate,
  IsStandardRelationship,
  RelationshipCategory,
  BPRelationshipType,
  _Employee.BusinessPartner AS BusinessPartner,
  _Employee.BusinessUser AS BusinessUser
FROM I_BPRelationship
LEFT OUTER JOIN I_InvgCsMEmployee AS _Employee ON BusinessPartnerPerson = _Employee.BusinessPartner  -- association [1..1]
;