FISVD_USCCWITHEXTTAX
US Company Code
FISVD_USCCWITHEXTTAX is a CDS View that provides data about "US Company Code" in SAP S/4HANA. It reads from 3 data sources (t001, t005, ttxd) and exposes 3 fields with key field bukrs.
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ETXUSCC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | US Company Code | view | |
| ObjectModel.usageType.serviceQuality | #P | view |
@AbapCatalog.sqlViewName: 'ETXUSCC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'US Company Code'
@ObjectModel.usageType: {
serviceQuality: #P
}
define view FISVD_USCCWITHEXTTAX as select from t001 as cc
left outer join t005 as cy
on cc.land1 = cy.land1
left outer join ttxd as tx
on tx.kalsm = cy.kalsm {
key cc.bukrs,
cc.land1,
cy.kalsm
}
where ( cc.land1 = 'US' or cc.land1 = 'USA' ) //US company code
and tx.xextn <> '' and tx.rfcdest = 'NONE' //CPI solution
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T001",
"T005",
"TTXD"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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