P_RepetitiveCodeDefaultValue

DDL: P_REPETITIVECODEDEFAULTVALUE SQL: PRCDFLTVAL Type: view BASIC Package: ODATA_PROCESS_FF_PAYMENTS

Repetitive Code Default Values

P_RepetitiveCodeDefaultValue is a Basic CDS View that provides data about "Repetitive Code Default Values" in SAP S/4HANA. It reads from 1 data source (fibl_rpcode_tdef) and exposes 13 fields with key fields CompanyCode, HouseBank, PaymentRepetitiveCode. Part of development package ODATA_PROCESS_FF_PAYMENTS.

Data Sources (1)

SourceAliasJoin Type
fibl_rpcode_tdef fibl_rpcode_tdef from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName PRCDFLTVAL view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
VDM.viewType #BASIC view
VDM.private true view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode bukrs
KEY HouseBank hbkid
KEY PaymentRepetitiveCode rpcode
ReferenceTypeText rp_text
GLAccount hkont
IsSinglePayment xpore
BusinessArea gsber
DataExchangeInstructionKey instr_key
DataExchangeInstruction1 instr1
DataExchangeInstruction2 instr2
DataExchangeInstruction3 instr3
DataExchangeInstruction4 instr4
StateCentralBankPaymentReason scbank_ind
@AbapCatalog.sqlViewName: 'PRCDFLTVAL'

@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A

@VDM.viewType: #BASIC
@VDM.private: true

define view P_RepetitiveCodeDefaultValue
  as select from fibl_rpcode_tdef

{
  key bukrs      as CompanyCode,
  key hbkid      as HouseBank,
  key rpcode     as PaymentRepetitiveCode,
      rp_text    as ReferenceTypeText,
      hkont      as GLAccount,
      xpore      as IsSinglePayment,
      gsber      as BusinessArea,
      instr_key  as DataExchangeInstructionKey,
      instr1     as DataExchangeInstruction1,
      instr2     as DataExchangeInstruction2,
      instr3     as DataExchangeInstruction3,
      instr4     as DataExchangeInstruction4,
      scbank_ind as StateCentralBankPaymentReason
}