I_InvgCsMCaseStaffAndUnit

DDL: I_INVGCSMCASESTAFFANDUNIT SQL: ICASESTAFFUNIT Type: view BASIC

Basic View for ICM Case Staff and Unit

I_InvgCsMCaseStaffAndUnit is a Basic CDS View that provides data about "Basic View for ICM Case Staff and Unit" in SAP S/4HANA. It reads from 1 data source (crmd_case_index) and exposes 6 fields with key field client. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
crmd_case_index crmd_case_index from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_BusinessPartner _BusinessPartner $projection.InvgCsMPartnerNumber = _BusinessPartner.BusinessPartner

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName ICASESTAFFUNIT view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Basic View for ICM Case Staff and Unit view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY client client Workflow definition: Client
InvgCsMCaseUUID case_guid UUID
InvgCsMPartnerNumber partner_no Partner Number
InvgCsMPartnerFunction partner_fct Partner Function
InvgCsMIsCaseMainPartner crm_main_partner Main Partner
_BusinessPartner _BusinessPartner

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_InvgCsMCaseStaffAndUnit.
-- 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: ICASESTAFFUNIT

CREATE VIEW I_InvgCsMCaseStaffAndUnit AS
SELECT
  client,
  case_guid AS InvgCsMCaseUUID,
  partner_no AS InvgCsMPartnerNumber,
  partner_fct AS InvgCsMPartnerFunction,
  crm_main_partner AS InvgCsMIsCaseMainPartner
FROM crmd_case_index
LEFT OUTER JOIN I_BusinessPartner AS _BusinessPartner ON InvgCsMPartnerNumber = _BusinessPartner.BusinessPartner  -- association [0..1]
;