I_PartnerCompanySupplierAuthzn

DDL: I_PARTNERCOMPANYSUPPLIERAUTHZN SQL: IFIRCOMPSAUTH Type: view BASIC

Supplier Authorization in Company

I_PartnerCompanySupplierAuthzn is a Basic CDS View that provides data about "Supplier Authorization in Company" in SAP S/4HANA. It reads from 1 data source (I_Supplier) and exposes 3 fields with key field Supplier.

Data Sources (1)

SourceAliasJoin Type
I_Supplier I_Supplier from

Annotations (13)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName IFIRCOMPSAUTH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
EndUserText.label Supplier Authorization in Company view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.modelingPattern #NONE view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Supplier Supplier
PartnerCompany TradingPartner
AuthorizationGroup AuthorizationGroup

@ClientHandling.algorithm: #SESSION_VARIABLE 
@AbapCatalog.sqlViewName: 'IFIRCOMPSAUTH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@AccessControl.personalData.blocking: #BLOCKED_DATA_EXCLUDED
@EndUserText.label: 'Supplier Authorization in Company'
@ObjectModel: { usageType.sizeCategory: #M,
                usageType.dataClass:  #MASTER,
                usageType.serviceQuality: #C,
                supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET],
                modelingPattern: #NONE }
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations: true

define view I_PartnerCompanySupplierAuthzn as select from I_Supplier {
  key Supplier,
  TradingPartner as PartnerCompany,
  AuthorizationGroup
}
where TradingPartner <> ''
and AuthorizationGroup <> ''
and IsBusinessPurposeCompleted = ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SUPPLIER"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/