I_JITBusPartContact

DDL: I_JITBUSPARTCONTACT SQL: IJITBPCONTACT Type: view BASIC

Basic View for JIT BP Contact

I_JITBusPartContact is a Basic CDS View that provides data about "Basic View for JIT BP Contact" in SAP S/4HANA. It reads from 1 data source (but050) and exposes 9 fields with key fields RelationshipNumber, BusinessPartnerCompany, BusinessPartnerPerson, ValidityEndDate.

Data Sources (1)

SourceAliasJoin Type
but050 but050 from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IJITBPCONTACT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Basic View for JIT BP Contact view
VDM.viewType #BASIC view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY RelationshipNumber but050 relnr BP Rel. Number
KEY BusinessPartnerCompany partner1 Busn. Partner
KEY BusinessPartnerPerson partner2 Busn. Partner
KEY ValidityEndDate date_to Validity End Date
ValidityStartDate date_from Validity Start Date
RelationshipCategory reltyp Relatshp Cat.
_JITBusPartContactPerson _JITBusPartContactPerson
_BusinessPartnerPerson _BusinessPartnerPerson
_BusinessPartnerCompany _BusinessPartnerCompany

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_JITBusPartContact.
-- 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: IJITBPCONTACT

CREATE VIEW I_JITBusPartContact AS
SELECT
  but050.relnr AS RelationshipNumber,
  partner1 AS BusinessPartnerCompany,
  partner2 AS BusinessPartnerPerson,
  date_to AS ValidityEndDate,
  date_from AS ValidityStartDate,
  reltyp AS RelationshipCategory
FROM but050
;