I_RO_SAFTAccountMapping

DDL: I_RO_SAFTACCOUNTMAPPING SQL: IROSAFTACCMAP Type: view BASIC

Mapping Accounting ID

I_RO_SAFTAccountMapping is a Basic CDS View that provides data about "Mapping Accounting ID" in SAP S/4HANA. It reads from 1 data source (/ceecv/rocaccmap) and exposes 5 fields with key fields ChartOfAccounts, GLAccount.

Data Sources (1)

SourceAliasJoin Type
/ceecv/rocaccmap AccountMapping from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IROSAFTACCMAP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
AccessControl.personalData.blocking #NOT_REQUIRED view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Mapping Accounting ID view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ChartOfAccounts /ceecv/rocaccmap ktopl
KEY GLAccount /ceecv/rocaccmap saknr
RO_SAFTStandardAccount /ceecv/rocaccmap staccid
RO_SAFTAccountType /ceecv/rocaccmap acctype
RO_SAFTIsDefaultZeroQuantity /ceecv/rocaccmap defaultzeroquantity
@AbapCatalog.sqlViewName: 'IROSAFTACCMAP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@AccessControl.personalData.blocking: #NOT_REQUIRED
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Mapping Accounting ID'
define view I_RO_SAFTAccountMapping
  as select from /ceecv/rocaccmap     as AccountMapping
    join         I_RO_SAFTAccountType as AccountType on AccountMapping.acctype = AccountType.RO_SAFTAccountType
{
  key AccountMapping.ktopl               as ChartOfAccounts,
  key AccountMapping.saknr               as GLAccount,
      AccountMapping.staccid             as RO_SAFTStandardAccount,
      AccountMapping.acctype             as RO_SAFTAccountType,

      case AccountMapping.acctype
        when '01' then 'Activ'
        when '02' then 'Pasiv'
        when '03' then 'Bifunctional'
      end                                as RO_SAFTAccountTypeText,
      AccountMapping.defaultzeroquantity as RO_SAFTIsDefaultZeroQuantity

}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_RO_SAFTACCOUNTTYPE",
"/CEECV/ROCACCMAP"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/