FAA_MIG_PREP
Get combinations of BUKRS/GJAHR for ANLC migration
FAA_MIG_PREP is a CDS View that provides data about "Get combinations of BUKRS/GJAHR for ANLC migration" in SAP S/4HANA. It reads from 2 data sources (anlc, t093) and exposes 6 fields.
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | FAAV_MIG_PREP | view | |
| EndUserText.label | Get combinations of BUKRS/GJAHR for ANLC migration | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #P | view |
@AbapCatalog.sqlViewName: 'FAAV_MIG_PREP'
@EndUserText.label: 'Get combinations of BUKRS/GJAHR for ANLC migration'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #P
define view FAA_MIG_PREP
as select from ( t093c
inner join anlc
on anlc.bukrs = t093c.bukrs
left outer join t093
on t093.afapl = t093c.afapl )
{
t093c.bukrs,
t093c.xanueb,
t093.ldgrp_gl,
anlc.gjahr,
t093.buhbkt,
t093.xstore
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ANLC",
"T093",
"T093C"
],
"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