C_SponsoredProgramTP

DDL: C_SPONSOREDPROGRAMTP Type: view_entity CONSUMPTION

Manage Sponsored Programs

C_SponsoredProgramTP is a Consumption CDS View that provides data about "Manage Sponsored Programs" in SAP S/4HANA. It reads from 1 data source (R_SponsoredProgramTP) and exposes 8 fields with key field SponsoredProgram.

Data Sources (1)

SourceAliasJoin Type
R_SponsoredProgramTP R_SponsoredProgramTP projection

Annotations (16)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
Metadata.allowExtensions true view
ObjectModel.representativeKey SponsoredProgram view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
UI.headerInfo.typeName Sponsored Program view
UI.headerInfo.typeNamePlural Sponsored Programs view
UI.headerInfo.title.type #STANDARD view
UI.headerInfo.title.value SponsoredProgram view
UI.headerInfo.description.type #STANDARD view
UI.headerInfo.description.value SponsoredProgramName view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Manage Sponsored Programs view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY SponsoredProgram SponsoredProgram Sponsored Program
SponsoredProgramForEdit SponsoredProgramForEdit Sponsored Program
SponsoredProgramName SponsoredProgramName Program Name
SponsoredProgramDescription SponsoredProgramDescription
CreatedByUser CreatedByUser User Name
CreationDate CreationDate Time Stamp
LastChangedByUser LastChangedByUser User Name
LastChangeDate LastChangeDate Time Stamp

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 C_SponsoredProgramTP.
-- 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 C_SponsoredProgramTP AS
SELECT
  SponsoredProgram,
  SponsoredProgramForEdit,
  SponsoredProgramName,
  SponsoredProgramDescription,
  CreatedByUser,
  CreationDate,
  LastChangedByUser,
  LastChangeDate
FROM R_SponsoredProgramTP
;