atov_col_ver_qa_reject_allowed

DDL: ATOV_COL_VER_QA_REJECT_ALLOWED Type: view_entity

Collection eligible for quality rejecton

atov_col_ver_qa_reject_allowed is a CDS View that provides data about "Collection eligible for quality rejecton" in SAP S/4HANA. It reads from 6 data sources and exposes 1 field with key field version.

Data Sources (6)

SourceAliasJoin Type
atov_collection_type_import Col_Type inner
ato_col_versions Collection_Version from
ato_type_status QA_Allowed_Status inner
ATOV_STATUS_SCHEMA_QA_FEATURE QA_Feature_Mapping_Schema inner
atov_status_schema_qa_status QA_Schema_Status inner
ato_statusschema QA_Status_Schema inner

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Collection eligible for quality rejecton view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY version ato_col_versions version XML Vers.

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 atov_col_ver_qa_reject_allowed.
-- 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 atov_col_ver_qa_reject_allowed AS
SELECT
  Collection_Version.version AS version
FROM ato_col_versions AS Collection_Version
INNER JOIN ATOV_STATUS_SCHEMA_QA_FEATURE AS QA_Feature_Mapping_Schema ON /* join condition not captured in parsed metadata */
INNER JOIN atov_status_schema_qa_status AS QA_Schema_Status ON /* join condition not captured in parsed metadata */
INNER JOIN ato_statusschema AS QA_Status_Schema ON /* join condition not captured in parsed metadata */
INNER JOIN atov_collection_type_import AS Col_Type ON /* join condition not captured in parsed metadata */
INNER JOIN ato_type_status AS QA_Allowed_Status ON /* join condition not captured in parsed metadata */
;