FISVD_EXTERNALTAX_TRFCQOUT
TAX EXPOSTING MANAGE
FISVD_EXTERNALTAX_TRFCQOUT is a CDS View that provides data about "TAX EXPOSTING MANAGE" in SAP S/4HANA. It reads from 2 data sources (dd07t, trfcqout) and exposes 8 fields with key fields host_id, process_id, time_stamp, counter, tid.
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | FISCDSEXTAXTRFC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | TAX EXPOSTING MANAGE | view | |
| ObjectModel.usageType.serviceQuality | #P | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | host_id | arfcipid | ||
| KEY | process_id | arfcpid | ||
| KEY | time_stamp | arfctime | ||
| KEY | counter | arfctidcnt | ||
| KEY | tid | |||
| destion | dest | |||
| qname | qname | |||
| state | qstate |
@AbapCatalog.sqlViewName: 'FISCDSEXTAXTRFC'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'TAX EXPOSTING MANAGE'
@ObjectModel.usageType: {
serviceQuality: #P
}
define view FISVD_EXTERNALTAX_TRFCQOUT
as select from trfcqout
left outer join dd07t as _recorded on domname = 'FIS_EXTDC_RECORDED'
and ddlanguage = $session.system_language
{
key arfcipid as host_id,
key arfcpid as process_id,
key arfctime as time_stamp,
key arfctidcnt as counter,
key concat (arfcipid,concat(arfcpid,concat(arfctime,arfctidcnt))) as tid,
dest as destion,
qname as qname,
qstate as state,
cast(case qstate
when 'READY' then _recorded.ddtext
else errmess
end as natxt) as errormes
}
where
qname = 'TIF_UPDATE_AUDIT_FILE'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T",
"TRFCQOUT"
],
"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