Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

AUTHORITY-CHECK OBJECT AT USER-COMMAND?

Former Member
0 Likes
788

Hi,

I need to make this work, can some one help..I never worked with AUTHORITY-CHECK.

AT USER-COMMAND.

CASE sy-ucomm.

WHEN 'VERW'.

AUTHORITY-CHECK OBJECT ??

??

IF SY-SUBRC EQ 0.

PERFORM verwerk_retour.

ELSE.

MESSAGE E333(S1) WITH 'You are not authorised'

ENDIF.

ENDCASE.

this is what I don't know:

AUTHORITY-CHECK OBJECT ??

??

Adibo..:)

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
679
AUTHORITY-CHECK OBJECT '<ur authority object created>'
                  ID 'ACTVT' FIELD '01'.
5 REPLIES 5
Read only

Former Member
0 Likes
680
AUTHORITY-CHECK OBJECT '<ur authority object created>'
                  ID 'ACTVT' FIELD '01'.
Read only

0 Likes
679

First identify the authority check object for your purpose and use that.

AUTHORITY-CHECK OBJECT '<ur authority object created>'

ID 'ACTVT' FIELD '01'.

Thanks,

Alex

Read only

0 Likes
679

thanks!!

what does this mean: '01' ?

Adibo..:)

Read only

0 Likes
679

First identify the authority check object for your purpose and use that.

AUTHORITY-CHECK OBJECT '<ur authority object created>'

ID 'ACTVT' FIELD '01'.

Thanks,

Alex

Read only

0 Likes
679

hi,

there will be 3 activities ,

01--> Create
02-->change
03-->display

Message was edited by:

Chandrasekhar Jagarlamudi