Febvd_Bs_Status_01
determine posting status fields from FEBEP
Febvd_Bs_Status_01 is a CDS View that provides data about "determine posting status fields from FEBEP" in SAP S/4HANA. It reads from 2 data sources (febep, febep) and exposes 7 fields.
Parameters (1)
| Name | Type | Default |
|---|---|---|
| current_esnum | abap.numc( 5 ) |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | FEBV_BS_STAT_01 | view | |
| EndUserText.label | determine posting status fields from FEBEP | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| kukey | kukey | |||
| esnum | esnum | |||
| vb1ok | vb1ok | |||
| vb2ok | vb2ok | |||
| esnum | esnum | |||
| vb1ok | vb1ok | |||
| vb2ok |
@AbapCatalog.sqlViewName: 'FEBV_BS_STAT_01'
@EndUserText.label: 'determine posting status fields from FEBEP'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
define view Febvd_Bs_Status_01 with parameters current_esnum : abap.numc( 5 )
as select from febep {
kukey as kukey,
esnum as esnum,
vb1ok as vb1ok,
vb2ok as vb2ok,
case when vb1ok = 'X' then 'X'
else case when ak1bl = '' then ''
else 'X' end end as vb1ok_or_onaccount,
case when vb2ok = 'X' then 'X'
else case when akbln = '' then ''
else 'X' end end as vb2ok_or_onaccount
} where esnum != $parameters.current_esnum
union
select from febep {
kukey as kukey,
esnum as esnum,
vb1ok as vb1ok,
'X' as vb2ok,
case when vb1ok = 'X' then 'X'
else case when ak1bl = '' then ''
else 'X' end end as vb1ok_or_onaccount,
'X' as vb2ok_or_onaccount
} where esnum = $parameters.current_esnum
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FEBEP"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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