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

Differance beween Ecc User and EP user

Former Member
0 Likes
1,087

Hai,

Can u help For below Problem

I need to find whether user logined through Ecc Or EP In Sap ,Based on that i need to put some validations. Because same application using in ECC and EP  based on that In ECC user have some validations and EP user also have some validations .I tried but i did not get any difference .

Thanks.

Hai,

Can u help For below Problem

I need to find whether user logined through Ecc Or EP In Sap ,Based on that i need to put some validations. Because same application using in ECC and EP  based on that In ECC user have some validations and EP user also have some validations .I tried but i did not get any difference .

Thanks.

6 REPLIES 6
Read only

Former Member
0 Likes
1,023

Hi,

Please check the table USR01 in ECC and UME_STRINGS  table for EP.

-Sowmya

Read only

0 Likes
1,023

If same user exist in both ECC and EP,

how to find whether he entered to  application through ECC or EP .

Read only

Former Member
0 Likes
1,023

The difference can be seen in transaction SM04 - User list.

For SAP GUI login, type of user is GUI.

For EP login, type could be RFC or Plugin HTTP.

Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,023

You could try to call some methods like  cl_gui_control=>www_active or cl_gui_control=>gui_is_running.

Regards,

Raymond

Read only

0 Likes
1,023

I need to find the difference at Runtime in application,not in transaction level

and i tried with

cl_gui_control=>www_active method  at Ep level its not returning any value

and

cl_gui_control=>gui_is_running at ECC level its not returning any value .

Read only

0 Likes
1,023

I found Temporary Solution that is while user login through EP

Then Sy-cprog conatins HTTP

so If SY-CPROG CS 'HTTP . "user logined from EP

        else."user logined from ECC

     endif.

if any one  find other sol.for this Problem please Post it here .

Thanks.