I_ProjectApplicant

DDL: I_PROJECTAPPLICANT SQL: IPROJAPPLICANT Type: view BASIC

Project Applicant

I_ProjectApplicant (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

R&D Engineering

I_ProjectApplicant is a Basic CDS View that provides data about "Project Applicant" in SAP S/4HANA. It reads from 1 data source (tcj05) and exposes 3 fields with key field ApplicantCode.

SAP API Hub

StateC1
Line of BusinessR&D Engineering
Application ComponentPS-ST
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities
PackageR&D Engineering for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tcj05 tcj05 from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IPROJAPPLICANT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
EndUserText.label Project Applicant view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #REQUIRED view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ApplicantCode astnr Applicant number
ApplicantName astna Applicant
ProjectApplicantIsBlocked blocked Complaint Locked

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_ProjectApplicant.
-- 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: IPROJAPPLICANT

CREATE VIEW I_ProjectApplicant AS
SELECT
  astnr AS ApplicantCode,
  astna AS ApplicantName,
  blocked AS ProjectApplicantIsBlocked
FROM tcj05
;