I_MaterialGroupText

DDL: I_MATERIALGROUPTEXT Type: view BASIC Package: VDM_MD_PRODUCT_DDIC

Material Group Text

I_MaterialGroupText is a Basic CDS View that provides data about "Material Group Text" in SAP S/4HANA. It reads from 1 data source (t023t) and exposes 5 fields with key fields MaterialGroup, Language. It has 1 association to related views. It is exposed through 28 OData services (ASQL_F0351A, ASQL_F0354, ASQL_F0547B, ...). It is used in 1 Fiori application: Review Service Entry Sheet Accruals. Part of development package VDM_MD_PRODUCT_DDIC.

Data Sources (1)

SourceAliasJoin Type
t023t t023t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_MaterialGroup _MaterialGroup $projection.MaterialGroup = _MaterialGroup.MaterialGroup

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IMATGROUPTEXT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Material Group Text view
ObjectModel.representativeKey MaterialGroup view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

OData Services (28)

ServiceBindingVersionContractRelease
ASQL_F0351A ASQL_F0351A C2 NOT_RELEASED
ASQL_F0354 ASQL_F0354 C2 NOT_RELEASED
ASQL_F0547B ASQL_F0547B C2 NOT_RELEASED
ASQL_F1048A ASQL_F1048A C2 NOT_RELEASED
ASQL_F1665 ASQL_F1665 C2 NOT_RELEASED
ASQL_F1956 ASQL_F1956 C2 NOT_RELEASED
ASQL_F2278 ASQL_F2278 C2 NOT_RELEASED
ASQL_F2549 ASQL_F2549 C2 NOT_RELEASED
ASQL_F2594 ASQL_F2594 C2 NOT_RELEASED
ASQL_F2669 ASQL_F2669 C2 NOT_RELEASED
ASQL_F3072 ASQL_F3072 C2 NOT_RELEASED
ASQL_F3095 ASQL_F3095 C2 NOT_RELEASED
ASQL_F3149 ASQL_F3149 C2 NOT_RELEASED
ASQL_F3293 ASQL_F3293 C2 NOT_RELEASED
ASQL_F3302 ASQL_F3302 C2 NOT_RELEASED
ASQL_F3303 ASQL_F3303 C2 NOT_RELEASED
ASQL_F3304 ASQL_F3304 C2 NOT_RELEASED
ASQL_F3366 ASQL_F3366 C2 NOT_RELEASED
ASQL_F3517 ASQL_F3517 C2 NOT_RELEASED
ASQL_F3625 ASQL_F3625 C2 NOT_RELEASED
ASQL_F3812 ASQL_F3812 C2 NOT_RELEASED
ASQL_F4095 ASQL_F4095 C2 NOT_RELEASED
ASQL_F4989 ASQL_F4989 C2 NOT_RELEASED
ASQL_F5757 ASQL_F5757 C2 NOT_RELEASED
ASQL_F6108 ASQL_F6108 C2 NOT_RELEASED
ASQL_F6178 ASQL_F6178 C2 NOT_RELEASED
ASQL_F7439 ASQL_F7439 C2 NOT_RELEASED
UI_SSACPERDCAMOUNTS_REVIEW UI_SSACPERDCAMOUNTS_REVIEW V2 C1 NOT_RELEASED

Fiori Apps (1)

App IDApp NameTypeDescription
F6108 Review Service Entry Sheet Accruals Transactional Review service entry sheet accrual amount for each period.

Review Service Entry Sheet Accruals

Business Role: Cost Accountant - Overhead

For service purchasing, you need to post accruals for costs that come from unapproved service entry sheets. A purchase order item could have multiple service entry sheets with different account assignments. The Service Entry Sheet Accruals application enables you to calculate and post accruals in General Ledger Accounting automatically. The relevant data can be transferred from Service Purchasing and Recording of the Materials Management component to the Accrual Engine and automatically converted from purchase order items into accrual subobjects. The system calculates the accruals for each account assignment specified in the items of service entry sheets. In each period, you can start an accrual run, which posts all accruals for the service transactions.

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY MaterialGroup
KEY Language t023t spras Off. Language
MaterialGroupName
MaterialGroupText t023t wgbez60 Mat.Grp Desc. 2
_MaterialGroup _MaterialGroup

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_MaterialGroupText.
-- 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_MaterialGroupText AS
SELECT
  cast(t023t.matkl as productgroup preserving type ) AS MaterialGroup,
  t023t.spras AS Language,
  cast(t023t.wgbez as productgroupdescription preserving type ) AS MaterialGroupName,
  t023t.wgbez60 AS MaterialGroupText
FROM t023t
LEFT OUTER JOIN I_MaterialGroup AS _MaterialGroup ON MaterialGroup = _MaterialGroup.MaterialGroup  -- association [0..1]
;