CRMS4_IU_C_UID

DDL: CRMS4_IU_C_UID Type: view_entity

Utilities Invoice Document

CRMS4_IU_C_UID is a CDS View that provides data about "Utilities Invoice Document" in SAP S/4HANA. It reads from 1 data source (CRMS4_IU_I_UID) and exposes 47 fields with key field OPBEL.

Data Sources (1)

SourceAliasJoin Type
CRMS4_IU_I_UID CRMS4_IU_I_UID from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Utilities Invoice Document view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (47)

KeyFieldSource TableSource FieldDescription
KEY OPBEL UtilitiesInvoicingDocument
DRUCKDAT UtilitiesInvoicingDocPrintDate
FAEDN NetDueDate Net Due Date
FAEDS CashDiscountDueDate
SKTPZ CashDiscountPercent Cash Discount %
BUDAT PostingDate Posting Date for GR
BLDAT DocumentDate Journal Entry Date
TOTAL_AMNT TotalAmountInTransactionCrcy Total Amt In Tr Crcy
TOTAL_WAER TransactionCurrency Transaction Currency
PYMET PaymentMethod Pymt Meth.
ERGRD UtilitiesInvoicingReason
STOKZ UtilsInvcgDocIsReversed
ICREASON UtilsInvcgDocReversalRsn
INTOPBEL ReversalUtilsInvcgDocument
TOBRELEASD UtilsInvcgDocIsNotReleased
SIMULATED UtilsInvcgDocIsSimulated
INVOICED UtilsInvcgDocumentIsPosted
PARTNER BusinessPartner Issuing Authority
VKONT ContractAccount Contract Acct
PORTION UtilitiesPortion
ABRVORG UtilitiesBillingReason
FIKEY CAReconciliationKey Reconcil. Key
INVOICING_PARTY UtilitiesInvoicingParty
ERDAT UtilsInvcgDocCreationDate
ERNAM UtilsInvcgDocCreatedByUser
AEDAT UtilsInvcgDocLastChangeDate
AENAM UtilsInvcgDocLastChangedByUser
STO_BUDAT OriginalUtilsInvcgDocRvslDate
STO_OPBEL OriginalUtilsInvcgDocument
REVLOCK revlock Rev.Blck for Pr.Doc.
PRINTLOCK UtilsInvcgDocPrintBlockRsn
BEGRU AuthorizationGroup AuthorizGroup
LOEVM loevm End Contract
FORMKEY formkey Forms
BILLING_PERIOD billing_period Bill. Key Date
ABWVK abwvk Coll. Bill Acct
ABWBL abwbl Sub. Doc.
OSB_GROUP osb_group OSB Group
_BusinessPartner _BusinessPartner
_CreatedByUser _CreatedByUser
_Currency _Currency
_LastChangedByUser _LastChangedByUser
_UtilitiesBillingReason _UtilitiesBillingReason
_UtilitiesInvoicingReason _UtilitiesInvoicingReason
_UtilitiesPortion _UtilitiesPortion
_UtilsInvcgDocReversalRsn _UtilsInvcgDocReversalRsn
_UtilsInvcgPrntBlockRsn _UtilsInvcgPrntBlockRsn

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 CRMS4_IU_C_UID.
-- 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 CRMS4_IU_C_UID AS
SELECT
  UtilitiesInvoicingDocument AS OPBEL,
  UtilitiesInvoicingDocPrintDate AS DRUCKDAT,
  NetDueDate AS FAEDN,
  CashDiscountDueDate AS FAEDS,
  CashDiscountPercent AS SKTPZ,
  PostingDate AS BUDAT,
  DocumentDate AS BLDAT,
  TotalAmountInTransactionCrcy AS TOTAL_AMNT,
  TransactionCurrency AS TOTAL_WAER,
  PaymentMethod AS PYMET,
  UtilitiesInvoicingReason AS ERGRD,
  UtilsInvcgDocIsReversed AS STOKZ,
  UtilsInvcgDocReversalRsn AS ICREASON,
  ReversalUtilsInvcgDocument AS INTOPBEL,
  UtilsInvcgDocIsNotReleased AS TOBRELEASD,
  UtilsInvcgDocIsSimulated AS SIMULATED,
  UtilsInvcgDocumentIsPosted AS INVOICED,
  BusinessPartner AS PARTNER,
  ContractAccount AS VKONT,
  UtilitiesPortion AS PORTION,
  UtilitiesBillingReason AS ABRVORG,
  CAReconciliationKey AS FIKEY,
  UtilitiesInvoicingParty AS INVOICING_PARTY,
  UtilsInvcgDocCreationDate AS ERDAT,
  UtilsInvcgDocCreatedByUser AS ERNAM,
  UtilsInvcgDocLastChangeDate AS AEDAT,
  UtilsInvcgDocLastChangedByUser AS AENAM,
  OriginalUtilsInvcgDocRvslDate AS STO_BUDAT,
  OriginalUtilsInvcgDocument AS STO_OPBEL,
  REVLOCK,
  UtilsInvcgDocPrintBlockRsn AS PRINTLOCK,
  AuthorizationGroup AS BEGRU,
  LOEVM,
  FORMKEY,
  BILLING_PERIOD,
  ABWVK,
  ABWBL,
  OSB_GROUP
FROM CRMS4_IU_I_UID
;