Monday 31 July 2017

CDS view authorization Part-13

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:

ABAP Development, SAP ABAP, CDS
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:

ABAP Development, SAP ABAP, CDS

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:

ABAP Development, SAP ABAP, CDS

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:

ABAP Development, SAP ABAP, CDS

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?

ABAP Development, SAP ABAP, CDS

Use tcode stauthtrace to perform a trace:

ABAP Development, SAP ABAP, CDS

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

ABAP Development, SAP ABAP, CDS

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:

ABAP Development, SAP ABAP, CDS

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.

ABAP Development, SAP ABAP, CDS

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 display authorization on order type OPPT.
ABAP Development, SAP ABAP, CDS

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

ABAP Development, SAP ABAP, CDS

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.

ABAP Development, SAP ABAP, CDS

No comments:

Post a Comment