I_SlsCndnRecdImprtStatusText

DDL: I_SLSCNDNRECDIMPRTSTATUSTEXT SQL: ISLSCNDIMPSTUST Type: view BASIC Package: VDM_SD_MD_CM

Status Text for Sales Pricing History

I_SlsCndnRecdImprtStatusText is a Basic CDS View that provides data about "Status Text for Sales Pricing History" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields CndnRecdImportStatus, Language. It has 2 associations to related views. Part of development package VDM_SD_MD_CM.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_SlsCndnRecdImprtStatus _SalesPricingHistStatus $projection.CndnRecdImportStatus = _SalesPricingHistStatus.CndnRecdImportStatus

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ISLSCNDIMPSTUST view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Status Text for Sales Pricing History view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CndnRecdImportStatus view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CndnRecdImportStatus
KEY Language Lang.
CndnRecdImportStatusText Short text
_SalesPricingHistStatus _SalesPricingHistStatus
_Language _Language

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_SlsCndnRecdImprtStatusText.
-- 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: ISLSCNDIMPSTUST

CREATE VIEW I_SlsCndnRecdImprtStatusText AS
SELECT
  cast ( substring( domvalue_l, 1, 1 ) as cndnrecd_import_status preserving type ) AS CndnRecdImportStatus,
  cast( ddlanguage as spras preserving type ) AS Language,
  cast (ddtext as slsdoc_creation_status_text preserving type) AS CndnRecdImportStatusText
FROM dd07t
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_SlsCndnRecdImprtStatus AS _SalesPricingHistStatus ON CndnRecdImportStatus = _SalesPricingHistStatus.CndnRecdImportStatus  -- association [1..1]
;