cancel
Showing results for 
Search instead for 
Did you mean: 

how to get employee id from portal to my Webdynpro abap applecation

Former Member
0 Kudos

As per functional description Employees allow to record their working location in ESS. For this we are creating custom service (webdynpr abap application). This will allow the employee to change their working location and corresponding communication inforamtion in PA006 .

This service available to ESS users by a link called ADDRSSES to the personal information area page.

Herr user will enter his ID through portal, from there my application will be called by using address link.

How i will get this ID to my webdynp abap application and when i press Exit in my application how it will go to Personal infromation area ?

Itt would be appreciate if you give the answer asap.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Create an import parameter in your method HANDLEDEFAULT of your WD window.

Lets say you name it "id".

In your iview properties under "ApplicationParameters" you add this parameter too:

id=<User.LogonUid>

That should pass the portaluserid towards your WebDynpro and from there you can do with it whatever you want.

<User.LogonUid> is replaced by the portal framework with the actual Userid.

Regards,

Jos