P_InsurOpenApplBeneficiary

DDL: P_INSUROPENAPPLBENEFICIARY Type: view_entity COMPOSITE

Insurance Open Application Beneficiary

P_InsurOpenApplBeneficiary is a Composite CDS View that provides data about "Insurance Open Application Beneficiary" in SAP S/4HANA. It reads from 4 data sources (I_InsurPolicyBeneficiaryBasic, I_InsurPolicyBeneficiaryBasic, P_InsuranceOpenApplicationJrnl, P_InsuranceOpenApplicationJrnl) and exposes 17 fields with key fields InsurPlcyApplUUID, InsuranceApplication, InsurPlcyJrnlNmbr, InsurPlcyInsurContr, InsurPlcyCoveragePackageID.

Data Sources (4)

SourceAliasJoin Type
I_InsurPolicyBeneficiaryBasic Beneficiary from
I_InsurPolicyBeneficiaryBasic Beneficiary union
P_InsuranceOpenApplicationJrnl OpenApplJrnl inner
P_InsuranceOpenApplicationJrnl OpenApplJrnl inner

Annotations (5)

NameValueLevelField
EndUserText.label Insurance Open Application Beneficiary view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
VDM.private true view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY InsurPlcyApplUUID P_InsuranceOpenApplicationJrnl InsurPlcyApplUUID Policy UUID
KEY InsuranceApplication P_InsuranceOpenApplicationJrnl InsuranceApplication
KEY InsurPlcyJrnlNmbr I_InsurPolicyBeneficiaryBasic InsurPlcyJrnlNmbr Journal Number
KEY InsurPlcyInsurContr I_InsurPolicyBeneficiaryBasic InsurPlcyInsurContr Contract Key
KEY InsurPlcyCoveragePackageID I_InsurPolicyBeneficiaryBasic InsurPlcyCoveragePackageID Cov.Package ID
KEY InsurPlcyCoverageID I_InsurPolicyBeneficiaryBasic InsurPlcyCoverageID Coverage Key
KEY InsurancePolicyBeneficiaryID I_InsurPolicyBeneficiaryBasic InsurancePolicyBeneficiaryID Beneficiary ID
KEY InsurPlcyContrDataDetnJrnlNmbr P_InsuranceOpenApplicationJrnl InsurPlcyContrDataDetnJrnlNmbr
InsurPlcyApplUUID Policy UUID
KEY InsuranceApplication P_InsuranceOpenApplicationJrnl InsuranceApplication
KEY InsurPlcyJrnlNmbr I_InsurPolicyBeneficiaryBasic InsurPlcyJrnlNmbr Journal Number
KEY InsurPlcyInsurContr I_InsurPolicyBeneficiaryBasic InsurPlcyInsurContr Contract Key
KEY InsurPlcyCoveragePackageID I_InsurPolicyBeneficiaryBasic InsurPlcyCoveragePackageID Cov.Package ID
KEY InsurPlcyCoverageID I_InsurPolicyBeneficiaryBasic InsurPlcyCoverageID Coverage Key
KEY InsurancePolicyBeneficiaryID I_InsurPolicyBeneficiaryBasic InsurancePolicyBeneficiaryID Beneficiary ID
KEY InsurPlcyContrDataDetnJrnlNmbr P_InsuranceOpenApplicationJrnl InsurPlcyContrDataDetnJrnlNmbr
InsurPlcyUUID P_InsuranceOpenApplicationJrnl InsurPlcyUUID Policy UUID

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_InsurOpenApplBeneficiary.
-- 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_InsurOpenApplBeneficiary AS
SELECT
  OpenApplJrnl.InsurPlcyApplUUID AS InsurPlcyApplUUID,
  OpenApplJrnl.InsuranceApplication AS InsuranceApplication,
  Beneficiary.InsurPlcyJrnlNmbr AS InsurPlcyJrnlNmbr,
  Beneficiary.InsurPlcyInsurContr AS InsurPlcyInsurContr,
  Beneficiary.InsurPlcyCoveragePackageID AS InsurPlcyCoveragePackageID,
  Beneficiary.InsurPlcyCoverageID AS InsurPlcyCoverageID,
  Beneficiary.InsurancePolicyBeneficiaryID AS InsurancePolicyBeneficiaryID,
  OpenApplJrnl.InsurPlcyContrDataDetnJrnlNmbr AS InsurPlcyContrDataDetnJrnlNmbr,
  OpenApplJrnl.InsurPlcyUUID AS InsurPlcyUUID
FROM I_InsurPolicyBeneficiaryBasic AS Beneficiary
INNER JOIN P_InsuranceOpenApplicationJrnl AS OpenApplJrnl ON /* join condition not captured in parsed metadata */
-- UNION with additional select branch(es): I_InsurPolicyBeneficiaryBasic
;