Deprecated
This CDS view is deprecated in S/4HANA. Use I_WorkerFactSheetSearch instead. View all deprecated CDS views →

C_AssignmentSearch

DDL: C_ASSIGNMENTSEARCH SQL: CASSIGNMENTSRCH Type: view CONSUMPTION

Workforce Assignment Search

C_AssignmentSearch is a Consumption CDS View that provides data about "Workforce Assignment Search" in SAP S/4HANA. It reads from 1 data source (I_AssignmentSearch) and exposes 15 fields with key field EmploymentInternalID.

Data Sources (1)

SourceAliasJoin Type
I_AssignmentSearch I_AssignmentSearch from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName CASSIGNMENTSRCH view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Workforce Assignment Search view
Consumption.semanticObject Employee view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_WorkerFactSheetSearch view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.allowExtensions true view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY EmploymentInternalID EmploymentInternalID WorkForce Assgmt ID
PersonnelNumber EmploymentInternalID WorkForce Assgmt ID
Employee Employee Object ID
EmployeeFullName EmployeeFullName
FamilyName FamilyName
GivenName GivenName
CompanyCodeName CompanyCodeName Company Name
JobName JobName Name of Send Process
Job Job Undefined range (can be used for patch levels)
CostCenter CostCenter Cost Center
EmployeeSkillTagName EmployeeSkillTagName
CompanyCode CompanyCode Receiver Company Code
BusinessPartnerNicknameLabel BusinessPartnerNicknameLabel Nickname
AuthorizationGroup AuthorizationGroup AuthorizGroup
IsBusinessPurposeCompleted IsBusinessPurposeCompleted Purpose Completed

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view C_AssignmentSearch.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: CASSIGNMENTSRCH

CREATE VIEW C_AssignmentSearch AS
SELECT
  EmploymentInternalID,
  EmploymentInternalID AS PersonnelNumber,
  Employee,
  EmployeeFullName,
  FamilyName,
  GivenName,
  CompanyCodeName,
  JobName,
  Job,
  CostCenter,
  EmployeeSkillTagName,
  CompanyCode,
  BusinessPartnerNicknameLabel,
  AuthorizationGroup,
  IsBusinessPurposeCompleted
FROM I_AssignmentSearch
;