FISVD_EXTERNALTAX_ETXDCH_FI
TAX EXPOSTING MANAGE
FISVD_EXTERNALTAX_ETXDCH_FI is a CDS View that provides data about "TAX EXPOSTING MANAGE" in SAP S/4HANA. It reads from 2 data sources (dd07t, etxdch) and exposes 14 fields with key field externaldoc.
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | FISCDSETXDCHFI | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | TAX EXPOSTING MANAGE | view | |
| ObjectModel.usageType.serviceQuality | #P | view |
Fields (14)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | externaldoc | docnr | ||
| uniquekey | tid | |||
| referencedoc | etxdch | awref | ||
| documenttype | etxdch | awtyp | ||
| postsystem | etxdch | awsys | ||
| documentkey | ||||
| process_date | docstatuschanged | |||
| username | etxdch | usnam | ||
| errorcode | errcode | |||
| errorline | error_line | |||
| errormessage | errmsg | |||
| action | rec_status | |||
| actiondes | dd07t | ddtext | ||
| feed_count | feed_count |
@AbapCatalog.sqlViewName: 'FISCDSETXDCHFI'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'TAX EXPOSTING MANAGE'
@ObjectModel.usageType: {
serviceQuality: #P
}
define view FISVD_EXTERNALTAX_ETXDCH_FI
as select from etxdch as _etx
left outer join dd07t as _action on _action.domname = 'FIS_D_ETXDC_ACTION'
and _action.ddlanguage = $session.system_language
and _action.domvalue_l = _etx.rec_status
{
key docnr as externaldoc,
tid as uniquekey,
_etx.awref as referencedoc,
_etx.awtyp as documenttype,
_etx.aworg as organizationunit,
_etx.awsys as postsystem,
concat(_etx.awref, _etx.aworg) as documentkey,
docstatuschanged as process_date,
_etx.usnam as username,
errcode as errorcode,
error_line as errorline,
errmsg as errormessage,
rec_status as action,
_action.ddtext as actiondes,
feed_count as feed_count
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T",
"ETXDCH"
],
"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