fiscds_buk_attr
Attributes for Company Codes/Ledger
fiscds_buk_attr is a CDS View that provides data about "Attributes for Company Codes/Ledger" in SAP S/4HANA. It reads from 2 data sources (finsc_ld_cmp, t001) and exposes 4 fields.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| finsc_ld_cmp | finsc_ld_cmp | inner |
| t001 | t001 | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | FISV_BUK_ATTR | view | |
| EndUserText.label | Attributes for Company Codes/Ledger | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.buffering.status | #NOT_ALLOWED | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| rldnr | rldnr | |||
| bukrs | finsc_ld_cmp | bukrs | ||
| ktopl | ktopl | |||
| periv | finsc_ld_cmp | periv |
@AbapCatalog.sqlViewName: 'FISV_BUK_ATTR'
@EndUserText.label: 'Attributes for Company Codes/Ledger'
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.buffering.status: #NOT_ALLOWED
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view fiscds_buk_attr as
select from t001 inner join finsc_ld_cmp on t001.bukrs = finsc_ld_cmp.bukrs
{
rldnr,
finsc_ld_cmp.bukrs,
ktopl,
finsc_ld_cmp.periv
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FINSC_LD_CMP",
"T001"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA