I_ACMApplInstructionsValueHelp
Application Instructions
I_ACMApplInstructionsValueHelp is a Basic CDS View that provides data about "Application Instructions" in SAP S/4HANA. It reads from 2 data sources (/accgo/t_aplins, /accgo/t_aplinst) and exposes 2 fields with key field LoadDataCaptureApplInstruction.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| /accgo/t_aplins | AppIns | from |
| /accgo/t_aplinst | AppInsDesc | inner |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IAPPINSVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| EndUserText.label | Application Instructions | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LoadDataCaptureApplInstruction | /accgo/t_aplins | appl_instr | |
| LDCApplicationInstructionName | aplinst_desc |
@AbapCatalog.sqlViewName: 'IAPPINSVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.supportedCapabilities:[#VALUE_HELP_PROVIDER]
@ObjectModel : { resultSet.sizeCategory: #XS }
@EndUserText.label: 'Application Instructions'
define view I_ACMApplInstructionsValueHelp
as select from /accgo/t_aplins as AppIns
inner join /accgo/t_aplinst as AppInsDesc on AppInsDesc.appl_instr = AppIns.appl_instr
and AppInsDesc.spras = $session.system_language
{
@ObjectModel.text.element: ['LDCApplicationInstructionName']
key AppIns.appl_instr as LoadDataCaptureApplInstruction,
@Semantics.text: true
aplinst_desc as LDCApplicationInstructionName
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/ACCGO/T_APLINS",
"/ACCGO/T_APLINST"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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