C_Prodalloccharcctlgpathdsp

DDL: C_PRODALLOCCHARCCTLGPATHDSP SQL: CPACTLG_PATHDSP Type: view CONSUMPTION

Product Allocation Characteristic Catalog Path Display

C_Prodalloccharcctlgpathdsp is a Consumption CDS View that provides data about "Product Allocation Characteristic Catalog Path Display" in SAP S/4HANA. It reads from 1 data source (I_ProdAllocCharcCtlgPathPicker) and exposes 2 fields with key field ProdAllocCharcCtlgPathIntID. It is exposed through 4 OData services (UI_OVD_ACTY_ATTRIB_CONFIGURE, UI_OVD_ALTV_CTRL_CONFIGURE, UI_OVD_CHARC_COMBN_MNG, ...). It is used in 3 Fiori applications: Configure Alternative Control, Manage Access Sequences - Substitutions, Manage Characteristic Combinations.

Data Sources (1)

SourceAliasJoin Type
I_ProdAllocCharcCtlgPathPicker I_ProdAllocCharcCtlgPathPicker from

Annotations (9)

NameValueLevelField
EndUserText.label Product Allocation Characteristic Catalog Path Display view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName CPACTLG_PATHDSP view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view

OData Services (4)

ServiceBindingVersionContractRelease
UI_OVD_ACTY_ATTRIB_CONFIGURE UI_OVD_ACTY_ATTRIB_CONF V2 C1 NOT_RELEASED
UI_OVD_ALTV_CTRL_CONFIGURE UI_OVD_ALTV_CTRL_CONFIGURE V2 C1 NOT_RELEASED
UI_OVD_CHARC_COMBN_MNG UI_OVD_CHARC_COMBN_MNG V2 C1 NOT_RELEASED
UI_OVD_SUBSTN_CVC_MNG UI_OVD_SUBSTN_CVC_MNG V2 C1 NOT_RELEASED

Fiori Apps (3)

App IDApp NameTypeDescription
F2698 Configure Alternative Control Transactional With this app, you can set up and adjust alternative controls with which to improve the confirmations for requirements in sales order documents. The alternative controls are defined on the basis of ordered characteristics to which a substitution strategy is assigned.
F5302 Manage Access Sequences - Substitutions Transactional Manage Access Sequences - Substitutions
F5303 Manage Characteristic Combinations Transactional Manage Characteristic Combinations

Configure Alternative Control

Business Role: Order Fulfillment Manager

With this app, you can setup and adjust alternative controls that can be used to improve the confirmations for requirements in sales order documents. This is acheived by activating Alternative-Based Confirmation (ABC) that now provides increased flexibility through sequential accesses. Each accesses has configurable sets of characteristic values.

Manage Access Sequences - Substitutions

Business Role: Order Fulfillment Manager

Create a combination of characteristics. To create a characteristic combination, you can use the Manage Characteristic Combinations app. If necessary, reorder the characteristics in the combination. Create an access for the characteristic combination created above. To create an access, you can use the Manage Access Sequences - Substitutions app. If necessary, reorder the accesses in a sequence. You can maintain characteristic value combinations for each access, and if necessary specify a control for each characteristic value combination.

Manage Characteristic Combinations

Business Role: Order Fulfillment Manager

Create a combination of characteristics. To create a characteristic combination, you can use the Manage Characteristic Combinations app. If necessary, reorder the characteristics in the combination. Create an access for the characteristic combination created above. To create an access, you can use the Manage Access Sequences - Substitutions app. If necessary, reorder the accesses in a sequence. You can maintain characteristic value combinations for each access, and if necessary specify a control for each characteristic value combination.

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ProdAllocCharcCtlgPathIntID I_ProdAllocCharcCtlgPathPicker ProdAllocCharcCtlgPathIntID
ProdAllocCharcCtlgPathDesc I_ProdAllocCharcCtlgPathPicker ProdAllocCharcCtlgPathDesc
@EndUserText.label: 'Product Allocation Characteristic Catalog Path Display'
@VDM.viewType: #CONSUMPTION
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'CPACTLG_PATHDSP'
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass:#MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE

define view C_Prodalloccharcctlgpathdsp
  as select from I_ProdAllocCharcCtlgPathPicker
  ( P_HasText : 'X' )
{
      // Key fields

      @UI.hidden
  key I_ProdAllocCharcCtlgPathPicker.ProdAllocCharcCtlgPathIntID as ProdAllocCharcCtlgPathIntID,

      // Fields

      @ObjectModel.readOnly: true
      @Semantics.text: true
      I_ProdAllocCharcCtlgPathPicker.ProdAllocCharcCtlgPathDesc as ProdAllocCharcCtlgPathDesc
}