I_NetworkActivityCtrlProfile
Network Activity Control Profile
I_NetworkActivityCtrlProfile is a Basic CDS View that provides data about "Network Activity Control Profile" in SAP S/4HANA. It reads from 1 data source (t430) and exposes 4 fields with key field OperationControlProfile.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t430 | t430 | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | INWACTCTRLPFL | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | OperationControlProfile | view | |
| EndUserText.label | Network Activity Control Profile | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | OperationControlProfile | steus | ||
| IsCostActivity | pkost | |||
| IsServiceActivity | service | |||
| OperationExternalProcessing | lief |
@AbapCatalog.sqlViewName: 'INWACTCTRLPFL'
@VDM.viewType: #BASIC
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'OperationControlProfile'
@EndUserText.label: 'Network Activity Control Profile'
define view I_NetworkActivityCtrlProfile
as select from t430
{
key steus as OperationControlProfile,
pkost as IsCostActivity,
service as IsServiceActivity,
lief as OperationExternalProcessing
}
where
plnaw = '*';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T430"
],
"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