我可以在 ABAP CDS 视图中创建 GUID 吗?

Can I create a GUID in an ABAP CDS view?

我在 ABAP CDS 视图中将 table 与其自身连接,并希望为每行创建一个唯一的 GUID。这可能吗?

类似于:

select from my_view as a
  inner join my_view as b
    on a.ContextKey = b.ContextKey and
       a.DbKey != b.DbKey
{
    key sysuuid as MAPPING_ID,
    a.SomeField AS A,
    b.SomeField AS B
}

我不知道 CDS 中有任何 UUID 功能。您需要使用 CDS Table FunctionAMDP.

您的 Table Function 视图。

define table function ZP_TF_TEST
with parameters @Environment.systemField: #CLIENT mandt : mandt
returns
{
    mandt : mandt;
    ID    : uuid;
    A     : type_a; 
    B     : type_b;
}
implemented by method zcl_tf_test=>get_data;

您的 CDS 视图。

define view ZZ_TF_TEST as select from ZP_TF_TEST( mandt : $session.client )
{
   key ID,
       A,
       B,
}

你的 AMDP class .

CLASS zcl_tf_test DEFINITION PUBLIC FINAL CREATE PUBLIC .

PUBLIC SECTION.
INTERFACES if_amdp_marker_hdb .

CLASS-METHODS get_data
    FOR TABLE FUNCTION ZP_TF_TEST.

PROTECTED SECTION.
PRIVATE SECTION.

ENDCLASS.

实现方法get_data并使用SELECT sysuuid FROM dummy

METHOD get_data BY DATABASE FUNCTION FOR HDB LANGUAGE SQLSCRIPT OPTIONS READ-ONLY USING my_table.

    RETURN SELECT 
                 a.mandt,
                 ( SELECT sysuuid FROM dummy  ) as id,
                 a.SomeField AS A,
                 b.SomeField AS B
               from my_table as a inner join my_table as b
                     on a.ContextKey = b.ContextKey and a.DbKey != b.DbKey
               where a.mandt= :mandt;

ENDMETHOD.