fac_opp_cds_co_biz_trans
CDS View for CO business transaction
fac_opp_cds_co_biz_trans is a CDS View that provides data about "CDS View for CO business transaction" in SAP S/4HANA. It reads from 2 data sources (tj01, tj01t) and exposes 1 field with key field co_biz_trans.
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | FACOPPV_CO_BIZT | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #AUTOMATED | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | CDS View for CO business transaction | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #C | view |
Fields (1)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | co_biz_trans | tj01 | vrgng |
@AbapCatalog.sqlViewName: 'FACOPPV_CO_BIZT'
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #AUTOMATED
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'CDS View for CO business transaction'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #C
define view fac_opp_cds_co_biz_trans as
select from tj01
left outer join tj01t
on tj01.vrgng = tj01t.vrgng and
tj01t.spras = $session.system_language
{
key tj01.vrgng as co_biz_trans,
tj01t.txt as co_biz_trans_descr
}
where wtkat = 'A'
and persp = 'X'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TJ01",
"TJ01T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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