I_CnvrsnFuncAssgmtParameter

DDL: I_CNVRSNFUNCASSGMTPARAMETER Type: view_entity BASIC

Conversion Function Assignment Parameter

I_CnvrsnFuncAssgmtParameter is a Basic CDS View that provides data about "Conversion Function Assignment Parameter" in SAP S/4HANA. It reads from 1 data source (cnvdmcfa_parc) and exposes 9 fields with key fields CnvrsnFunctionAssignmentID, CnvrsnAssignmentParameterName.

Data Sources (1)

SourceAliasJoin Type
cnvdmcfa_parc cnvdmcfa_parc from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Conversion Function Assignment Parameter view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY CnvrsnFunctionAssignmentID convasguid Assignment ID
KEY CnvrsnAssignmentParameterName param_id Report param id
CnvrsnAssignmentParameterType param_typ Parameter Type
CnvrsnAssignmentParameterValue param_val Value
ConversionObjectDataSource source ViolationSource
ConversionObjectCreatedBy createdby User Name
CnvrsnObjectCreatedOnDateTime createdon Time Stamp
ConversionObjectChangedBy changedby User Name
CnvrsnObjLoclLastChgdOnDteTme changedon Time Stamp

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 I_CnvrsnFuncAssgmtParameter.
-- 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.

CREATE VIEW I_CnvrsnFuncAssgmtParameter AS
SELECT
  convasguid AS CnvrsnFunctionAssignmentID,
  param_id AS CnvrsnAssignmentParameterName,
  param_typ AS CnvrsnAssignmentParameterType,
  param_val AS CnvrsnAssignmentParameterValue,
  source AS ConversionObjectDataSource,
  createdby AS ConversionObjectCreatedBy,
  createdon AS CnvrsnObjectCreatedOnDateTime,
  changedby AS ConversionObjectChangedBy,
  changedon AS CnvrsnObjLoclLastChgdOnDteTme
FROM cnvdmcfa_parc
;