I_BusinessSolutionPortfolio

DDL: I_BUSINESSSOLUTIONPORTFOLIO Type: view BASIC

Business Solution Portfolio

I_BusinessSolutionPortfolio is a Basic CDS View that provides data about "Business Solution Portfolio" in SAP S/4HANA. It reads from 1 data source (crms4d_bsp_h) and exposes 10 fields with key field BusinessSolutionPortfolio.

Data Sources (1)

SourceAliasJoin Type
crms4d_bsp_h crms4d_bsp_h from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IBUSSOLPORTFOLIO view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #BASIC view
EndUserText.label Business Solution Portfolio view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY BusinessSolutionPortfolio businesssolutionportfolio Transaction ID
BusSolnPrtfloReference bussolnprtfloreference Reference
BusSolnPrtfloDescription bussolnprtflodescription Description
Currency currency Valuation Crcy
SoldToParty soldtoparty Sold-to Party
BusSolnPrtfloNoteText bussolnprtflonotetext Note
CreationDateTime creationdatetime Timestamp
CreatedByUser createdbyuser User Name
LastChangeDateTime lastchangedatetime Timestamp
LastChangedByUser lastchangedbyuser User 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_BusinessSolutionPortfolio.
-- 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 I_BusinessSolutionPortfolio AS
SELECT
  BusinessSolutionPortfolio,
  BusSolnPrtfloReference,
  BusSolnPrtfloDescription,
  Currency,
  SoldToParty,
  BusSolnPrtfloNoteText,
  CreationDateTime,
  CreatedByUser,
  LastChangeDateTime,
  LastChangedByUser
FROM crms4d_bsp_h
;