CRMS4_REF_OBJECT

DDL: CRMS4_REF_OBJECT SQL: CRMS4_REFOBJ Type: view Package: CRMS4_REPORT

Reference Object for Service Item

CRMS4_REF_OBJECT is a CDS View that provides data about "Reference Object for Service Item" in SAP S/4HANA. It reads from 1 data source (crms4d_refobj) and exposes 10 fields with key fields objtype_h, object_id, number_int, counter. Part of development package CRMS4_REPORT.

Data Sources (1)

SourceAliasJoin Type
crms4d_refobj crms4d_refobj from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CRMS4_REFOBJ view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label Reference Object for Service Item view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY objtype_h objtype_h
KEY object_id object_id
KEY number_int number_int
KEY counter counter
type_object type_object
guid_object guid_object
product_id product_id
main_object main_object
product_guid product_guid
equipment_id equipment_id
@AbapCatalog.sqlViewName: 'CRMS4_REFOBJ'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {serviceQuality: #X, sizeCategory: #XL, dataClass: #MIXED}
@EndUserText.label: 'Reference Object for Service Item'
define view CRMS4_REF_OBJECT
  as select from crms4d_refobj
{
  key objtype_h,
  key object_id,
  key number_int,
  key counter,

      type_object,
      guid_object,
      product_id,
      main_object,
      product_guid,
      serial_number,
      equipment_id,
      functional_location_id,
      ref_product_id
      

}