cancel
Showing results for 
Search instead for 
Did you mean: 

Field Level Authorization

Former Member
0 Kudos

Hi Gurus,

Can you explain me how to proceed forward inrelation to Field Level Authorizations in SAP HR. For instance I want to restrict roles of individuals based on Field for example restrict users based on Field Workschedule in IT 0007 ( Planned Working Time).

Regards,

Happy

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos
    AUTHORITY-CHECK OBJECT 'S_TABU_LIN'
      ID 'ORG_CRIT' FIELD 'MOLGA'
      ID 'ACTVT' FIELD '03'
      ID 'ORG_FIELD1' FIELD '10'
      ID 'ORG_FIELD2' FIELD '*'
      ID 'ORG_FIELD3' FIELD '*'
      ID 'ORG_FIELD4' FIELD '*'
      ID 'ORG_FIELD5' FIELD '*'
      ID 'ORG_FIELD6' FIELD '*'
      ID 'ORG_FIELD7' FIELD '*'
      ID 'ORG_FIELD8' FIELD '*'.
    IF sy-subrc NE 0 .
      MESSAGE e000 WITH 'No Authorization for area' v_text.
    ENDIF.

Use S_TABU_LIN authority object for field level authorizations.

suresh_datti
Active Contributor
0 Kudos

You can take a look at the delivered Auth Object <a href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/ef/4aba3b3bf00152e10000000a114084/frameset.htm">p_orgin</a>. It does have field level checks.. amy be you can create a custom object along the sam elines for 0007 & tie it to the Profile of your Users..

~Suresh