P_RepetitiveCodeDefaultValue
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)
| Source | Alias | Join Type |
|---|---|---|
| fibl_rpcode_tdef | fibl_rpcode_tdef | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
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