码迷,mamicode.com
首页 > 其他好文 > 详细

SAP CDS view权限控制实现原理介绍

时间:2020-09-12 21:42:03      阅读:44      评论:0      收藏:0      [点我收藏+]

标签:user   func   ado   trie   add   tco   name   ecif   state   

Part1 – how to test odata service generated by CDS view
Part2 – what objects are automatically generated after you activate one CDS view
Part3 – how is view source in Eclipse converted to ABAP view in the backend
Part4 – how does annotation @OData.publish work
Part5 – how to create CDS view which supports navigation in OData service
Part6 – consume table function in CDS view
Part7 – unveil the secret of @ObjectModel.readOnly
Part8 – my summary of different approaches for annotation declaration and generation
Part9 – cube view and query view
Part10 – How does CDS view key user extensibility work in S4/HANA
Part11 – CDS view test double framework
Part12 – CDS view source code count tool
Part13 – this blog
Part14 – CDS view performance analysis using PlanViz in HANA studio

There are already lots of blogs in community talking about CDS authorization concept, here I just blog what is so far not mentioned in those blogs.

For demonstration purpose I create a very simple database table ZORDER with two entries:

技术图片

And a CDS view on top of it:

@AbapCatalog.sqlViewName: ‘zvorder‘
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: ‘Order for authorization POC‘
define view zjerry_order as select from zorder {
  key order_id, 
  order_text, 
  order_type, 
  post_date
}

In SAP help, it is documented that “If a CDS entity is specified in several access rules of a CDS role, the resulting access conditions are joined using a logical OR”.
And I create a simple authorization object ZJER_TYPE2 in tcode SU21 which contains field PR_TYPE for order type and ACTVT field with following settings:

技术图片

And then create an Access Control object:

@EndUserText.label: ‘Order DCL POC‘ 
@MappingRole: true 
define role Zjerry_Order_Dcl { 
  grant select on zjerry_order
          where ( order_type) = 
          aspect pfcg_auth( ZJER_TYPE2, pr_type, ACTVT = ‘01‘ )
              or ( order_type) = 
          aspect pfcg_auth( ZJER_TYPE2, pr_type, ACTVT = ‘03‘ );
}

Create a new PFCG role ZJER_AUTH_TEST3 with ACTVT = 01,02 and PR_TYPE = SRVO:

技术图片

I use this combination to ensure that the statement before the OR operator will pass ( aspect pfcg_auth( ZJER_TYPE2, pr_type, ACTVT = ’01’ ) ) while the statement after OR will fail ( aspect pfcg_auth( ZJER_TYPE2, pr_type, ACTVT = ’03’ ).
And then assign this PFCG role to my user:

技术图片

This means from semantic perspective that “it is expected that user WANGJER can only have access to order with process type SRVO“.

Now all preparation is ready. Execute this simple SQL:

SELECT * INTO TABLE @DATA(lt_data) FROM zjerry_order.

Only 1 record with type SRVO is returned, working as expected. But why? How does it work?

技术图片

Use tcode stauthtrace to perform a trace:

技术图片

The trace result shows that the evaluation for first statement before OR is done successfully, and the statement after Or fails. According to SAP help, the whole result is still true( true OR false = true ).

技术图片

What magic thing has happened when the OPEN SQL is executed? Why the record with order type OPPT is automatically filtered out?
Perform a SQL trace with tcode ST05, display execution plan via menu below:

技术图片

You can find there is a fragment of WHERE statement automatically added. The value for ORDER_TYPE comes from the value of authorization object field PR_TYPE which is mapped to CDS view field ORDER_TYPE in my DCL object.

技术图片

This behavior is consistent with what is documented in SAP help:

When Open SQL is used to access a CDS entity and an access rule is defined in a role for this entity, the access conditions are evaluated implicitly and their selection restricted so that in SELECT reads, the access condition is added to the selection condition of the statement passed from the database interface to the database using a logical “and”.

Two DCL objects defined on the same CDS view

Again the SAP help said “If a CDS entity is specified in multiple CDS roles, the resulting access conditions are joined using a logical OR”.

Let’s create a new PFCG role ZJER_AUTH_TEST4 which only grants displayauthorization on order type OPPT.

技术图片

@EndUserText.label: ‘display authorization on OPPT‘ 
@MappingRole: true 
define role Zjerry_Order_Dcl2 { 
  grant select on zjerry_order
          where ( order_type) = 
          aspect pfcg_auth( ZJER_TYPE2, pr_type, ACTVT = ‘03‘);
}

Execute the SQL once again under trace mode:
Still one record with type SRVO is returned.

技术图片

The corresponding automatically appended where statement: since the PFCF role ZJER_AUTH_TEST4 is NOT assigned to my user WANGJER, so when the open SQL is performed on the view, NO corresponding where statement for order type OPPT defined in that PFCG role is appended.

技术图片

要获取更多Jerry的原创文章,请关注公众号"汪子熙":
技术图片

SAP CDS view权限控制实现原理介绍

标签:user   func   ado   trie   add   tco   name   ecif   state   

原文地址:https://www.cnblogs.com/sap-jerry/p/13592140.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!