I_OrgUnitText

DDL: I_ORGUNITTEXT SQL: IORGUNITTEXT Type: view BASIC Package: VDM_SHCM_EMPLOYEE

OrganizationUnit text

I_OrgUnitText is a Basic CDS View that provides data about "OrganizationUnit text" in SAP S/4HANA. Part of development package VDM_SHCM_EMPLOYEE.

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IORGUNITTEXT view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.dataCategory #TEXT view
EndUserText.label OrganizationUnit text view
ObjectModel.representativeKey OrganizationalUnit view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language sprsl Language Code
KEY OrganizationalUnit orgeh Org. Unit
OrganizationalUnitName orgtx Org.Unit Short Text
_Language _Language

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_OrgUnitText.
-- 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: IORGUNITTEXT

CREATE VIEW I_OrgUnitText AS
SELECT
  sprsl AS Language,
  orgeh AS OrganizationalUnit,
  orgtx AS OrganizationalUnitName
;