I_AddlCompanyCodeInformation

DDL: I_ADDLCOMPANYCODEINFORMATION SQL: ICOMPCODEADDLINF Type: view BASIC

Additional Specifications for Company Code

I_AddlCompanyCodeInformation (Basic)

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

Accounting and Financial Close

I_AddlCompanyCodeInformation is a Basic CDS View that provides data about "Additional Specifications for Company Code" in SAP S/4HANA. It reads from 1 data source (t001z) and exposes 4 fields with key fields CompanyCode, CompanyCodeParameterType. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Master Data
Purpose
This CDS view is designed to provide additional specifications related to company codes by selecting data from the t001z table. It includes associations to the I_CompanyCode view to enrich the data with more detailed company code information. This CDS view provides the data to answer the following business questions: What are the additional specifications or parameters associated with each company code? How can we link company codes to their respective parameter types and values? What detailed information can be retrieved for a specific company code using its parameters? How can we integrate additional company code specifications into analytical dimensions for reporting purposes? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users who want to use this CDS view don't need any special authorization.

Structure
Important Fields Important fields in this view include the following: Field Name Description COMPANYCODEPARAMETERVALUE Parameter value COMPANYCODE Company Code COMPANYCODEPARAMETERTYPE Parameter type

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-FIO-GL-IS
CapabilitiesData Source in SQL Select, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities, Analytical Dimension
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
t001z t001z from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode

Annotations (14)

NameValueLevelField
EndUserText.label Additional Specifications for Company Code view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName ICOMPCODEADDLINF view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.buffering.status #NOT_ALLOWED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey CompanyCodeParameterType view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode t001z bukrs Company Code
KEY CompanyCodeParameterType t001z party Parameter type
CompanyCodeParameterValue t001z paval Parameter Value
_CompanyCode _CompanyCode

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_AddlCompanyCodeInformation.
-- 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: ICOMPCODEADDLINF

CREATE VIEW I_AddlCompanyCodeInformation AS
SELECT
  t001z.bukrs AS CompanyCode,
  t001z.party AS CompanyCodeParameterType,
  t001z.paval AS CompanyCodeParameterValue
FROM t001z
LEFT OUTER JOIN I_CompanyCode AS _CompanyCode ON CompanyCode = _CompanyCode.CompanyCode  -- association [0..1]
;