cancel
Showing results for 
Search instead for 
Did you mean: 

Integration between Manager Self-Service Role and Custom WD ABAP IView

Former Member
0 Kudos

Hi guys,

I try to create an ABAP Webdynpro on SAP ECC 6.00 that it will be embedded inside General information page of MSS Portal Role.

How can I catch current Person Number selected by user, if there is, and how can I subscrive this event in ABAP WebDynpro?

For Java WebDynpro there is FPM Component but for ABAP WebDynpro?

Points assured.

Best Regards,

Antonello

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Hey, in ABAP WD, Initialisation event, call this FM.

RP_GET_PERNR_FROM_USERID

Pass user ID, which is sy-uname to it.

If you are using SSO, the Portal user ID and R/3 user ID will be same and effectively, USER ID in IT 105 will be same.

Cheers!!

Ashutosh

Former Member
0 Kudos

Hi Ashutosh,

So, RP_EGT_PERNR_FROM_USERID gets person number by Autheniticated user ID,

but if portal user is a Manager,

he can sees also the dependent employees data.

When he chooses your dependent employee,

Current Person number changes but RFC User ID don't changes. It's ever same!

I've finding at Internet and somebody spoke of Portal Event to does it.

Have you any idea?

Cheers

Antonello.

Former Member
0 Kudos

Hi,

True, whatever u are saying is possible with EPCM / Portal eveting in Java Web dynpro where parameters are passed from one Iview to another. Dont have any idea if this works in ABAP WD.

If you are planning to use ur ABAP WD application as an entirely seperate application and do not want it to communicate with any other iview like Team viewer, then consider this.

Get the manager's details using the FM.

Get a list of reportees to this manager and display the list on the initial page in WD.

Let the manager select the Person he wish to look at and from here you can send the reportees ID / Pernr back to any FM .. and process his data.

Cheers

Ashutosh

PLease ignore the suggestion if u already know that