A_AssgmtInspMethInspSpec

DDL: A_ASSGMTINSPMETHINSPSPEC SQL: AASSGMTIMETHSPEC Type: view BASIC

Assignmt Inspection Specification-Method

A_AssgmtInspMethInspSpec is a Basic CDS View that provides data about "Assignmt Inspection Specification-Method" in SAP S/4HANA. It reads from 2 data sources (I_AssgmtInspMethInspSpec, I_InspSpecificationVersion) and exposes 12 fields with key fields InspectionSpecificationPlant, InspectionSpecification, InspectionSpecificationVersion, InspectionMethodPlant, InspectionMethod.

Data Sources (2)

SourceAliasJoin Type
I_AssgmtInspMethInspSpec I_AssgmtInspMethInspSpec from
I_InspSpecificationVersion I_InspSpecificationVersion inner

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName AASSGMTIMETHSPEC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Assignmt Inspection Specification-Method view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.compositionRoot true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.createEnabled false view
ObjectModel.updateEnabled false view
ObjectModel.deleteEnabled false view
Metadata.ignorePropagatedAnnotations true view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY InspectionSpecificationPlant I_AssgmtInspMethInspSpec InspectionSpecificationPlant Version
KEY InspectionSpecification I_AssgmtInspMethInspSpec InspectionSpecification Master IC
KEY InspectionSpecificationVersion I_AssgmtInspMethInspSpec InspectionSpecificationVersion XML Vers.
KEY InspectionMethodPlant I_AssgmtInspMethInspSpec InspectionMethodPlant Plant
KEY InspectionMethod I_AssgmtInspMethInspSpec InspectionMethod Insp. Method
KEY InspectionMethodVersion I_AssgmtInspMethInspSpec InspectionMethodVersion Version
Plant I_AssgmtInspMethInspSpec Plant Valuation Area
ValidityStartDate I_AssgmtInspMethInspSpec ValidityStartDate Validity Start Date
SelectedCodeSet I_AssgmtInspMethInspSpec SelectedCodeSet CodeGrp/SelSet
SelectedCodeSetPlant I_AssgmtInspMethInspSpec SelectedCodeSetPlant Plant
QltyMstrDataAuthorizationGroup
InspectionSpecificationStatus

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 A_AssgmtInspMethInspSpec.
-- 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: AASSGMTIMETHSPEC

CREATE VIEW A_AssgmtInspMethInspSpec AS
SELECT
  I_AssgmtInspMethInspSpec.InspectionSpecificationPlant AS InspectionSpecificationPlant,
  I_AssgmtInspMethInspSpec.InspectionSpecification AS InspectionSpecification,
  I_AssgmtInspMethInspSpec.InspectionSpecificationVersion AS InspectionSpecificationVersion,
  I_AssgmtInspMethInspSpec.InspectionMethodPlant AS InspectionMethodPlant,
  I_AssgmtInspMethInspSpec.InspectionMethod AS InspectionMethod,
  I_AssgmtInspMethInspSpec.InspectionMethodVersion AS InspectionMethodVersion,
  I_AssgmtInspMethInspSpec.Plant AS Plant,
  I_AssgmtInspMethInspSpec.ValidityStartDate AS ValidityStartDate,
  I_AssgmtInspMethInspSpec.SelectedCodeSet AS SelectedCodeSet,
  I_AssgmtInspMethInspSpec.SelectedCodeSetPlant AS SelectedCodeSetPlant,
  I_AssgmtInspMethInspSpec._InspSpecificationVersion.QltyMstrDataAuthorizationGroup AS QltyMstrDataAuthorizationGroup,
  I_AssgmtInspMethInspSpec._InspSpecificationVersion.InspectionSpecificationStatus AS InspectionSpecificationStatus
FROM I_AssgmtInspMethInspSpec
INNER JOIN I_InspSpecificationVersion ON /* join condition not captured in parsed metadata */
;