I_GranteeMgmtBillingRule

DDL: I_GRANTEEMGMTBILLINGRULE SQL: IGMBILLINGRULE Type: view BASIC Package: PSM_S4C_GM_MD

Grantee Management Billing Rule

I_GranteeMgmtBillingRule (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_GranteeMgmtBillingRule is a Basic CDS View that provides data about "Grantee Management Billing Rule" in SAP S/4HANA. It reads from 1 data source (gmbr) and exposes 3 fields with key field GranteeMgmtBillingRule. It has 1 association to related views. It is exposed through 6 OData services (ASQL_F4182, ASQL_F4657, ASQL_F6951, ...). Part of development package PSM_S4C_GM_MD.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessCross Applications
Application ComponentPSM-GM-GTE-MD
CapabilitiesAnalytical Dimension,Association Target for Defining CDS Entities,Data Source for Defining CDS Entities,Data Source in SQL Select
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Not Released
PackageCross Applications for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
gmbr gmbr from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_GranteeMgmtBillingRuleText _Text $projection.GranteeMgmtBillingRule = _Text.GranteeMgmtBillingRule

Annotations (14)

NameValueLevelField
EndUserText.label Grantee Management Billing Rule view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey GranteeMgmtBillingRule view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AbapCatalog.sqlViewName IGMBILLINGRULE view
Metadata.ignorePropagatedAnnotations true view

OData Services (6)

ServiceBindingVersionContractRelease
ASQL_F4182 ASQL_F4182 C2 NOT_RELEASED
ASQL_F4657 ASQL_F4657 C2 NOT_RELEASED
ASQL_F6951 ASQL_F6951 C2 NOT_RELEASED
ASQL_F7321 ASQL_F7321 C2 NOT_RELEASED
ASQL_F7334 ASQL_F7334 C2 NOT_RELEASED
ASQL_F7335 ASQL_F7335 C2 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY GranteeMgmtBillingRule billing_rule Rule Used as a Basis for Billing
GteeMManualBillingIsAllowed manual_billing Allow Manual Billing Indicator
_Text _Text

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_GranteeMgmtBillingRule.
-- 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: IGMBILLINGRULE

CREATE VIEW I_GranteeMgmtBillingRule AS
SELECT
  billing_rule AS GranteeMgmtBillingRule,
  manual_billing AS GteeMManualBillingIsAllowed
FROM gmbr
LEFT OUTER JOIN I_GranteeMgmtBillingRuleText AS _Text ON GranteeMgmtBillingRule = _Text.GranteeMgmtBillingRule  -- association [0..*]
;