I_InvgCsMPersnAltvIdentity

DDL: I_INVGCSMPERSNALTVIDENTITY SQL: IBPALTIDN Type: view BASIC

ICM Person Alternative Identity

I_InvgCsMPersnAltvIdentity is a Basic CDS View that provides data about "ICM Person Alternative Identity" in SAP S/4HANA. It reads from 1 data source (crmm_icm_bp_aid) and exposes 7 fields with key field InvgCsMPersnAltvIdentityUUID.

Data Sources (1)

SourceAliasJoin Type
crmm_icm_bp_aid crmm_icm_bp_aid from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IBPALTIDN view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
AbapCatalog.preserveKey true view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label ICM Person Alternative Identity view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY InvgCsMPersnAltvIdentityUUID aid_guid Alt. ID GUID
BusinessPartnerUUID partner_guid Partner GUID
BusinessPartnerFullName name Zone name
FirstName first_name Name
SearchTerm1 srchname Search Name
MiddleName middle_name Patronymic
BirthName birth_name ICM BP Alternative Identity - Name (Other name or Last name)

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_InvgCsMPersnAltvIdentity.
-- 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: IBPALTIDN

CREATE VIEW I_InvgCsMPersnAltvIdentity AS
SELECT
  aid_guid AS InvgCsMPersnAltvIdentityUUID,
  partner_guid AS BusinessPartnerUUID,
  name AS BusinessPartnerFullName,
  first_name AS FirstName,
  srchname AS SearchTerm1,
  middle_name AS MiddleName,
  birth_name AS BirthName
FROM crmm_icm_bp_aid
;