P_SbscrContrItmStateSqncNode

DDL: P_SBSCRCONTRITMSTATESQNCNODE Type: view_entity BASIC

Node Information of State Sequence

P_SbscrContrItmStateSqncNode is a Basic CDS View that provides data about "Node Information of State Sequence" in SAP S/4HANA. It reads from 1 data source (P_SbscrContrMainItm) and exposes 34 fields with key fields SubscrpnContrStateSqnc, SubscrpnContrItmStateSqnc.

Data Sources (1)

SourceAliasJoin Type
P_SbscrContrMainItm P_SbscrContrMainItm from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Node Information of State Sequence view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view
VDM.private true view

Fields (34)

KeyFieldSource TableSource FieldDescription
KEY SubscrpnContrStateSqnc SubscriptionContract Transaction ID
KEY SubscrpnContrItmStateSqnc SubscriptionContractItem Item Number in Doc.
SubscriptionContractExternalID SubscriptionContractExternalID Contract Number
SubscriptionContractItemUUID SubscriptionContractItemUUID
SubscrpnContrItmCharUUID SubscrpnContrItmCharUUID
ParentSubscrpnContractItemUUID ParentSubscrpnContractItemUUID
SubscrpnContrItmStartDateTime SubscrpnContrItmStartDateTime
SubscrpnContrItmEndDateTime SubscrpnContrItmEndDateTime
SbscrContrTimeSliceStrtDteTme SbscrContrTimeSliceStrtDteTme
SbscrContrTimeSliceEndDteTme SbscrContrTimeSliceEndDteTme
SubscrpnContrActivationStatus SubscrpnContrActivationStatus
SubscrpnContractItemIsRejected SubscrpnContractItemIsRejected
Quantity Quantity Value
QuantityUnit QuantityUnit Unit of measure
SrvcTransChangeProcess SrvcTransChangeProcess
SrvcTransChangeProcessType SrvcTransChangeProcessType
BusSolutionQtnItemIsPhased BusSolutionQtnItemIsPhased
BusSolnQtnItmPhasedPrdcssrItem BusSolnQtnItmPhasedPrdcssrItem
Product Product Product Sold
SbscrContrItmIsFirst SbscrContrItmIsFirst
SubscrpnContrTimeSliceStatus SubscrpnContrTimeSliceStatus
SubscrpnOrdProdSelType SubscrpnOrdProdSelType
SalesOrganizationOrgUnitID SalesOrganizationOrgUnitID
SalesOfficeOrgUnitID SalesOfficeOrgUnitID
SalesGroupOrgUnitID SalesGroupOrgUnitID
DistributionChannel DistributionChannel RefDistCh-Cust/Mat.
Division Division Internal Division ID
ServiceOrganization ServiceOrganization
SalesOrganization SalesOrganization Sales Organization
SalesOffice SalesOffice Sales Office
SalesGroup SalesGroup Sales Group
RespEmployeeBusinessPartnerId RespEmployeeBusinessPartnerId
ServiceObjectType ServiceObjectType Object Type
ServiceDocumentType ServiceDocumentType Transaction Type

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 P_SbscrContrItmStateSqncNode.
-- 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 P_SbscrContrItmStateSqncNode AS
SELECT
  SubscriptionContract AS SubscrpnContrStateSqnc,
  SubscriptionContractItem AS SubscrpnContrItmStateSqnc,
  SubscriptionContractExternalID,
  SubscriptionContractItemUUID,
  SubscrpnContrItmCharUUID,
  ParentSubscrpnContractItemUUID,
  SubscrpnContrItmStartDateTime,
  SubscrpnContrItmEndDateTime,
  SbscrContrTimeSliceStrtDteTme,
  SbscrContrTimeSliceEndDteTme,
  SubscrpnContrActivationStatus,
  SubscrpnContractItemIsRejected,
  Quantity,
  QuantityUnit,
  SrvcTransChangeProcess,
  SrvcTransChangeProcessType,
  BusSolutionQtnItemIsPhased,
  BusSolnQtnItmPhasedPrdcssrItem,
  Product,
  SbscrContrItmIsFirst,
  SubscrpnContrTimeSliceStatus,
  SubscrpnOrdProdSelType,
  SalesOrganizationOrgUnitID,
  SalesOfficeOrgUnitID,
  SalesGroupOrgUnitID,
  DistributionChannel,
  Division,
  ServiceOrganization,
  SalesOrganization,
  SalesOffice,
  SalesGroup,
  RespEmployeeBusinessPartnerId,
  ServiceObjectType,
  ServiceDocumentType
FROM P_SbscrContrMainItm
;