I_PrmtHbRpldPOOutputStsIndTxt

DDL: I_PRMTHBRPLDPOOUTPUTSTSINDTXT SQL: IPOOUTPUTINDTXT Type: view BASIC

Purchase Order Output Indicator - Text

I_PrmtHbRpldPOOutputStsIndTxt is a Basic CDS View that provides data about "Purchase Order Output Indicator - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields PurchaseOrderOutputIndCode, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_PrmtHbRpldPOOutputStsInd _PurchaseOrderOutputInd _PurchaseOrderOutputInd.PurchaseOrderOutputIndCode = $projection.PurchaseOrderOutputIndCode
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IPOOUTPUTINDTXT view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Purchase Order Output Indicator - Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey PurchaseOrderOutputIndCode view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #META view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY PurchaseOrderOutputIndCode
KEY Language
DomainValue dd07t domvalue_l Lower Value
PurchaseOrderOutputIndDesc Short text
_PurchaseOrderOutputInd _PurchaseOrderOutputInd
_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_PrmtHbRpldPOOutputStsIndTxt.
-- 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: IPOOUTPUTINDTXT

CREATE VIEW I_PrmtHbRpldPOOutputStsIndTxt AS
SELECT
  cast ( dd07t.domvalue_l as mmpur_cpo_output_indicator ) AS PurchaseOrderOutputIndCode,
  cast( dd07t.ddlanguage as spras preserving type ) AS Language,
  dd07t.domvalue_l AS DomainValue,
  cast ( ddtext as mmpur_cpo_output_indicatorname ) AS PurchaseOrderOutputIndDesc
FROM dd07t
LEFT OUTER JOIN I_PrmtHbRpldPOOutputStsInd AS _PurchaseOrderOutputInd ON _PurchaseOrderOutputInd.PurchaseOrderOutputIndCode = PurchaseOrderOutputIndCode  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;