I_IN_GSTStateCodeMap

DDL: I_IN_GSTSTATECODEMAP SQL: IINGSTSTATECODE Type: view BASIC Package: J1IN

State Code Map e-Filing India Local

I_IN_GSTStateCodeMap is a Basic CDS View that provides data about "State Code Map e-Filing India Local" in SAP S/4HANA. It reads from 1 data source (j_1istatecdm) and exposes 3 fields with key fields Country, Region. Part of development package J1IN.

Data Sources (1)

SourceAliasJoin Type
j_1istatecdm j_1istatecdm from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IINGSTSTATECODE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label State Code Map e-Filing India Local view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Country land1 Trip Ctry/Reg
KEY Region std_state_code Region
IN_GSTLegalStateCode legal_state_code GST Legal State Code

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_GSTStateCodeMap.
-- 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: IINGSTSTATECODE

CREATE VIEW I_IN_GSTStateCodeMap AS
SELECT
  land1 AS Country,
  std_state_code AS Region,
  legal_state_code AS IN_GSTLegalStateCode
FROM j_1istatecdm
;