I_CreditControlArea

DDL: I_CREDITCONTROLAREA SQL: IFICREDCONTAREA Type: view BASIC

Credit Control Area

I_CreditControlArea is a Basic CDS View (Dimension) that provides data about "Credit Control Area" in SAP S/4HANA. It reads from 1 data source (t014) and exposes 4 fields with key field CreditControlArea. It has 2 associations to related views. It is exposed through 2 OData services (UI_RFM_PRVSNLSLSCONTR, UI_RFM_SLSORD_PRGS_MONITOR). It is used in 2 Fiori applications: Monitor Sales Order Progress - Fashion, Manage Provisional Sales Contracts - Fashion.

Data Sources (1)

SourceAliasJoin Type
t014 t014 from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_CreditControlAreaText _Text $projection.CreditControlArea = _Text.CreditControlArea
[0..1] I_CreditControlArea2Segment _CreditControlArea2Segment $projection.CreditControlArea = _CreditControlArea2Segment.CreditControlArea

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Credit Control Area view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFICREDCONTAREA view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey CreditControlArea view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.ignorePropagatedAnnotations true view

OData Services (2)

ServiceBindingVersionContractRelease
UI_RFM_PRVSNLSLSCONTR UI_RFM_PRVSNLSLSCONTR V2 C1 NOT_RELEASED
UI_RFM_SLSORD_PRGS_MONITOR UI_RFM_SLSORD_PRGS_MONITOR V2 C1 NOT_RELEASED

Fiori Apps (2)

App IDApp NameTypeDescription
F5392 Monitor Sales Order Progress - Fashion Transactional Monitor Sales Order Progress - Fashion : This app is used to track and further monitor for the different status of the Sales Orders and thereby further actions can be taken accordingly by the business,
F5398 Manage Provisional Sales Contracts - Fashion Transactional Manage Provisional Sales Contracts - Fashion. This is used to create the special types of contracts and the call off

Monitor Sales Order Progress - Fashion

Business Role: Order Fulfillment Specialist (Retail)

With this app, you can monitor the status, that is, the overall progress of account assigned sales orders. This application allows you to identify the conditions based on quantity and status. It checks for exceptions and helps you take informed decisions and necessary actions.

Manage Provisional Sales Contracts - Fashion

Business Role: Order Fulfillment Specialist (Retail)

With this app, you can display the provisional sales contract details at header and generic product levels, so you can get a complete view of different items in these contracts. You can also use this app to create provisional sales contracts as well as create subsequent orders (call-offs) for these contracts.

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CreditControlArea
CreditControlAreaCurrency
_Text _Text
_CreditControlArea2Segment _CreditControlArea2Segment
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Credit Control Area'
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IFICREDCONTAREA'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'CreditControlArea'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.supportedCapabilities: [ #CDS_MODELING_DATA_SOURCE ]
@Metadata.ignorePropagatedAnnotations:true
/*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK" ]  } */
define view I_CreditControlArea
  as select from t014
  association [0..*] to I_CreditControlAreaText     as _Text                      on $projection.CreditControlArea = _Text.CreditControlArea
  association [0..1] to I_CreditControlArea2Segment as _CreditControlArea2Segment on $projection.CreditControlArea = _CreditControlArea2Segment.CreditControlArea
{
      @ObjectModel.text.association: '_Text'
  key cast(kkber as farp_kkber preserving type) as CreditControlArea,
      cast( waers as kkbwr preserving type)     as CreditControlAreaCurrency,
      _Text,
      _CreditControlArea2Segment
};