I_IN_SuplrGSTHlthChkCategory

DDL: I_IN_SUPLRGSTHLTHCHKCATEGORY Type: view_entity COMPOSITE Package: J1I_GST_LOG_APP

GST IN Supplier HC Error Category List

I_IN_SuplrGSTHlthChkCategory is a Composite CDS View that provides data about "GST IN Supplier HC Error Category List" in SAP S/4HANA. It reads from 1 data source (P_IN_SuplrGSTHlthChk) and exposes 10 fields with key fields CompanyCode, Supplier, IN_GSTHlthChkCategory. It has 1 association to related views. Part of development package J1I_GST_LOG_APP.

Data Sources (1)

SourceAliasJoin Type
P_IN_SuplrGSTHlthChk P_IN_SuplrGSTHlthChk from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_IN_SuplrGSTHlthChkErrDet _SupplierGSTHlthChkErrorDetail

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
EndUserText.label GST IN Supplier HC Error Category List view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY Supplier Supplier Supplier
KEY IN_GSTHlthChkCategory IN_GSTHlthChkCategory
IN_GSTHlthChkCatFldName IN_GSTHlthChkCatFldName
IN_GSTHealthCheckCatDesc IN_GSTHealthCheckCatDesc
IN_GSTHlthChkCatFldVal IN_GSTHlthChkCatFldVal
IN_GSTHlthChkCrrtnStp IN_GSTHlthChkCrrtnStp
IN_GSTHlthChkNmbrOfErrors
_SupplierHealthCheck _SupplierHealthCheck
_SupplierGSTHlthChkErrorDetail _SupplierGSTHlthChkErrorDetail

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_IN_SuplrGSTHlthChkCategory.
-- 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_IN_SuplrGSTHlthChkCategory AS
SELECT
  CompanyCode,
  Supplier,
  IN_GSTHlthChkCategory,
  IN_GSTHlthChkCatFldName,
  IN_GSTHealthCheckCatDesc,
  IN_GSTHlthChkCatFldVal,
  IN_GSTHlthChkCrrtnStp,
  count(*) AS IN_GSTHlthChkNmbrOfErrors
FROM P_IN_SuplrGSTHlthChk
LEFT OUTER JOIN I_IN_SuplrGSTHlthChkErrDet AS _SupplierGSTHlthChkErrorDetail ON /* condition not available in parsed metadata */  -- association [0..*]
;