I_ACMApplInstructionsValueHelp

DDL: I_ACMAPPLINSTRUCTIONSVALUEHELP SQL: IAPPINSVH Type: view BASIC

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)

SourceAliasJoin Type
/accgo/t_aplins AppIns from
/accgo/t_aplinst AppInsDesc inner

Annotations (13)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/